/* Упрощенный строгий дизайн страницы регионов */

.container {
    max-width: 1200px;
    padding: 0 1rem 3rem;
}

/* Общий фон секции регионов (единый с hero) */
.regions-content {
    padding: 2.5rem 0;
    background: #f8f9fa;
}

/* Фильтр регионов - упрощенный дизайн */
.regions-filter {
    background: #ffffff;
    padding: 2.5rem 0;
    box-shadow: 0 2px 12px rgba(26, 63, 103, 0.08);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(26, 63, 103, 0.1);
}

/* Заголовок фильтра */
.regions-filter-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

.filter-main-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.filter-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.filter-description {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Контент фильтра */
.regions-filter-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    padding: 0 2rem;
    align-items: flex-start;
}

/* Секции фильтра */
.filter-section {
    flex: 1;
    border-bottom: none;
    padding-bottom: 0;
}

.filter-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Секция поиска */
.search-section {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

#regions-search {
    width: 100%;
    padding: 1.25rem 1.5rem;
    padding-right: 3rem;
    border: 2px solid rgba(26, 63, 103, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 500;
}

#regions-search:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 63, 103, 0.1);
}

#regions-search::placeholder {
    color: #999;
    font-weight: 400;
}

.search-clear-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 63, 103, 0.05);
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-clear-btn:hover {
    background: rgba(26, 63, 103, 0.15);
    color: var(--primary-color);
}

/* Секция фильтров */
.filters-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Вкладки фильтра - упрощенный дизайн */
.regions-filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.news-filter-tab {
    background: #ffffff;
    border: 2px solid rgba(26, 63, 103, 0.12);
    color: #555;
    padding: 0.875rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    min-width: auto;
}

.news-filter-tab:hover,
.news-filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 63, 103, 0.15);
}

/* Дополнительная кнопка меню */
.additional-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
    align-self: flex-start;
}

.additional-menu-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Активные фильтры - компактный дизайн */
.active-filters-bar {
    background: #ffffff;
    border: 1px solid rgba(26, 63, 103, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(26, 63, 103, 0.06);
    display: none;
    position: relative;
}

.active-filters-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.active-filters-header {
    display: none;
}

.active-filters-title {
    display: none;
}

.active-filters-subtitle {
    display: none;
}

/* Контент фильтров - горизонтальная компоновка */
.filter-bar-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Теги фильтров - компактные */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 63, 103, 0.05);
    border: 1px solid rgba(26, 63, 103, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0.875rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(26, 63, 103, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.filter-tag:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 63, 103, 0.12);
}

.filter-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.filter-tag-label {
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.85rem;
}

.filter-tag-remove {
    background: rgba(26, 63, 103, 0.1);
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.filter-tag-remove:hover {
    background: rgba(26, 63, 103, 0.2);
    color: var(--primary-color);
    transform: scale(1.1);
}

.filter-tag-remove svg {
    width: 10px;
    height: 10px;
}

/* Действия фильтров - компактная кнопка */
.filter-actions {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.clear-all-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
    white-space: nowrap;
}

.clear-all-filters:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Сетка регионов */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Карточка региона - упрощенный дизайн */
.region-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(26, 63, 103, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 63, 103, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(26, 63, 103, 0.12);
    border-color: rgba(26, 63, 103, 0.15);
}

.region-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.region-card-header {
    position: relative;
    overflow: visible;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.region-card-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
    position: relative;
    padding: 1rem;
}

.region-card-img {
    max-width: 80%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.region-card:hover .region-card-img {
    transform: scale(1.05);
}

.region-card-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
}

.number-badge {
    background: #ff6b35;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: 3px solid white;
    display: none;
}

.region-card:hover .number-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.region-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.region-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.region-card-federation {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.region-card-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(26, 63, 103, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.region-card:hover .stat-item {
    background: rgba(26, 63, 103, 0.06);
}

.stat-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.region-card-actions {
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
}

.region-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 63, 103, 0.15);
    font-size: 1rem;
}

.region-card-btn:hover {
    background: #2d5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 63, 103, 0.2);
}

.region-card-btn svg {
    transition: transform 0.3s ease;
}

.region-card-btn:hover svg {
    transform: translateX(2px);
}

/* Стили загрузки */
.regions-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    text-align: center;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(26, 63, 103, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.regions-loading p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Сообщение об отсутствии результатов */
.no-regions {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(26, 63, 103, 0.08);
    border: 1px solid rgba(26, 63, 103, 0.1);
    position: relative;
    margin: 2rem 0;
}

.no-regions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.no-regions-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    display: inline-block;
}

.no-regions h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.no-regions p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Секция карты регионов */
.regions-map-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background: #f8f9fa;
}

.regions-map-section h3 {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.regions-map-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.regions-map {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(26, 63, 103, 0.12), 0 2px 8px rgba(26, 63, 103, 0.08);
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border: 2px solid rgba(26, 63, 103, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.regions-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(26, 63, 103, 0.5) 100%);
    z-index: 1;
}

.regions-map:hover {
    box-shadow: 0 6px 24px rgba(26, 63, 103, 0.15), 0 4px 12px rgba(26, 63, 103, 0.1);
    border-color: rgba(26, 63, 103, 0.15);
    transform: translateY(-2px);
}

.regions-map svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.regions-map svg path {
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.regions-map svg path:hover {
    filter: brightness(1.15);
    transform: scale(1.01);
    transform-origin: center;
}

.map-placeholder {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    padding: 2rem;
}

/* Pagination */
.regions-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 3rem;
}

.rp-btn {
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid rgba(26, 63, 103, 0.2);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(26, 63, 103, 0.08);
    transition: all 0.2s ease;
}

.rp-btn:hover:not([disabled]) {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 63, 103, 0.12);
}

