/* ==========================================================================
   LDP — Tâm Anh Khám chữa bệnh & điều trị chuyên sâu
   ========================================================================== */

   #ldp-cttsk-child {
    font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    color: #302f39;
}

/* Banner & header fallback */
#ldp-cttsk-child .cttsk-child-banner .banner {
    text-align: center;
    margin: auto;
    background-image: linear-gradient(89deg, #06258b 0%, #0b2a8d 100%);

}

#ldp-cttsk-child .cttsk-child-banner .banner img {
    width: auto;
    height: auto;
}

#ldp-cttsk-child .cttsk-child-header {
    padding: 36px 0 28px;
    text-align: center;
    background: #0039a0;
}

#ldp-cttsk-child .cttsk-child-header .title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #fb8c00;
    text-transform: uppercase;
    line-height: 1.2;
}

#ldp-cttsk-child .cttsk-child-nav {
    background: #ffffff;
    padding: 10px 0;
}

#ldp-cttsk-child .cttsk-child-nav-item .cttsk-child-nav-item__inner {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Body */
#ldp-cttsk-child .cttsk-child-body {
    padding: 10px 0 48px;
}

#ldp-cttsk-child .intro {
    font-size: 17px;
    color: #302f39;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 24px;
}

#ldp-cttsk-child .intro p {
    margin: 0 0 12px;
}

#ldp-cttsk-child .intro p:last-child {
    margin-bottom: 0;
}

#ldp-cttsk-child .cttsk-child-s1 {
    margin-bottom: 20px;
}

#ldp-cttsk-child h2.title {
    margin: 0 0 12px;
    color: #0041c9;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.25;
}

#ldp-cttsk-child .cttsk-child-s1 .intro {
    margin-bottom: 18px;
}

/* ==========================================================================
   Section 1 — Tab nhóm đối tượng
   ========================================================================== */

.s1 {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #D0EBF7;
    border-radius: 10px;
}

/* Tabs */
.s1_tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    margin: 0;
    padding: 0 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.s1_tabs::-webkit-scrollbar {
    height: 6px;
}

.s1_tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 65, 201, 0.25);
    border-radius: 999px;
}

.s1_tab {
    flex: 1 1 0;
    min-width: 155px;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 0px solid #d4e2f4;
    border-radius: 12px;
    background: #ffffff;
    color: #0039A0;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 57, 160, 0.08);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.s1_tab:hover {
    border-color: #006FFF;
    background: #006FFF;
    color: #ffffff;
}

.s1_tab.is-active {
    background: #006FFF;
    border-color: #006FFF;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 65, 201, 0.28);
    z-index: 2;
}

.s1_tab.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #006FFF;
}

.s1_tab_icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s1_tab_icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.s1_tab_label {
    flex: 1 1 auto;
    min-width: 0;
}

/* Panels */
.s1_panels {
    position: relative;
    margin-top: 0px;
}

.s1_panel {
    display: none;
}

.s1_panel.is-active {
    display: block;
    animation: s1_fade 0.25s ease;
}

@keyframes s1_fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.s1_cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    overflow: hidden;
}

.s1_col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.s1_col + .s1_col {
    border-left: 1px solid #dce9fb;
}

.s1_col_head {
    background: #0039a0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 13px 12px;
    /* letter-spacing: 0.03em; */
    line-height: 1.3;
}

.s1_col_head_red {
    background: #e30613;
}

/* Lists */
.s1_list {
    list-style: none;
    margin: 0;
    padding: 16px 14px 20px;
    justify-content: space-between;
    height: 100%;
}

.s1_list_grid {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.s1_list_grid .s1_list_col {
    flex: 1 1 0;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
}

.s1_list_shield {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.s1_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.2;
    color: #0039A0;
}

.s1_item_icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s1_item_icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.s1_item_text {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 3px;
    font-weight: 500;
}


.s1_notes {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #dce9fb;
    font-size: 14px;
    line-height: 1.5;
    color: #5a5868;
}

.s1_notes p {
    margin: 0 0 8px;
}

.s1_notes p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Section 2 — Bệnh lý theo đối tượng
   ========================================================================== */

#ldp-cttsk-child .cttsk-child-s2 {
    margin-top: 36px;
    margin-bottom: 20px;
}

#ldp-cttsk-child .cttsk-child-s2 .intro {
    margin-bottom: 18px;
}

.s2 {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #D0EBF7;
}

.s2_tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    background: #D0EBF7;
}

.s2_tabs::-webkit-scrollbar {
    height: 6px;
}

.s2_tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 57, 160, 0.25);
    border-radius: 999px;
}

