/* Banner */
.home-banner {
    overflow: hidden;
}

.home-banner.pagination-custom .swiper-pagination {
    position: absolute;
}

.banner-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1728/820;
	display: flex;
}

.banner-item img {
    height: 100%;
    object-fit: cover;
}

.banner-pagination {
    bottom: 3.2rem !important;
}

/* Appointment */
.appointment-home {
    position: relative;
    z-index: 2;
    margin-top: 12rem;
}

.appointment-wrap {
    position: relative;
    overflow: hidden;
    min-height: 44.1rem;
    border-radius: var(--radius);
    background: var(--bg-light-blue);
    box-shadow: 0 .8rem 3rem rgba(0, 0, 0, .12);
}

.appointment-bg {
    position: absolute;
    inset: 0;
}

.appointment-bg img {
    height: 100%;
    object-fit: cover;
}

.appointment-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 32rem 1fr;
    gap: 3.2rem;
    align-items: center;
    padding: 9.6rem 5.2rem;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.appointment-info .sec-title {
    font-size: 3.8rem;
}

.appointment-phone {
    display: flex;
    align-items: center;
    gap: 2.1rem;
}

.appointment-phone .icon {
    width: 6.4rem;
    height: 6.4rem;
    flex-shrink: 0;
}

.appointment-phone p {
    margin: 0 0 .4rem;
    color: var(--main-color);
}

.appointment-phone a {
    color: var(--main-color);
    font-size: 3.6rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    top: 50%;
    left: 2.4rem;
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 4.8rem;
    padding: 0 4.8rem 0 5.6rem;
    border: .1rem solid var(--main-color);
    border-radius: 99rem;
    outline: none;
    background: var(--white-color);
    color: #000;
    font-size: 1.6rem;
}

.form-placeholder {
    position: absolute;
    top: 50%;
    left: 5.6rem;
    color: #666;
    font-size: 1.6rem;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .2s ease;
}

.form-placeholder span {
    color: #e60000;
}

.form-control:focus~.form-placeholder,
.form-control:not(:placeholder-shown)~.form-placeholder,
.wpcf7-form-control-wrap:focus-within~.form-placeholder,
/* Dòng dưới xử lý khi input đã có chữ (không còn hiện placeholder) */
.form-control:focus+.form-placeholder,
.form-control:not(:placeholder-shown)+.form-placeholder {
    top: -.7rem;
    left: 2.4rem;
    padding: 0 .8rem;
    background: var(--bg-light-blue);
    color: var(--main-color);
    font-size: 1.2rem;
}

.form-select select {
    appearance: none;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 2.4rem;
    width: 1.6rem;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Trust */
.trust-section {
    background: var(--white-color);
}

.trust-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: center;
}

.trust-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
}

.trust-content p {
    margin: 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.stat-item:nth-child(1) {
    padding: 0 2.5rem 1.8rem 0;
    border-bottom: .1rem dashed rgba(0, 0, 0, 0.20);
    border-right: .1rem dashed rgba(0, 0, 0, 0.20);
}

.stat-item:nth-child(2) {
    padding: 0 0 1.8rem 6rem;
    border-bottom: .1rem dashed rgba(0, 0, 0, 0.20);

}

.stat-item:nth-child(3) {
    padding: 2rem 2.5rem 0 0;
    border-right: .1rem dashed rgba(0, 0, 0, 0.20);

}

.stat-item:nth-child(4) {
    padding: 2rem 0 0 6rem;
}

.stat-item:nth-child(odd) {}

.stat-item strong {
    display: block;
    color: var(--second-color);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-item span {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
}

.trust-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
}

.trust-img {
    overflow: hidden;
    height: 32.1rem;
    border-radius: .8rem;
}

.trust-img.trust-exp {
    height: 20.6rem;
}

.trust-img-large {
    height: 55.1rem;
    grid-row: span 2;
}

.trust-img img {
    height: 100%;
    object-fit: cover;
}

.trust-exp {
    position: relative;
}

.trust-exp::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 102, .83);
}

.exp-box {
    position: absolute;
    inset: .8rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: .1rem solid #fadb98;
    border-radius: .8rem;
    color: var(--white-color);
    text-align: center;
}

