.treatments-section {
    padding: 5vh 5vw;
    margin-top: var(--nav-height-mobile);
    margin-bottom: var(--nav-height-mobile);
}

.treatments-list-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.treatment-card {
    border-top: 1px solid #e8e8e8;
    padding-top: 30px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

.treatment-card:first-child {
    border-top: none;
    padding-top: 0;
}

.card-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.image-side {
    flex: 0 0 100px;
    height: 100px;
}

.img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-side {
    flex: 1;
}

.meta {
    font-size: 10px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

.content-side .title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.explore-trigger {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expand-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.expand-inner p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .image-side {
        flex: 0 0 150px;
        height: 150px;
    }

    .content-side .title {
        font-size: 1.8rem;
    }

    .treatments-list-grid {
        gap: 70px;
    }
}

@media (min-width: 1024px) {
    .treatments-section {
        margin-top: var(--nav-height-desktop);
        margin-bottom: var(--nav-height-desktop);
    }

    .treatments-list-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 50px;
        row-gap: 80px;
    }

    .treatment-card:nth-child(1),
    .treatment-card:nth-child(2) {
        border-top: none;
        padding-top: 0;
    }

    .image-side {
        flex: 0 0 180px;
        height: 180px;
    }

    .card-inner {
        gap: 40px;
    }

    .content-side .title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
}