/* Treatment content pages: breadcrumb row with Book Now CTA */
.breadcrumb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .breadcrumb-row .breadcrumb {
        margin: 30px 0;
    }

.breadcrumb-cta {
    margin: 15px 0;
}

@media (max-width: 480px) {
    .breadcrumb-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .breadcrumb-row .breadcrumb {
            margin-bottom: 10px;
        }
}

/* Treatment content pages: readable paragraph and heading spacing */
.blog-detail .awe-box-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

    .blog-detail .awe-box-content p:last-child {
        margin-bottom: 0;
    }

h2.margin-top-30 {
    margin-top: 45px !important;
    margin-bottom: 20px;
    padding-top: 25px;
    border-top: 1px solid #e2e2e2;
    font-size: 22px;
    color: #333;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

/* Treatment content pages: bordered card per section */
.treatment-card {
    border: 1px solid #ddd;
    padding: 30px;
    margin-top: 45px;
    text-align: left;
}

    .treatment-card:first-of-type {
        margin-top: 45px;
    }

    .treatment-card h2.margin-top-30 {
        margin: 0 0 20px !important;
        padding-top: 0;
        border-top: 0;
        text-align: left;
    }

    .treatment-card .treatment-split:only-child,
    .treatment-card p:only-child {
        margin-top: 0;
    }

/* Treatment content pages: text + image split sections */
.treatment-split {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

    .treatment-split.reverse {
        flex-direction: row-reverse;
    }

.treatment-split-text {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
    text-align: left;
}

.treatment-split-image {
    position: relative;
    flex: 0 0 calc(40% - 15px);
    max-width: calc(40% - 15px);
    min-height: 220px;
    overflow: hidden;
    border-radius: 0;
}

    .treatment-split-image img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

@media (max-width: 767px) {
    .treatment-split,
    .treatment-split.reverse {
        flex-direction: column;
    }

        .treatment-split-text,
        .treatment-split-image {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .treatment-split-image {
            height: 260px;
        }
}