.exp-box strong {
    font-size: 4.2rem;
    line-height: 1;
}

.exp-box span {
    max-width: 13rem;
    margin-top: .8rem;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Brand */

/* ---------- BRAND STORY: BASE ---------- */
.brand-story {
    position: relative;
    background: #F3FCFC;
    overflow: hidden;
}

.brand-story::after {
    content: "";
    position: absolute;
    right: 5rem;
    bottom: -3rem;
    width: 23rem;
    height: 23rem;
    background: url("../images/home/tooth-bg.svg") center / contain no-repeat;
    pointer-events: none;
}

.brand-story-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.brand-story-slider {
    position: relative;
    width: 50%;
    min-width: 0;
    padding-right: 2.4rem;
}

.brandStorySwiper {
    width: 100%;
    padding-bottom: 3.2rem;
}

.brandStorySwiper .swiper-wrapper {
    align-items: stretch;
}

.brandStorySwiper .swiper-slide {
    height: auto;
}

.story-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 411 / 617;
    overflow: hidden;
    border-radius: 1.6rem;
    background: #000;
}

.story-video-thumb,
.story-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.story-video-thumb {
    z-index: 2;
    transition: 0.35s ease;
}

.story-video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.story-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    width: 6.4rem;
    height: 4.8rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0.8rem;
    background: #006666;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.3s ease;
}

.story-video-play:hover {
    background: #fbaf2c;
    transform: translate(-50%, -50%) scale(1.06);
}

.story-video-play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 0.4rem;
    border-top: 1.1rem solid transparent;
    border-bottom: 1.1rem solid transparent;
    border-left: 1.8rem solid #fff;
}

.story-video-iframe {
    z-index: 1;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.story-video-card.is-playing .story-video-thumb {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.story-video-card.is-playing .story-video-iframe {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* .story-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 411 / 617;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #ddd;
}

.story-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
} */

.story-video-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.story-video-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.brand-story-content {
    position: relative;
    z-index: 3;
    width: 50%;
    min-width: 0;
}

.brand-story-title {
    margin: 0 0 2.4rem;
}

.brand-story-desc {
    margin-bottom: 3.2rem;
}

.brand-story-desc p {
    margin: 0;
    color: #333;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.55;
}

.brand-story-desc p:not(:last-child) {
    margin-bottom: 1.8rem;
}

.brand-story .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
    padding-bottom: 2rem;
}

.brandStorySwiper .swiper-pagination-bullet {
    width: 0.9rem;
    height: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.brandStorySwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    border-radius: 50%;
    background-color: #006666;
    aspect-ratio: 1;
    transform: scale(1);
}

.brandStorySwiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 0.2rem);
    height: calc(100% + 0.2rem);
    background-color: #006666;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.brandStorySwiper .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 0.4rem);
    height: calc(100% + 0.4rem);
    border: 0.1rem solid #006666;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.brand-story-inner {
    margin-left: calc(((100vw - 10.4rem) - ((12 / 6) * 100%)) / -2);
}

