.sections-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sections-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-item {
    flex: 0 0 calc(33.333% - 14px);
    /* border-radius: 8px; */
    overflow: hidden;
    height: 120px; /* Высота в 3 раза меньше ширины (приблизительно) */
}

.section-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #455582;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.section-link:hover {
    background-color: #ff8007;
}

.section-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .section-item {
        flex: 0 0 calc(50% - 10px);
        height: 100px;
    }
}

@media (max-width: 768px) {
    .section-item {
        flex: 0 0 100%;
        height: 80px;
    }
}