.hero {
    position: relative;
    min-height: 100vh;
    color: #ffffff;
    overflow: hidden;
}

.hero_slider,
.hero_wrapper,
.hero_slide {
    min-height: 100vh;
}

.hero_slide {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0)
    );
    z-index: 3;
    pointer-events: none;
}

.hero_container {
    position: relative;
    z-index: 2;
}

.hero_content {
    max-width: 750px;
    padding-top: 72px;
}

.hero_label,
.hero_title,
.hero_desc,
.hero_actions {
    animation: fade_up 900ms ease-out both;
}

.hero_label {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #dff8f5;
    background: rgba(255, 255, 255, 0.1);
    font-size: 15px;
    font-weight: 700;
    animation-delay: 120ms;
}

.hero_title {
    margin: 0;
    font-size: 58px;
    line-height: 1.16;
    font-weight: 800;
    animation-delay: 260ms;
}

.hero_desc {
    margin: 24px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.8;
    animation-delay: 420ms;
}

.hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    animation-delay: 580ms;
}

.hero_slider_pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px !important;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.hero_slider_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.68);
    opacity: 1;
}

.hero_slider_pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #ffffff;
}

.doctor_showcase {
    position: relative;
    padding: 0;
    border-radius: var(--radius_card);
    background: transparent;
    overflow: visible;
}

.doctor_layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: center;
}

.doctor_media {
    position: relative;
}

.doctor_photo {
    aspect-ratio: 720 / 832;
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(21, 118, 120, 0.18);
    border-radius: var(--radius_card);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(21, 118, 120, 0.16);
}

.doctor_photo::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius_inner);
    pointer-events: none;
}

.doctor_photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(21, 118, 120, 0.14),
        transparent 42%
    );
    pointer-events: none;
}

.doctor_photo img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius_inner);
    object-fit: cover;
    object-position: center top;
}

.doctor_floating_note {
    position: absolute;
    right: -20px;
    bottom: 30px;
    max-width: min(280px, calc(100% - 40px));
    padding: 18px 20px;
    border: 1px solid var(--color_border);
    border-radius: var(--radius_card);
    background: #ffffff;
    box-shadow: var(--shadow_card);
}

.doctor_floating_note strong,
.doctor_floating_note span {
    display: block;
}

.doctor_floating_note strong {
    color: var(--color_primary_dark);
    font-size: 16px;
    line-height: 1.5;
}

.doctor_floating_note span {
    margin-top: 4px;
    color: var(--color_text_light);
    font-size: 14px;
}

.doctor_kicker {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 22px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--color_primary_dark);
    background: rgba(21, 118, 120, 0.09);
    font-size: 14px;
    font-weight: 700;
}

.doctor_name {
    margin: 0;
    font-size: 44px;
    line-height: 1.18;
}

.doctor_position {
    margin: 10px 0 22px;
    color: var(--color_primary);
    font-size: 20px;
    font-weight: 700;
}

.doctor_desc {
    margin: 18px 0 0;
    color: var(--color_text_light);
    font-size: 17px;
}

.doctor_copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor_profile_list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.doctor_profile_item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--color_border);
    border-radius: var(--radius_card);
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.doctor_profile_item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow_card);
}

.doctor_profile_item b {
    color: var(--color_primary_dark);
    font-size: 16px;
    line-height: 1.7;
}

.doctor_profile_item span {
    color: var(--color_text_light);
    font-size: 15px;
    line-height: 1.7;
}

.doctor_detail_link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    padding: 12px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color_primary);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(21, 118, 120, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.doctor_detail_link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(21, 118, 120, 0.24);
}

.technology_card_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.technology_link_card,
.case_card,
.article_card,
.media_card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.technology_link_card {
    position: relative;
    min-height: 260px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(21, 118, 120, 0.14);
    border-radius: var(--radius_card);
    background:
        linear-gradient(180deg, rgba(241, 248, 247, 0.82), #ffffff 42%), #ffffff;
    isolation: isolate;
}

.technology_link_card:hover,
.case_card:hover,
.article_card:hover,
.media_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow_card);
}