.s2_tab {
    flex: 1 1 0;
    min-width: 130px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 8px 12px;
    border: 0;
    border-bottom: 4px solid #0039A0;
    background: #ffffff;
    color: #0039A0;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.s2_tabs .s2_tab:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.s2_tabs .s2_tab:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.s2_tab:hover:not(.is-active) {
    background: #0039A0;
    color: #ffffff;
}

.s2_tab.is-active {
    background: #0039A0;
    color: #ffffff;
}

.s2_tab_icon {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.s2_tab_icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.s2_tab_icon.has-hover-icon .s2_tab_icon_hover {
    display: none;
}

.s2_tab.is-active .s2_tab_icon.has-hover-icon .s2_tab_icon_default,
.s2_tab:hover .s2_tab_icon.has-hover-icon .s2_tab_icon_default {
    display: none;
}

.s2_tab.is-active .s2_tab_icon.has-hover-icon .s2_tab_icon_hover,
.s2_tab:hover .s2_tab_icon.has-hover-icon .s2_tab_icon_hover {
    display: block;
}

.s2_tab_label {
    flex: 1 1 auto;
    min-width: 0;
}

.s2_panels {
    position: relative;     
    padding: 10px;
    background: #D0EBF7;
}

.s2_panel {
    display: none;
}

.s2_panel.is-active {
    display: block;
    animation: s2_fade 0.25s ease;
}

@keyframes s2_fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.s2_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.s2_card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    min-height: 100%;
}

.s2_card_num {
    /* position: absolute;
    top: 10px;
    left: 10px; */
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0039A0;
    background: #ffffff;
    color: #0039A0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.s2_card_title {
    margin: 0;
    padding-bottom: 5px;
    color: #0039A0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.s2_card_bottom {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 10px;
    height: 100%;
}

.s2_card_img {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.s2_card_img img {
    display: block;
    width: 100%;
    max-width: 110px;
    height: auto;
    object-fit: contain;
}

.s2_card_desc {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    color: #0039A0;
}

.s2_card_desc p {
    margin: 0;
}

.s2_notes {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #dce9fb;
    font-size: 14px;
    line-height: 1.5;
    color: #5a5868;
}

.s2_notes p {
    margin: 0 0 8px;
}

.s2_notes p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
    .s1_tab {
        min-width: 170px;
    }

    .s2_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .s2_tab {
        min-width: 170px;
    }

    .s1_cols {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .s1_col_specialty {
        grid-column: 1 / -1;
        border-left: 0 !important;
        border-top: 1px solid #dce9fb;
    }

    .s1_list_shield {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 14px;
    }
}

@media (max-width: 991px) {
    #ldp-cttsk-child h2.title {
        font-size: 24px;
    }

    .s1_tabs {
        flex-wrap: nowrap;
        padding-bottom: 15px;
    }

    .s2_tabs {
        flex-wrap: nowrap;
        padding-bottom: 0;
    }

    .s1_tab {
        flex: 0 0 auto;
        min-width: 190px;
        max-width: 240px;
    }

    .s2_tab {
        flex: 0 0 auto;
        min-width: 150px;
        max-width: 220px;
    }

    .s2_tab.is-active {
        min-width: 190px;
        max-width: 280px;
    }

    .s2_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s1_cols {
        grid-template-columns: 1fr;
    }

    .s1_col + .s1_col {
        border-left: 0;
        border-top: 1px solid #dce9fb;
    }

    .s1_col_specialty {
        grid-column: auto;
    }
}

@media (max-width: 575px) {
    #ldp-cttsk-child .cttsk-child-body {
        padding: 10px 0 36px;
    }

    #ldp-cttsk-child .intro {
        font-size: 16px;
    }

    #ldp-cttsk-child h2.title {
        font-size: 22px;
    }

    .s1_tab {
        min-width: 165px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .s1_tab_icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .s1_list_grid {
        gap: 5px;
    }

    .s1_list_shield {
        display: flex;
        flex-direction: column;
    }

    .s1_col_head {
        font-size: 14px;
        padding: 11px 10px;
    }

    .s1_item {
        font-size: 13px;
    }

    .s1_item_icon {
        flex-basis: 40px;
        width: 40px;
        height: auto;
    }

    .s2_tab {
        min-width: 120px;
        padding: 8px 6px 10px;
        font-size: 12px;
    }

    .s2_tab.is-active {
        min-width: 160px;
        padding: 10px 10px;
        font-size: 13px;
    }

    .s2_tab_icon {
        width: 34px;
        height: 34px;
    }
    .s2_card_num{
        width: 30px;
        height: 30px;
    }
    .s2_card_bottom{
        padding: 5px;
    }
    .s2_tab.is-active .s2_tab_icon {
        width: 38px;
        height: 38px;
    }

    .s2_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s2_card_title {
        font-size: 14px;
        line-height: 1.1;
    }

    .s2_card_img {
        flex-basis: 38%;
        max-width: 38%;
    }

    .s2_card_desc {
        font-size: 12px;
    }
}

