body.page-template-notre-cabinet {
    background-color: #f4f4f4;
}

.cabinet-page {
    background-color: #f4f4f4;
}

.cabinet-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cabinet-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.cabinet-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cabinet-hero__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.85);
}

.cabinet-hero__title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.cabinet-hero__subtitle {
    font-size: 1.15rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cabinet-overview {
    background-color: #fff;
    margin-top: -60px;
    padding: 60px 0 40px;
}

.cabinet-overview__title {
    margin-top: 100px;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #101010;
}

.cabinet-overview__content {
    color: #4b4b4b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cabinet-overview__content p {
    margin-bottom: 1rem;
}

.cabinet-overview__paragraph {
    font-size: 1rem;
    color: #4b4b4b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cabinet-overview__list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0 0;
}

.cabinet-overview__list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1c1c1c;
}

.cabinet-overview__list-icon {
    width: 30px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cabinet-overview__list-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.cabinet-overview__list-text {
    flex: 1;
}

.cabinet-values {
    padding: 40px 0 100px;
    background: white;
}

.cabinet-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cabinet-values__card {
    background-color: #fff;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    border-image: linear-gradient(160deg, #f4d713 0%, rgba(255, 255, 255, 0.7) 100%) 1;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-image-source 0.3s ease;
}

.cabinet-values__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    border-image: linear-gradient(160deg, rgba(255, 255, 255, 0.8) 0%, #f4d713 100%) 1;
}

.cabinet-values__icon img {
    width: 90px;
}

.cabinet-values__card-title {
    margin: 1.25rem 0 0.65rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cabinet-values__card-text {
    margin: 0;
    color: #4b4b4b;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .cabinet-hero {
        padding: 60px 0;
    }

    .cabinet-overview__title {
        font-size: 2rem;
    }

    .cabinet-values {
        padding: 30px 0 80px;
    }
}

@media (max-width: 991px) {
    .cabinet-overview {
        margin-top: -40px;
    }

    .cabinet-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .cabinet-hero {
        min-height: 240px;
        padding: 60px 0;
    }

    .cabinet-values__grid {
        grid-template-columns: 1fr;
    }

    .cabinet-overview {
        padding: 40px 0 30px;
    }

    .cabinet-overview__list {
        margin-top: 1.5rem;
    }

    .cabinet-overview__list-icon {
        width: 52px;
        height: 52px;
    }

    .cabinet-values__card {
        padding: 26px 18px;
    }

    .cabinet-values__card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cabinet-overview__title {
        font-size: 1.6rem;
    }

    .cabinet-values__card {
        padding: 22px 16px;
    }

    .cabinet-values__icon img {
        width: 70px;
    }
}