/* Services */
.services-section {
    background: var(--white-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 52.5rem;
    padding: 2.4rem;
    transition: all .3s ease;
    background-image: url(../images/home/service-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.service-card:hover {
    box-shadow: 0 1rem 2.4rem rgba(0, 113, 111, 0.14);
    background-image: url(../images/home/service-bg-hover.png);
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-icon {
    position: absolute;
    top: 0rem;
    right: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((99 / 411) * 100%);
    height: auto;
    aspect-ratio: 1/1;
}

.service-icon img {
    object-fit: contain;
    transition: all .3s ease;
    width: 4.8rem;
    height: 4.8rem;
}

.service-card h3 {
    max-width: 25.4rem;
    min-height: 9rem;
    padding: 0 0 1.6rem;
    color: var(--main-color);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.25;
    border-bottom: .1rem solid #2B8080;
    transition: all .3s ease;
}

.service-card p {
    padding-top: 1.6rem;
    margin: 0 0 2.4rem;
    transition: all .3s ease;
}

.service-img {
    overflow: hidden;
    height: 21rem;
    border-radius: 1.2rem;
    margin-top: auto;
}

.service-img img {
    height: 100%;
    object-fit: cover;
}

.service-action {
    margin-top: 3.2rem;
}

/* Doctors */
.doctor-section {
    background: var(--bg-light);
    overflow: hidden;
}

.doctor-desc {
    column-count: 2;
    margin-bottom: 5.6rem;
}

.doctor-desc h3 {
    margin: 0 0 .8rem;
    font-size: 2rem;
    font-weight: 700;
}

.doctor-desc p {
    margin-bottom: 1.6rem;
}

.doctor-desc strong {
    font-weight: bold;
}

.slider-wrap {
    position: relative;
}

/* .doctor-swiper,
.certificate-swiper {
    padding: 1rem 0 4rem;
} */

.doctor-card {
    position: relative;
    overflow: hidden;
    height: 37.3rem;
    border-radius: var(--radius);
    background: var(--white-color);
    box-shadow: 1rem 1rem 3rem rgba(9, 32, 76, .16);
}

.doctor-card>img {
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    min-height: 1.6rem;
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
    padding: 1.6rem;
    border-radius: 1.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(.6rem) saturate(160%);
    -webkit-backdrop-filter: blur(.6rem) saturate(160%);
    box-shadow:
        0 1.2rem 3rem rgba(0, 0, 0, 0.16),
        inset 0 0.1rem 0 rgba(255, 255, 255, 0.65),
        inset 0 -0.1rem 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: all .3s ease;
    height: 9rem;
}

.doctor-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all .3s ease;
}

.doctor-info p {
    margin: .8rem 0 0;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-card:hover .doctor-info {
    backdrop-filter: blur(1.6rem) saturate(160%);
    -webkit-backdrop-filter: blur(1.6rem) saturate(160%);
    height: 22rem;
}

.doctor-card:hover .doctor-info p {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Certificate */

/* ---------- CERTIFICATE: BASE ---------- */
.certificate-section {
    position: relative;
    background: var(--bg-cream);
    overflow: hidden;
}

.certificate-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.certificate-more {
    height: 5.2rem;
    min-width: 17rem;
    padding: 0 2.6rem;
    border-radius: 999px;
    background: #066;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.certificate-more:hover {
    background: #066;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 113, 111, 0.22);
}

.certificate-more .icon {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.certificate-more .icon::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.certificate-slider-wrap {
    position: relative;
}

.certificateSwiper {
    width: 100%;
    overflow: hidden;
}

.certificateSwiper .swiper-slide {
    height: auto;
}

.certificate-quote,
.certificate-card {
    width: 100%;
    height: 18.8rem;
    border-radius: 0.6rem;
    overflow: hidden;
}

.certificate-quote {
    padding: 4.2rem 3rem;
    background: #00716f;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.quote-icon {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.certificate-quote p {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.45;
}

.certificate-card {
    background: #fff;
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.08);
}

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

.certificate-nav {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    border-radius: 50%;
    background: #00716f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease;
}

.certificate-nav:hover {
    background: #005f5d;
    transform: translateY(-50%) scale(1.06);
}

.certificate-nav span {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    display: block;
}

.certificate-nav span::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
}

.certificate-prev {
    left: 0;
}

.certificate-prev span::before {
    left: 0.45rem;
    transform: translateY(-50%) rotate(-135deg);
}

.certificate-next {
    right: 0;
    background: #dce4e4;
}

.certificate-next span::before {
    right: 0.45rem;
    border-color: #00716f;
    transform: translateY(-50%) rotate(45deg);
}

.certificate-next:hover {
    background: #00716f;
}

.certificate-next:hover span::before {
    border-color: #fff;
}

.certificate-slider-wrap .swiper-button-next,
.certificate-slider-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #E4E4E4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    transition: all .3s ease;
}

.certificate-slider-wrap .swiper-button-next:hover,
.certificate-slider-wrap .swiper-button-prev:hover {
    background-color: #006666;
}

.certificate-slider-wrap .swiper-button-next:hover img,
.certificate-slider-wrap .swiper-button-prev:hover img {
    filter: brightness(0) invert(1);
}

.certificate-slider-wrap .swiper-button-next::after,
.certificate-slider-wrap .swiper-button-prev::after {
    display: none;
}

.certificate-slider-wrap .swiper-button-prev,
.certificate-slider-wrap .swiper-button-next {
    top: 50%;
    margin: 0;
}

.certificate-slider-wrap .swiper-button-prev {
    left: -2.4rem;
    transform: translate(-100%, -50%);
}

.certificate-slider-wrap .swiper-button-next {
    right: -2.4rem;
    transform: translate(100%, -50%);
}

.certificate-card {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 302/200;
    cursor: pointer;
}

.certificate-card:hover::before,
.certificate-card:hover .icon-zoom {
    opacity: 1;
    visibility: visible;
    /* pointer-events: auto; */
}

.certificate-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}

.icon-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1;
    width: 4rem;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    cursor: pointer;
}

.icon-zoom:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.certificate-quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all .3s ease;
    /* opacity: 0;
    visibility: hidden;
    pointer-events: none; */
}

