.container {
    max-width: unset !important;
    margin: 80px auto;
    padding-inline: 190px;
    min-height: 100%;
    flex: 1 !important;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    height: 52px;
}

.title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 4%;
}

.title-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.25%;
}

.title-breadcrumb a {
    color: #6B6B6B;
    text-decoration: none;
}

.title-breadcrumb .category-link {
    color: #525252;
}

.divider {
    display: block;
    width: 100%;
    height: 1px;
    border: 1px solid var(----md-divider--color, #F0F0F0);
    border-top: 1px solid #F0F0F0;
    margin: 16px 0 0 0;
    padding: 0;
}

.search-container-sitemap {
    position: relative;
}

.search-input-sitemap {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    width: 252px;
    font-size: 0.875rem;
    height: 52px;
}

.search-icon-sitemap {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    width: 1rem;
    height: 1rem;
}

.grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 233.33px);
    gap: 0 20px;
    margin-top: 40px;
}

.grid-all-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 233.33px);
    gap: 40px;
    margin-top: 20px;
}

.all-links {
    margin-top: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-icon {
    width: 24px;
    height: 24px;
}

.links-list {
    list-style: none;
}

.link-item {
    margin-bottom: 0.5rem;
}

.link {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.link:hover {
    color: #0f172a;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

.search-header {
    display: none;
}

.mobile-search-button {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding-inline: 20px;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, 167px);
        gap: 40px 20px;
    }

    .grid-all-links {
        grid-template-columns: repeat(auto-fill, 167px);
        gap: 40px 20px;
    }

    .link-item {
        overflow: hidden;
        white-space: nowrap;
    }

    .link {
        text-overflow: ellipsis;
    }
}

@media (max-width: 376px) {
    .title-breadcrumb {
        font-size: 16px;
    }

    .search-container-sitemap {
        display: none;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, 157px);
        gap: 40px 20px;
    }

    .grid-all-links {
        grid-template-columns: repeat(auto-fill, 157px);
        gap: 40px 20px;
    }

    .link {
        display: block;
        opacity: 1;
        font-size: 14px;
    }

    .divider {
        margin: 18px 0 0 0;
    }

    .mobile-search-button {
        display: flex;
        width: 72px;
        text-align: center;
        background: #6B5170;
        color: #f2ebf3;
        height: 52px;
        border-radius: 4px;
        align-items: center;
        justify-content: center;
    }

    .mobile-search-button:hover {
        background: #473c49;
        cursor: pointer;
    }

    .mobile-search-button .search-icon-sitemap {
        position: relative;
        left: 0;
        top: 0;
        transform: translateY(0);
        color: #FCFCFC;
        width: 20px;
        height: 20px;
    }

    .search-header .search-icon-sitemap {
        position: relative;
        left: 23px;
        top: 16px;
        transform: translateY(0);
        width: 20px;
        height: 20px;
        z-index: 1000;
    }

    .mobile-search-button .nav-label {
        height: 20px !important;
    }

    .search-header {
        display: none;
        flex-direction: row;
        align-items: center;
        height: 52px;
        position: absolute;
        top: 80px !important;
        width: 100%;
    }

    .search-header .clear-input {
        opacity: 1;
    }

    .search-header .search-input {
        height: unset;
    }

    .search-header .fullscreen-search {
        width: 259px !important;
        padding-left: 30px !important;
        height: 52px !important;
    }

    .search-header .placeholderMobile {
        left: 45px;
        top: 14px;
    }

    .search-header span {
        margin-left: 7px;
        font-size: 16px;
    }

    .search-header .close-menu {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 1920px) {
    .container {
        min-height: 65vh;
    }
}