/* ==========================================================================
   Section 3 — Công nghệ & điều trị chuyên sâu
   ========================================================================== */

.s3 {
    background: #0039A0;
    color: #ffffff;
    padding: 48px 0 56px;
}

.s3_title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

.s3_intro {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
}

.s3_intro p {
    margin: 0 0 10px;
}

.s3_intro p:last-child {
    margin-bottom: 0;
}

.s3_subtitle {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.s3_a {
    margin-bottom: 40px;
}

.s3_a_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.s3_a_hero {
    border-radius: 14px;
    overflow: hidden;
    min-height: 100%;
}

.s3_a_hero img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.s3_a_card {
    background: #EBF6FF;
    border-radius: 14px;
    padding: 18px 18px 20px;
    color: #302f39;
    min-height: 100%;
}

.s3_a_card_title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #FB8C00;
    text-transform: uppercase;
}

.s3_a_card_desc {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: #302f39;
}

.s3_a_card_desc p {
    margin: 0;
}

.s3_a_card_label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 20px;
    background-image: url('../images/ldp-congthongtinsuckhoe/card-label-icon-bgr.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-color: #0039A0; */
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.s3_a_card_list {
    margin: 0;
    /* padding: 0 0 0 18px; */
    list-style: disc;
}

.s3_a_card_list ul {
    padding-left: 25px;
}
.s3_a_card_list li {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #302f39;
}

.s3_a_card_list li:last-child {
    margin-bottom: 0;
}

.s3_b {
    margin-top: 8px;
}

.s3_b_subtitle {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
}

.s3_benefits_title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #F5C842;
    text-transform: uppercase;
}

.s3_benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.s3_benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #B57E10 0%,
        #E5C25B 20%,
        #FFF3A6 50%,
        #F9DF7B 75%,
        #B57E10 100%
    );
    color: #302f39;
    min-height: 100%;
}

.s3_benefit_icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
}

.s3_benefit_icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.s3_benefit_text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #0039A0;
}

.s3_intro--after-benefits {
    margin-bottom: 24px;
}

.s3_slider_wrap {
    position: relative;
    margin-bottom: 15px;
}

.s3_slider_wrap .slick-prev,
.s3_slider_wrap .slick-next {
    width: 40px;
    height: 40px;
    z-index: 3;
    background: #006FFF;
    border-radius: 50%;
    opacity: 1;
}

.s3_slider_wrap .slick-prev {
    left: 0;
}

.s3_slider_wrap .slick-next {
    right: 0;
}

.s3_slider_wrap .slick-prev span,
.s3_slider_wrap .slick-next span {
    border-color: #ffffff;
    opacity: 1;
}

.s3_slide_inner {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 0;
    background: #ffffff;
    align-items: center;
    color: #302f39;
    border-radius: 10px;
    padding: 10px;
}
.s3_slide_inner img{
    border-radius: 14px;
    overflow: hidden;
}

.s3_slide_img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.s3_slide_body {
    padding: 15px 24px 15px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.s3_slide_title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #0039A0;
}

.s3_slide_desc {
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: #302f39;
    text-align: justify;
}

.s3_slide_desc p {
    margin: 0;
}

.s3_slide_lists {
    margin-bottom: 16px;
}

.s3_slide_list {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: var(--s3-cols, 3);
    column-gap: 14px;
}

.s3_slide_list li {
    display: flex;
    gap: 6px;
    break-inside: avoid;
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 600;
    color: #0039A0;
    align-items: center;
}

.s3_slide_list li:last-child {
    margin-bottom: 0;
}

.s3_slide_list_icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.s3_slide_list_icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s3_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    background: #FB8C00;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.s3_btn:hover {
    opacity: 0.92;
    color: #ffffff;
    text-decoration: none;
}

.s3_btn--sm {
    width: auto;
    min-width: 140px;
    padding: 10px 18px;
    font-size: 14px;
}

.s3_cards_slider_wrap {
    position: relative;
    margin-top: 8px;
}

.s3_cards_slider .slick-slide {
    height: auto;
}

.s3_cards_slide {
    height: 100%;
    padding: 0 7px;
}

.s3_cards_slider_wrap .slick-prev,
.s3_cards_slider_wrap .slick-next {
    width: 40px;
    height: 40px;
    z-index: 3;
    background: #006FFF;
    border-radius: 50%;
    opacity: 1;
}

.s3_cards_slider_wrap .slick-prev {
    left: 0;
}

.s3_cards_slider_wrap .slick-next {
    right: 0;
}