.certificate-card.open .certificate-quote {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Result */
.result-section {
    padding: 8rem 0;
    background: #fff;
    overflow: hidden;
}

.result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 4rem;
}

.result-head-left {
    flex: 1;
    min-width: 0;
}

.result-title {
    margin: 0 0 2.4rem;
}

.result-subtitle {
    margin: 0;
    color: #333;
    font-size: 1.6rem;
}

.result-head-right {
    flex-shrink: 0;
}

.result-social-proof {
    min-height: 7rem;
    padding: 1.4rem 2.4rem;
    border-radius: 999px;
    background: #f0fbfb;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.result-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.result-avatars img,
.result-avatars span {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 0.2rem solid #fff;
    margin-left: -1rem;
}

.result-avatars img:first-child {
    margin-left: 0;
}

.result-avatars img {
    object-fit: cover;
}

.result-avatars span {
    background: #df4b2e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.result-social-line {
    width: 0.2rem;
    height: 4rem;
    background: #066;
    flex-shrink: 0;
}

.result-social-proof p {
    margin: 0;
    color: #066;
    font-size: 1.4rem;
    line-height: 1.4;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.result-rating strong {
    color: #000;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #df4b2e;
    font-size: 1.7rem;
}

.result-rating p {
    margin: 0;
    color: #066;
    font-size: 1.4rem;
}

.result-slider-wrap {
    position: relative;
}

.resultSwiper {
    overflow: hidden;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.result-before-after {
    width: 50%;
    min-width: 0;
}

.compare-box {
    --compare-position: 50%;

    position: relative;
    width: 100%;
    aspect-ratio: 628 / 386;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #ddd;
}

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.compare-before {
    z-index: 1;
}

.compare-after {
    z-index: 2;
    clip-path: inset(0 0 0 var(--compare-position));
}

.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    width: 0.2rem;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.compare-handle {
    position: absolute;
    left: var(--compare-position);
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.16);
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
}

.compare-handle span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.compare-handle span::before,
.compare-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.2rem solid #000;
    border-right: 0.2rem solid #000;
}

.compare-handle span::before {
    left: 1.4rem;
    transform: translateY(-50%) rotate(-135deg);
}

.compare-handle span::after {
    right: 1.4rem;
    transform: translateY(-50%) rotate(45deg);
}

.compare-range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.result-content {
    width: 50%;
    min-width: 0;
}

.quote-mark {
    width: 7rem;
    height: 5rem;
    margin-bottom: 2rem;
}

.quote-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-text {
    margin: 0;
    color: #333;
    font-size: 1.75rem;
    line-height: 1.55;
}

.result-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.4rem;
}

.result-user img {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    object-fit: cover;
}

.result-user strong,
.result-user span {
    display: block;
}

.result-user strong {
    color: #333;
    font-size: 1.6rem;
    font-weight: 900;
}

.result-user span {
    margin-top: 0.3rem;
    color: #333;
    font-size: 1.6rem;
}

.result-nav {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    border-radius: 50%;
    background: #066;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease;
}

.result-nav:hover {
    background: #066;
    transform: translateY(-50%) scale(1.06);
}