.rp-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.rp-pages {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rp-page.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.rp-ellipsis {
    color: #6c757d;
    padding: 0 0.25rem;
    font-weight: 700;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .regions-filter-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .search-section {
        flex: none;
        width: 100%;
    }
    
    .filters-section {
        width: 100%;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .regions-filter {
        padding: 2rem 0;
        border-radius: 20px;
    }
    
    .regions-filter-header {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .regions-filter-content {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .regions-filter-tabs {
        gap: 0.75rem;
    }
    
    .news-filter-tab {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 16px;
    }
    
    .additional-menu-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        align-self: center;
        border-radius: 16px;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
        margin: 2rem 0;
    }
    
    .region-card-body {
        padding: 1.5rem;
    }
    
    .region-card-header {
        min-height: 150px;
    }
    
    .region-card-image {
        padding: 0.75rem;
    }
    
    .region-card-img {
        max-height: 300px;
    }
    
    /* Адаптация карты для планшетов */
    .regions-map-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .regions-map-section h3 {
        margin-bottom: 2rem;
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    .regions-map {
        padding: 2rem;
        min-height: 350px;
        border-radius: 20px;
    }
    
    .regions-map svg {
        min-height: 300px;
    }
    
    .regions-map svg path {
        stroke-width: 1.5px;
    }
}

@media (max-width: 480px) {
    .regions-filter-content {
        padding: 0 1rem;
    }
    
    .regions-filter-header {
        padding: 0 1rem;
    }
    
    .regions-filter-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .news-filter-tab {
        width: 100%;
        text-align: center;
    }
    
    .additional-menu-btn {
        width: 100%;
        justify-content: center;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Адаптация карты для мобильных */
    .regions-map-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .regions-map-section h3 {
        margin-bottom: 1.5rem;
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        padding: 0 1rem;
    }
    
    .regions-map {
        padding: 1.5rem;
        min-height: 500px;
        border-radius: 20px;
        overflow-x: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(26, 63, 103, 0.3) transparent;
        position: relative;
        display: block !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        border-width: 2px;
    }
    
    .regions-map::-webkit-scrollbar {
        height: 8px;
        width: 8px;
    }
    
    .regions-map::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .regions-map::-webkit-scrollbar-thumb {
        background: rgba(26, 63, 103, 0.3);
        border-radius: 4px;
    }
    
    .regions-map::-webkit-scrollbar-thumb:hover {
        background: rgba(26, 63, 103, 0.5);
    }
    
    .regions-map svg {
        width: 150%;
        min-width: 600px;
        height: auto;
        min-height: 450px;
        display: block;
        transform-origin: top left;
        margin-left: 0;
        margin-right: auto;
    }
    
    
    .regions-map svg path {
        stroke-width: 2px;
        pointer-events: all;
    }
    
    /* Улучшаем touch-зоны для мобильных */
    .regions-map svg path:active {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
    
    .filter-tags {
        justify-content: flex-start;
    }
    
    .active-filters-bar {
        padding: 1rem;
    }
    
    .filter-bar-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .filter-actions {
        justify-content: center;
        width: 100%;
    }
    
    .clear-all-filters {
        width: 100%;
        justify-content: center;
    }
}

/* FHD экраны (1920px+) */
@media (min-width: 1920px) {
    .regions-filter {
        padding: 3rem 0;
        margin-bottom: 4rem;
        border-radius: 24px;
    }

    .regions-filter-content {
        gap: 3rem;
        margin-bottom: 2rem;
        padding: 0 3rem;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }

    .search-input-wrapper {
        width: 450px;
    }

    #regions-search {
        padding: 1.5rem 2rem;
        padding-right: 4rem;
        font-size: 1.1rem;
        border-radius: 20px;
    }

    .search-clear-btn {
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.3rem;
    }

    .regions-filter-tabs {
        gap: 1.5rem;
    }

    .news-filter-tab {
        padding: 1rem 2rem;
        border-radius: 20px;
        font-size: 1.05rem;
        font-weight: 600;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 2.5rem;
    }
}

/* QHD экраны (2560px+) */
@media (min-width: 2560px) {
    .regions-filter {
        padding: 4rem 0;
        margin-bottom: 5rem;
        border-radius: 28px;
    }

    .regions-filter-content {
        gap: 4rem;
        margin-bottom: 2.5rem;
        padding: 0 4rem;
        max-width: 2200px;
        margin-left: auto;
        margin-right: auto;
    }

    .search-input-wrapper {
        width: 550px;
    }

    #regions-search {
        padding: 1.75rem 2.5rem;
        padding-right: 4.5rem;
        font-size: 1.25rem;
        border-radius: 24px;
        border-width: 3px;
    }

    .search-clear-btn {
        right: 2rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .regions-filter-tabs {
        gap: 2rem;
    }

    .news-filter-tab {
        padding: 1.25rem 2.5rem;
        border-radius: 24px;
        font-size: 1.15rem;
        font-weight: 700;
        border-width: 3px;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 3rem;
    }
}