.s3_cards_slider_wrap .slick-prev span,
.s3_cards_slider_wrap .slick-next span {
    border-color: #ffffff;
    opacity: 1;
}

.s3_cards_slider_wrap .slick-next span {
    transform: rotate(135deg);
    right: 16px;
    top: 16px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 1px;
}

.s3_cards_slider_wrap .slick-prev span {
    transform: rotate(-45deg);
    left: 16px;
    top: 16px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 1px;
}

.s3_card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    color: #302f39;
    min-height: 100%;
}

.s3_card_img img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.s3_card_body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 14px 14px 16px;
    gap: 10px;
}

.s3_card_title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #0039A0;
}

.s3_card_desc {
    flex: 1 1 auto;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: #302f39;
}

.s3_card_desc p {
    margin: 0;
}

.s3_card .s3_btn {
    align-self: center;
    margin-top: auto;
}

.s3_slider_wrap .slick-next span {
	transform: rotate(135deg);
	right: 16px;
	top: 16px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	opacity: 1;
	border-radius: 1px;
}

.s3_slider_wrap .slick-prev span {
	transform: rotate(-45deg);
	left: 16px;
	top: 16px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	opacity: 1;
	border-radius: 1px;
}

@media (max-width: 1199px) {
    .s3_a_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s3_benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 991px) {
    .s3 {
        padding: 36px 0 44px;
    }

    .s3_title {
        font-size: 24px;
    }

    .s3_subtitle {
        font-size: 20px;
    }

    .s3_a_grid {
        grid-template-columns: 1fr;
    }

    .s3_benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s3_slide_inner {
        grid-template-columns: 1fr;
    }

    .s3_slide_list {
        column-count: var(--s3-cols-mobile, 2);
    }

}

@media (max-width: 575px) {
    .s3_title {
        font-size: 22px;
    }

    .s3_intro {
        font-size: 15px;
    }

    .s3_benefits {
        grid-template-columns: 1fr;
    }
    .s3_slide_body{
        padding: 10px 0;
        min-height: auto;
    }
}


/* ==========================================================================
   Section 4 — Quy trình khám và điều trị
   ========================================================================== */

.s4 {
    padding: 36px 0 48px;
    background: #EBF6FF;
}

.s4_box {
    border-radius: 14px;
    background: #ffffff;
}

.s4_title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    color: #0041c9;
}

.s4_subtitle {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: #FB8C00;
}

.s4_intro {
    margin-bottom: 24px;
    font-size: 17px;
    font-weight: 500;
    color: #302F39;
    text-align: justify;
}

.s4_intro p {
    margin: 0 0 10px;
}

.s4_intro p:last-child {
    margin-bottom: 0;
}

.s4_steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.s4_step {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.s4_step_head {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 80px;
}

.s4_step_num {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: #0039A0;
}

.s4_step_title {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 7px 12px;
    background: #0039A0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.s4_step_img {
    text-align: center;
}

.s4_step_img img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.s4_step_desc {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 500;
    color: #302F39;
    text-align: justify;
    min-height: 160px;
    padding: 5px;
}

.s4_step_desc p {
    margin: 0;
}

.s4_step_divider {
    margin: 0 0 12px;
    padding: 5px;
    padding-top:12px;
    border-top: 2px dashed #B8D4EF;
}

.s4_step_label {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #0039A0;
}

.s4_step_list {
    font-size: 17px;
    font-weight: 500;
    color: #302F39;
}

.s4_step_list ul {
    margin: 0;
    padding: 0 0 0 30px;
    list-style: disc;
}


.s4_step_list p {
    margin: 0 0 0px;
}

.s4_notes {
    font-size: 17px;
    font-weight: 500;
    color: #302F39;
    margin-bottom: 14px;
}

.s4_notes p {
    margin: 0 0 8px;
}

.s4_notes p:last-child {
    margin-bottom: 0;
}

.s4_cta_wrap {
    display: flex;
    justify-content: center;
}

.s4_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 260px;
    padding: 10px 24px;
    border: 0;
    border-radius: 10px;
    background: #FF6606;
    color: #ffffff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.s4_btn:hover {
    opacity: 0.92;
    color: #ffffff;
    text-decoration: none;
}

.s4_btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

@media (max-width: 1199px) {
    .s4_steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .s4 {
        padding: 28px 0 40px;
    }

    .s4_title {
        font-size: 24px;
    }

    .s4_steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .s4_title {
        font-size: 22px;
    }

    .s4_subtitle {
        font-size: 16px;
    }

    .s4_intro {
        font-size: 15px;
    }

    .s4_steps {
        grid-template-columns: 1fr;
    }

    .s4_btn {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }
    .s4_step_desc {
        min-height: auto;
    }
}