.result-nav span {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    display: block;
}

.result-nav span::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
}

.result-prev {
    left: 0;
}

.result-prev span::before {
    left: 0.45rem;
    transform: translateY(-50%) rotate(-135deg);
}

.result-next {
    right: 0;
    background: #e6eaec;
}

.result-next span::before {
    right: 0.45rem;
    border-color: #066;
    transform: translateY(-50%) rotate(45deg);
}

.result-next:hover {
    background: #066;
}

.result-next:hover span::before {
    border-color: #fff;
}

.result-action {
    display: flex;
    justify-content: center;
    margin-top: 3.2rem;
}

.result-btn {
    min-width: 17rem;
    height: 5.2rem;
    padding: 0 2.6rem;
    border-radius: 999px;
    background: #066;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    transition: 0.3s ease;
}

.result-btn:hover {
    background: #066;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 113, 111, 0.22);
}

.result-btn .icon {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.result-btn .icon::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.result-slider-wrap .swiper-button-next,
.result-slider-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #E4E4E4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    transition: all .3s ease;
}

.result-slider-wrap .swiper-button-next:hover,
.result-slider-wrap .swiper-button-prev:hover {
    background-color: #066;
}

.result-slider-wrap .swiper-button-next:hover img,
.result-slider-wrap .swiper-button-prev:hover img {
    filter: brightness(0) invert(1);
}

.result-slider-wrap .swiper-button-next::after,
.result-slider-wrap .swiper-button-prev::after {
    display: none;
}

.result-slider-wrap .swiper-button-prev,
.result-slider-wrap .swiper-button-next {
    top: 50%;
    margin: 0;
}

.result-slider-wrap .swiper-button-prev {
    left: -2.4rem;
    transform: translate(-100%, -50%);
}

.result-slider-wrap .swiper-button-next {
    right: -2.4rem;
    transform: translate(100%, -50%);
}

/* Press */
.press-section {
    background: var(--white-color);
}

.press-card img {
    height: 20.1rem;
    border-radius: var(--radius);
    object-fit: cover;
}

.press-card p {
    margin: 2.4rem 0 .8rem;
    color: var(--main-color);
    font-weight: 700;
}

.press-card h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.4;
}

.consult-content .sec-tt {
    margin-bottom: 3.2rem;
}

.consult-section {
    padding: 48px 0;
    background: #fff;
    overflow: hidden;
}

.consult-inner {
    position: relative;
    padding: 9.9rem 0;
    z-index: 1;
}

.consult-inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% + 11.2rem);
    height: 100%;
    transform: translateX(-50%);
    background-color: var(--bg-light-blue);
    z-index: -2;
    border-radius: 1.6rem;
}

.consult-decor-left {
    position: absolute;
    bottom: 0;
    left: -5.6rem;
    width: 50%;
    height: auto;
    pointer-events: none;
    z-index: -1;
}

.consult-decor-left img {
    object-fit: contain;
}

.consult-decor-right {
    position: absolute;
    bottom: 0;
    right: -5.6rem;
    width: 46%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.consult-decor-right img {
    object-fit: contain;
}

.consult-title {
    margin: 0 0 32px;
}

.consult-form {
    max-width: 628px;
}

.consult-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 302px));
    gap: 24px;
    margin-bottom: 32px;
}

.consult-field {
    min-height: 48px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #006666;
    border-radius: 999px;
    background: #fff;
    transition: 0.25s ease;
}

.consult-field:focus-within {
    border-color: #004f4f;
    box-shadow: 0 0 0 3px rgba(0, 102, 102, 0.12);
}

.consult-field__icon {
    width: 24px;
    height: 24px;
    color: #006666;
    flex-shrink: 0;
}

.consult-field__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consult-field input,
.consult-field select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: inherit;
}

.consult-field input::placeholder {
    color: #5e5e5e;
    opacity: 1;
}

.consult-field select {
    appearance: none;
    cursor: pointer;
}

.consult-field--select {
    position: relative;
}

.consult-field--select::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 2px solid #006666;
    border-bottom: 2px solid #006666;
    transform: rotate(45deg) translateY(-2px);
    flex-shrink: 0;
    pointer-events: none;
}

