/* Block: featured-treatments */

.block-featured-treatments {
    padding: 80px 0;
    background-color: #F6FCFC;
}

.block-featured-treatments .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.block-featured-treatments .section-title {
    font-size: 40px;
    color: #030024;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
@media (max-width: 767px){
    .block-featured-treatments .section-title {
        display: block;
    }
}


.block-featured-treatments .title-accent {
    width: 4px;
    height: 40px;
    background-color: #3DD9E4;
    border-radius: 2px;
    flex-shrink: 0;
}

.block-featured-treatments .section-title .highlight {
    position: relative;
    display: inline-block;
}

.block-featured-treatments .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #36C3C1;
    border-radius: 2px;
}

/* Grid */
.block-featured-treatments .treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

/* Card */
.block-featured-treatments .treatment-card {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 15px 32px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
}

.block-featured-treatments .treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.block-featured-treatments .treatment-image {
    flex-shrink: 0;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-featured-treatments .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-featured-treatments .image-wrapper.treatment-icon {
    width: 60px;
}

.block-featured-treatments .image-wrapper.treatment-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 50px;
}

.block-featured-treatments .image-wrapper.treatment-photo {
    width: 120px;
    height: 120px;
    background-color: #FFFFFF;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.block-featured-treatments .image-wrapper.treatment-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.block-featured-treatments .treatment-title {
    font-size: 18px;
    font-weight: 500;
    color: #323232;
    margin: 0;
    line-height: 1.4;
}

/* Footer Button */
.block-featured-treatments .section-footer {
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .block-featured-treatments .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .block-featured-treatments .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}