.technology_link_card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(255, 255, 255, 0.24),
            transparent 34%
        ),
        linear-gradient(135deg, var(--color_primary_dark), var(--color_primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.technology_link_card:hover::before {
    opacity: 1;
}

.technology_link_number {
    position: absolute;
    right: 24px;
    top: 20px;
    color: rgba(21, 118, 120, 0.12);
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.technology_link_icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(21, 118, 120, 0.18);
    border-radius: 50%;
    color: var(--color_primary);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(21, 118, 120, 0.1);
    font-size: 24px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.technology_link_title {
    position: relative;
    z-index: 1;
    display: block;
    align-self: end;
    max-width: 92%;
    margin-top: 46px;
    color: var(--color_text);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.technology_link_title_group {
    position: relative;
    z-index: 1;
    display: block;
    align-self: end;
    max-width: 92%;
    margin-top: 34px;
}

.technology_link_title_group .technology_link_title {
    max-width: none;
    margin-top: 12px;
}

.technology_link_notice {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(21, 118, 120, 0.2);
    border-radius: 4px;
    color: var(--color_primary_dark);
    background: rgba(21, 118, 120, 0.07);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.technology_link_more {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 8px;
    margin-top: 30px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(21, 118, 120, 0.16);
    border-radius: 999px;
    color: var(--color_primary_dark);
    background: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(21, 118, 120, 0.08);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.technology_link_more i {
    transition: transform 0.25s ease;
}

.technology_link_card:hover .technology_link_number {
    color: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.technology_link_card:hover .technology_link_icon {
    color: var(--color_primary);
    background: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.technology_link_card:hover .technology_link_title {
    color: #ffffff;
}

.technology_link_card:hover .technology_link_notice {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.technology_link_card:hover .technology_link_more {
    color: var(--color_primary_dark);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.technology_link_card:hover .technology_link_more i {
    transform: translateX(4px);
}

.media_layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
}

.media_featured {
    overflow: hidden;
    border-radius: var(--radius_card);
    background: #ffffff;
    box-shadow: var(--shadow_card);
}

.media_featured_cover {
    position: relative;
    min-height: 320px;
}

.media_featured_cover img{
    display: block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.media_play_icon {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:rgba(255,255,255,.8);
    font-size: 68px;
    transition:all .3s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.media_play_icon:hover{
    color:#ffffff
}

.media_featured_body {
    padding: 28px;
}

.media_featured_title {
    margin: 10px 0 0;
    font-size: 26px;
    line-height: 1.35;
    width: 100%;
    overflow: hidden;
}

.media_featured_title a{
    display: block;
    width:100%;
    height:auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media_featured_title a:hover{
    color:var(--color_primary_dark)
}

.media_featured_desc {
    margin: 14px 0 0;
    color: var(--color_text_light);
    font-size: 16px;
    line-height: 1.8;
}

.media_list {
    display: grid;
    gap: 18px;
}

.media_card {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--color_border);
    border-radius: var(--radius_card);
    background: #ffffff;
}

.media_card_meta {
    color: var(--color_secondary);
    font-size: 14px;
    font-weight: 700;
}

.media_card_meta em{
    display:inline-block;
    margin-left:10px;
    font-size:12px;
    line-height:22px;
    padding:0 10px;
    border-radius:12px;
    font-style:normal;
    background: rgba(21, 118, 120, 0.09);
    color: var(--color_primary_dark);
}

.media_card_title {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 1.45;
}

.media_card_title:hover{
    color:var(--color_primary_dark)
}

.media_card_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--color_primary);
    font-weight: 700;
}

.case_slider {
    padding: 6px 4px 64px;
}

.case_card {
    height: auto;
    min-height: 430px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--color_border);
    border-radius: var(--radius_card);
    background: #ffffff;
}

.case_card_image {
    position: relative;
    aspect-ratio: 1.5;
    overflow: hidden;
    background: var(--color_bg_soft);
}

.case_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.case_card:hover .case_card_image img {
    transform: scale(1.04);
}

.case_card_body {
    padding: 24px;
}

.case_card_country {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--color_primary_dark);
    background: rgba(21, 118, 120, 0.09);
    font-size: 14px;
    font-weight: 700;
}

.case_card_title {
    margin: 22px 0 0;
    font-size: 22px;
    line-height: 1.4;
}

.case_card_title:hover{
    color:var(--color_primary_dark)
}

.case_card_desc {
    margin: 16px 0 0;
    color: var(--color_text_light);
    font-size: 16px;
    line-height: 1.8;
}

.case_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.case_card_tag {
    padding: 6px 10px;
    border-radius: var(--radius_inner);
    color: var(--color_secondary);
    background: rgba(122, 148, 114, 0.1);
    font-size: 13px;
    font-weight: 700;
}

.case_slider_pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.case_slider_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(21, 118, 120, 0.35);
    opacity: 1;
}

.case_slider_pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--color_primary);
}

.article_tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -16px 0 34px;
}

.article_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--color_border);
    border-radius: 999px;
    color: var(--color_primary_dark);
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition:all .3s
}

.article_tag:hover{
    background:var(--color_primary_dark);
    color:#ffffff;
}

.article_tag i {
    color: var(--color_secondary);
}

.article_tag:hover i{
    color:#ffffff;
}

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

.article_card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--color_border);
    border-radius: var(--radius_card);
    background: #ffffff;
}