.consult-submit {
    min-height: 54px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #006666;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
}

.consult-submit__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.consult-submit__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consult-submit:hover {
    background: #004f4f;
    border-color: #004f4f;
    transform: translateY(-2px);
}

/* ---------- news ---------- */
.news-section {
    padding: 96px 0;
    background: #f3fcfc;
    overflow: hidden;
}

.news-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.news-title {
    margin: 0;
}

.news-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.news-tab {
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid #006666;
    border-radius: 999px;
    background: transparent;
    color: #006666;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.25s ease;
}

.news-tab.is-active,
.news-tab:hover {
    background: #006666;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.news-featured {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-featured__image {
    display: block;
    aspect-ratio: 628 / 445;
    border-radius: 8px;
    overflow: hidden;
    background: #ddd;
}

.news-featured__image img,
.news-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-featured__image:hover img,
.news-card__image:hover img {
    transform: scale(1.04);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.news-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.news-meta__icon {
    width: 16px;
    height: 16px;
    color: #006666;
    flex-shrink: 0;
}

.news-meta__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-meta__divider {
    width: 1px;
    height: 19px;
    background: #000;
    flex-shrink: 0;
}

.news-featured__title,
.news-card__title {
    margin: 0;
}

.news-featured__title a,
.news-card__title a {
    color: #353535;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-featured__title a:hover,
.news-card__title a:hover {
    color: #006666;
}

.news-featured__title {
    margin-top: -8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.news-featured__desc {
    margin: -16px 0 0;
    color: #353535;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-card {
    display: grid;
    grid-template-columns: 204px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.news-card__image {
    display: block;
    width: 204px;
    height: 144px;
    border-radius: 8px;
    overflow: hidden;
    background: #ddd;
}

.news-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.news-card__title {
    color: #353535;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.news-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.news-more__btn {
    min-height: 54px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #006666;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.25s ease;
}

.news-more__btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-90deg);
}

.news-more__btn:hover {
    background: #006666;
    transform: translateY(-2px);
}

/* =========================================================
    SECTION: PRESS
========================================================= */

/* ---------- PRESS: BASE ---------- */
.press-section {
    padding: 4.8rem 0 96px 0;
    background: #fff;
    overflow: hidden;
}

.press-head {
    max-width: 836px;
    margin: 0 auto 32px;
    text-align: center;
}

.press-title {
    margin: 0;
    color: #006666;
}

.press-desc {
    margin: 24px 0 0;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.press-slider-wrap {
    position: relative;
}

.press-card {
    width: 100%;
}

.press-card__image {
    position: relative;
    display: block;
    height: 201px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f1f1;
    box-shadow: 4px 8px 16px rgba(0, 67, 101, 0.1);
}

.press-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.press-card__image:hover img {
    transform: scale(1.04);
}

.press-card__body {
    margin-top: 25px;
}

.press-card__source {
    margin: 0 0 8px;
    color: #006666;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.57;
    text-transform: uppercase;
}

.press-card__title {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
}

.press-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.press-card__title a:hover {
    color: #006666;
}

.press-nav {
    position: absolute;
    top: 101px;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #006666;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.press-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.press-nav--prev {
    left: -72px;
}

.press-nav--next {
    right: -72px;
}

.press-nav:hover {
    background: #004f4f;
    transform: translateY(-2px);
}

.press-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.press-slider-wrap .swiper-button-next,
.press-slider-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #E4E4E4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    transition: all .3s ease;
}

.press-slider-wrap .swiper-button-next:hover,
.press-slider-wrap .swiper-button-prev:hover {
    background-color: #066;
}

.press-slider-wrap .swiper-button-next:hover img,
.press-slider-wrap .swiper-button-prev:hover img {
    filter: brightness(0) invert(1);
}

.press-slider-wrap .swiper-button-next::after,
.press-slider-wrap .swiper-button-prev::after {
    display: none;
}

.press-slider-wrap .swiper-button-prev,
.press-slider-wrap .swiper-button-next {
    top: 50%;
    margin: 0;
}

.press-slider-wrap .swiper-button-prev {
    left: -2.4rem;
    transform: translate(-100%, -50%);
}

.press-slider-wrap .swiper-button-next {
    right: -2.4rem;
    transform: translate(100%, -50%);
}


/* ==================== RESPONSIVE ==================== */

@media (max-width: 1727px) {
    .service-card {
        padding: 1.6rem;
    }

    .service-card p {
        font-size: 1.4rem;
        margin: 0;
    }

    .service-card h3 {
        max-width: 15.4rem;
        font-size: 2.4rem;
    }

    .service-card h3 {
        min-height: 8.5rem;
    }

    .service-card {
        min-height: 44.5rem;
    }

    .service-img {
        height: 20rem;
    }

    .consult-form {
        max-width: 60rem;
    }

    .news-card__title {
        font-size: 1.8rem;
    }

    .press-nav--prev {
        left: 0.8rem;
    }

    .press-nav--next {
        right: 0.8rem;
    }

    .press-card__title {
        font-size: 1.6rem;
    }


}

@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }

    .container {
        padding: 0 2.4rem;
    }

    .appointment-content {
        gap: 4.8rem;
    }

    .brand-story {
        padding: 6.8rem 0;
    }

    .brand-story-wrap {
        align-items: flex-start;
    }

    .brand-story-inner {
        margin-left: 0;
    }

    .brand-story-title br {
        display: none;
    }

    .brand-story-desc {
        margin-bottom: 2.4rem;
    }

    .brand-story-desc p:not(:last-child) {
        margin-bottom: 1.4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 45rem));
        gap: 2.4rem;
        justify-content: center;
    }

    .service-card {
        width: 100%;
        max-width: 45rem;
    }

    .doctor-desc {
        gap: 2.4rem;
    }

    .doctor-card .doctor-info {
        height: 22rem;
        backdrop-filter: blur(1.6rem) saturate(160%);
        -webkit-backdrop-filter: blur(1.6rem) saturate(160%);
    }

    .doctor-card .doctor-info p {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .certificate-section {
        padding: 6.8rem 0;
    }

    .certificate-head {
        margin-bottom: 2.4rem;
    }

    .result-section {
        padding: 6.8rem 0;
    }

    .result-head {
        gap: 3.2rem;
        margin-bottom: 2.4rem;
    }

    .result-item {
        align-items: flex-start;
    }

    .consult-section {
        padding: 0 0 6.8rem 0;
    }

    .consult-decor-right {
        width: 30%;
    }

    .news-section {
        padding: 6.8rem 0;
    }

    .news-grid,
    .news-list {
        gap: 1.6rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .news-featured__image {
        aspect-ratio: 16 / 10;
    }

    .press-section {
        padding: 0 0 6.8rem 0;
    }

    .appointment-info .sec-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    /* .banner-item {
        aspect-ratio: 768 / 520;
    } */

    .appointment-home {
        margin-top: 6.8rem;
    }

    .appointment-content {
        grid-template-columns: 1fr;
        padding: 5.6rem 3.2rem;
    }

    .appointment-bg {
        width: 100%;
        opacity: .25;
    }

    .trust-wrap {
        grid-template-columns: 1fr;
    }

    .doctor-desc {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .consult-bg {
        width: 100%;
        opacity: .25;
    }

    .consult-content {
        max-width: 100%;
        padding: 7.2rem 3.2rem;
    }
}

@media (max-width:768px) {
    .brand-story-wrap {
        flex-direction: column-reverse;
    }

    .brand-story-slider,
    .brand-story-content {
        width: 100%;
    }

    .brand-story-slider {
        padding-right: 0;
        margin-top: 2.4rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }

    .container {
        padding: 0 1.6rem;
    }

    .sec-title {
        font-size: 2.8rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .banner-pagination {
        bottom: 1.6rem !important;
    }

    .appointment-home {
        margin-top: 4.8rem;
    }

    .appointment-content {
        padding: 4rem 2rem;
    }

    .appointment-info .sec-title {
        font-size: 3rem;
    }

    .appointment-phone {
        gap: 1.2rem;
    }

    .appointment-phone .icon {
        width: 4.8rem;
        height: 4.8rem;
    }

    .appointment-phone a {
        font-size: 2.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .stat-item:nth-child(4) {
        border-bottom: 0;
    }

    .trust-gallery {
        gap: 1.6rem;
    }

    .trust-img-large {
        height: 42.1rem;
    }

    .exp-box strong {
        font-size: 3.6rem;
    }

    .exp-box span {
        font-size: 1.6rem;
    }

    .trust-img.trust-exp {
        height: 14.6rem;
    }

    .trust-img {
        height: 26.1rem;
    }

    .trust-img:nth-child(1) {
        height: 42.1rem;
    }

    .brand-story {
        padding: 4.8rem 0;
    }

    .brand-story-title {
        margin: 0 0 1.8rem;
    }

    .brand-story-desc p:not(:last-child) {
        margin-bottom: 1rem;
    }

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

    .service-card {
        max-width: 100%;
    }

    .service-card h3 {
        font-size: 2.4rem;
        min-height: 8rem;
    }

    .service-img {
        height: 22rem;
    }

    .doctor-card {
        height: 34rem;
    }

    .doctor-info {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 1.2rem;
    }

    .certificate-section {
        padding: 4.8rem 0;
    }

    .certificate-head {
        flex-direction: column;
        align-items: flex-start;
        gap: .8rem;
    }

    .certificate-head .sec-com-tt {
        max-width: 30rem;
    }

    .certificate-card::before,
    .certificate-card .icon-zoom {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .certificate-quote {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 20rem;
        padding: 2.4rem;
    }

    .result-section {
        padding: 4.8rem 0;
    }

    .result-head {
        flex-direction: column;
        gap: 1.6rem;
        margin-bottom: 2.4rem;
    }

    .result-title {
        margin: 0 0 1.8rem;
    }

    .result-social-proof {
        min-height: auto;
        padding: 0.8rem 1.6rem;
        gap: .8rem;
    }

    .result-avatars img,
    .result-avatars span {
        width: 3rem;
        height: 3rem;
        border: 0.1rem solid #fff;
    }

    .result-rating {
        margin-top: 0.8rem;
    }

    .stars {
        font-size: 1.4rem;
    }

    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
    }

    .result-before-after,
    .result-content {
        width: 100%;
    }

    .quote-mark {
        width: 4rem;
        height: 3rem;
        margin-bottom: 0.6rem;
    }

    .result-text {
        font-size: 1.6rem;
    }

    .consult-content,
    .consult-form {
        max-width: 100%;
    }

    .consult-title {
        margin-bottom: 2.8rem;
    }

    .consult-title br {
        display: none;
    }

    .consult-form__grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-bottom: 2.4rem;
    }

    .consult-field {
        padding: 0 2rem;
    }

    .consult-submit {
        min-height: 5rem;
        font-size: 1.7rem;
    }

    .consult-inner {
        padding: 0 0 6.8rem 0;
    }

    .consult-section {
        padding: 0 0 4.8rem 0;
    }

    .consult-decor-right {
        width: 46%;
        right: 0;
    }

    .news-section {
        padding: 4.8rem 0;
    }

    .news-tabs {
        gap: 1.2rem;
    }

    .news-tab {
        min-height: 4.4rem;
        padding: 1rem 1.8rem;
        font-size: 1.4rem;
    }

    .news-card {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .news-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .news-meta {
        gap: 1rem;
        font-size: 1.3rem;
        flex-wrap: wrap;
    }

    .news-meta__divider {
        display: none;
    }

    .news-card__title,
    .news-featured__title {
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .news-featured__desc {
        font-size: 1.5rem;
    }

    .news-more__btn {
        min-height: 4.8rem;
        font-size: 1.6rem;
    }

    .press-head {
        margin-bottom: 2.8rem;
    }

    .press-desc {
        margin: 1.8rem 0 0;
    }

    .press-card__image {
        height: auto;
        aspect-ratio: 302 / 201;
    }

    .press-card__body {
        margin-top: 1.8rem;
    }

    .press-card__title {
        font-size: 1.7rem;
    }

    .press-nav {
        display: none;
    }

    .press-swiper {
        overflow: hidden;
    }
}