.article_card_category {
    display: inline-flex;
    color: var(--color_secondary);
    font-size: 14px;
    font-weight: 700;
}

.article_card_title {
    margin: 18px 0 0;
    font-size: 22px;
    line-height: 1.45;
}

.article_card_title:hover{
    color:var(--color_primary_dark)
}

.article_card_meta {
    margin: 12px 0 0;
    color: var(--color_primary);
    font-size: 14px;
    font-weight: 700;
}

.article_card_desc {
    margin: 16px 0 0;
    color: var(--color_text_light);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .article_grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .hero_slider,
    .hero_wrapper,
    .hero_slide {
        min-height: 100vh;
    }

    .hero_title {
        font-size: 46px;
    }

    .doctor_layout,
    .media_layout {
        grid-template-columns: 1fr;
    }

    .doctor_media {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .doctor_photo {
        width: 100%;
        aspect-ratio: 720 / 832;
    }

    .doctor_floating_note {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vw;
        min-height: 0;
    }

    .hero_slider,
    .hero_wrapper,
    .hero_slide {
        height: 100%;
        min-height: 0;
    }

    .hero_slide {
        align-items: flex-end;
        background-position: center right 38%;
    }

    .hero::after {
        height: 70px;
    }

    .hero_content {
        max-width: 78%;
        padding: 0 0 46px;
    }

    .hero_label {
        margin-bottom: 10px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .hero_title {
        font-size: 30px;
        line-height: 1.22;
    }

    .hero_desc {
        margin-top: 10px;
        max-width: 88%;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero_actions {
        gap: 10px;
        margin-top: 16px;
    }

    .hero_actions .primary_button,
    .hero_actions .outline_button {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero_slider_pagination {
        bottom: 16px !important;
    }

    .hero_slider_pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .hero_slider_pagination .swiper-pagination-bullet-active {
        width: 20px;
    }

    .doctor_name {
        font-size: 38px;
    }

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

    .media_featured_cover {
        min-height: 240px;
    }

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

@media (max-width: 480px) {
    .hero_content {
        max-width: 82%;
        padding-bottom: 42px;
    }

    .hero_label {
        margin-bottom: 6px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .hero_title {
        font-size: 22px;
    }

    .hero_desc {
        display: none;
    }

    .hero_actions {
        display: flex;
        gap: 8px;
        margin-top: 12px;
    }

    .hero_actions .primary_button,
    .hero_actions .outline_button {
        width: auto;
        min-height: 32px;
        padding: 0 10px;
        font-size: 12px;
        gap: 5px;
    }

    .hero_slider_pagination {
        bottom: 16px !important;
    }

    .case_card,
    .media_card {
        padding: 22px;
    }

    .technology_link_card,
    .article_card {
        padding: 22px;
    }
}
