/*.logo img {*/
/*    width: 52%;*/
/*}*/

/* ─── SMOOTH SCROLL ──────────────────────────────────────────────────────────*/
html {
    scroll-behavior: smooth;
}

/* ─── BLOG MAGAZINE LAYOUT ───────────────────────────────────────────────────*/

/* Shared cat label & read-more link */
.blog-mag__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0e7a75;
    margin-bottom: 14px;
}

.blog-mag__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0e7a75;
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-top: 20px;
    transition: gap 0.2s, color 0.2s;
}
.blog-mag__read-more:hover { gap: 14px; color: #0a5a55; }
.blog-mag__read-more:focus-visible {
    gap: 14px;
    outline: 3px solid #0e7a75;
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── FEATURED post ── */
.blog-mag__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    margin-bottom: 72px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}

.blog-mag__featured-img {
    display: block;
    overflow: hidden;
    text-decoration: none;
}
.blog-mag__featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.blog-mag__featured:hover .blog-mag__featured-img img {
    transform: scale(1.04);
}

.blog-mag__featured-body {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 60px 64px;
}
.blog-mag__featured-inner { max-width: 440px; }

.blog-mag__featured-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 16px;
}
.blog-mag__featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-mag__featured-title a:hover { color: #0e7a75; }
.blog-mag__featured-title a:focus-visible {
    color: #0e7a75;
    outline: 3px solid #0e7a75;
    outline-offset: 3px;
    border-radius: 2px;
}

.blog-mag__featured-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ── GRID cards ── */
.blog-mag__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-mag__card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-mag__card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

.blog-mag__card-img {
    display: block;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
}
.blog-mag__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-mag__card:hover .blog-mag__card-img img {
    transform: scale(1.05);
}

.blog-mag__card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-mag__card-title {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    flex: 1;
}
.blog-mag__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-mag__card-title a:hover { color: #0e7a75; }
.blog-mag__card-title a:focus-visible {
    color: #0e7a75;
    outline: 3px solid #0e7a75;
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── Mobile ── */
@media (max-width: 991px) {
    .blog-mag__featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .blog-mag__featured-img { height: 300px; }
    .blog-mag__featured-body { padding: 36px 28px; }
    .blog-mag__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 600px) {
    .blog-mag__grid { grid-template-columns: 1fr; }
    .blog-mag__card-img { height: 200px; }
}

/* ─── PROGRAM CATEGORY PAGE ──────────────────────────────────────────────────*/
.pc-intro {
    background: #f4f4f6;
}
.pc-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.pc-intro__lead {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: #0e7a75;
    margin-bottom: 20px;
}
.pc-intro__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}
.pc-programs { padding-top: 60px; }

@media (max-width: 767px) {
    .pc-intro__inner { padding: 0 20px; }
}

/* ─── SINGLE PROGRAM ─────────────────────────────────────────────────────────*/

/* Hero */
.sp-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(145deg, #f0b84e 0%, #e6a740 40%, #c48828 100%);
}
.sp-hero__image {
    display: none;
}

.sp-hero__overlay {
    position: relative;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.10) 60%, transparent 100%);
    padding: 80px 0 60px;
}
.sp-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.sp-hero__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: #0e7a75;
    padding: 5px 14px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 18px;
    transition: background 0.2s;
}
.sp-hero__cat:hover { background: #0a5a55; }
.sp-hero__cat:focus-visible { outline: 3px solid #fff; outline-offset: 3px; border-radius: 50px; }

.sp-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0 0 32px;
}
.sp-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #0e7a75;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.sp-hero__cta:hover { background: #0e7a75; color: #fff; transform: translateY(-2px); }
.sp-hero__cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; border-radius: 50px; }


.sp-hero__date {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 12px 0 0;
    letter-spacing: 0.04em;
}

/* Post prev/next nav */
.sp-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.sp-post-nav__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0e7a75;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}
.sp-post-nav__item:hover { color: #0a5a55; }
.sp-post-nav__item--prev:hover { gap: 12px; }
.sp-post-nav__item--next:hover { gap: 12px; }
.sp-post-nav__item:focus-visible { outline: 3px solid #0e7a75; outline-offset: 3px; border-radius: 2px; }

/* Content */
.sp-content__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sp-content__body { font-size: 1.05rem; line-height: 1.8; color: #333; }
.sp-content__body h2 { font-size: 1.5rem; line-height: 1.3; font-weight: 700; margin-top: 2rem; margin-bottom: 0.6rem; }
.sp-content__body h3 { font-size: 1.2rem; line-height: 1.4; font-weight: 600; margin-top: 1.6rem; margin-bottom: 0.5rem; }
.sp-content__body h4 { font-size: 1.05rem; line-height: 1.4; font-weight: 600; margin-top: 1.4rem; margin-bottom: 0.4rem; }
.sp-content__cta-wrap { margin-top: 40px; }

/* Related heading */
.sp-related__heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 2px solid #0e7a75;
    display: inline-block;
}

/* Mobile */
@media (max-width: 767px) {
    .sp-hero { min-height: 0; }
    .sp-hero__inner { padding: 0 20px; }
    .sp-content__inner { padding: 0 20px; }
}

/* Mobile — single program: show thumbnail instead of gradient */
@media (max-width: 767px) {
    .single-programs .sp-hero {
        background: none;
    }
    .single-programs .sp-hero__image {
        display: block;
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center top;
    }
    .single-programs .sp-hero__overlay {
        position: relative;
        z-index: 1;
    }
}

/* ─── PROGRAM CTA BUTTON ─────────────────────────────────────────────────────*/
.program-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 16px 36px;
    background: #0e7a75;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(14, 122, 117, 0.30);
}

.program-cta-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.program-cta-btn:hover {
    background: #0e4a47;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 74, 71, 0.35);
    color: #ffffff !important;
}

.program-cta-btn:hover i {
    transform: translateY(3px);
}

/* ─── PROGRAM INTEREST FORM ──────────────────────────────────────────────────*/
.program-interest-form {
    background: #f4f4f6;
}

.program-interest-form__card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(14, 74, 71, 0.10);
    overflow: hidden;
}

.program-interest-form__header {
    background: linear-gradient(135deg, #0e4a47 0%, #0e7a75 100%);
    padding: 40px 50px 36px;
}

/* 2-column layout (paketa page) */
.program-interest-form__info {
    background: linear-gradient(160deg, #0e4a47 0%, #0e7a75 100%);
    padding: 50px 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px 0 0 16px;
}

.program-interest-form__info .program-interest-form__label {
    color: rgba(255,255,255,0.65);
}

.program-interest-form__info .program-interest-form__title {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 16px;
}

.program-interest-form__desc {
    color: rgba(255,255,255,0.80);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.program-interest-form__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.program-interest-form__benefits li {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-interest-form__benefits li i {
    color: #f5c842;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .program-interest-form__info {
        border-radius: 16px 16px 0 0;
        padding: 36px 28px;
    }
}

.program-interest-form__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
}

.program-interest-form__title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.program-interest-form__title span {
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}

.program-interest-form__body {
    padding: 50px;
}

@media (max-width: 767px) {
    .program-interest-form__header { padding: 30px 24px 26px; }
    .program-interest-form__body   { padding: 30px 24px; }
    .program-interest-form__title  { font-size: 20px; }
}

/* ─── BLOG CARD SINGLE-IMAGE HOVER ───────────────────────────────────────────
   The original theme required 2 duplicate <img> tags for its slide effect.
   Since we removed the duplicate, we override with a simple scale transition.
   ──────────────────────────────────────────────────────────────────────────── */
.blog__item .blog__image img:first-child,
.blog-two__item .blog__image img:first-child {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    z-index: auto !important;
}
.blog__item .blog__image img,
.blog-two__item .blog__image img {
    transition: transform 0.4s ease, filter 0.4s ease;
}
.blog__item:hover .blog__image img:first-child,
.blog-two__item:hover .blog__image img:first-child {
    transform: scale(1.05) !important;
    filter: none !important;
    opacity: 1 !important;
}
.blog__item:hover .blog__image img:last-child,
.blog-two__item:hover .blog__image img:last-child {
    transform: scale(1.05) !important;
    opacity: 1 !important;
    filter: none !important;
}
.breadcrumb-area {
    background-color: #0e7a75;
}
.menu-after{
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}
.footer-two__item ul li a {
    color: #000000;
}
.footer-two__item-adress .title,.footer-two__item .title {
    color: #000;}
.footer-two__bottom .text a {
    color: #000000;
}
.adress-text a{
    color: #000;
}
.btn-view {
    display: inline-block;
    color: #000000;
}
.footer-two__top .title {
    font-size: 100px;
    line-height: 120px;
    color: var(--white);
}
.footer-two__bottom .text {
    color: #000000;
}
@media (max-width: 991px) {
    /*.gm-menu-btn__inner{*/
    /*    display: none;*/
    /*}*/
    .header-area , .header-eight-area {
        display:none
    }
}

.gm-navigation-drawer .gm-anchor, .gm-navigation-drawer .gm-mega-menu__item__title {
    border-bottom-style: solid;
}

.gm-menu-item__txt{
    color: #0e7a75!important;
    font-weight: 700;
}

.gm-mobile-menu-container span{
    font-weight: 500!important;}


.gm-navigation-drawer .gm-anchor, .gm-navigation-drawer .gm-mega-menu__item__title {
    border-bottom: 1px solid rgb(90 90 90 / 73%)!important;
}

.m-50{
    margin:50px;
}

.mb-100{
    margin-bottom: 100px;
}

.header__main .main-menu ul li a {
    text-transform: none!important;}

.contact-two__form {
    margin-top: 25px;
}


.blog-details__content ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
/*.blog__item .blog__image img:first-child, .blog-two__item .blog__image img:first-child {*/
/*    object-fit: contain;*/
/*    height: 380px;*/
/*}*/
.blog-details__content li {
    list-style: disc;
}

.active{
    font-weight: 900!important;
}

.white-bg{
    background-color: #ffffff;
}

.academy-list {
    padding-left: 1.1rem;
    margin: 0;
}
.academy-list li {
    margin-bottom: .5rem;
    list-style: circle!important;
}

.academy-card {
    display: block;
    height: 100%;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.academy-card__media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.academy-card__body {
    padding: 16px 16px 18px;
}
.academy-card__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.academy-card__text {
    font-size: .95rem;
    line-height: 1.4;
    min-height: 70px;
}

.academy-card:focus,
.academy-card:focus-visible {
    outline: 3px solid rgba(0,0,0,.25);
    outline-offset: 3px;
}

.academy-cta__box {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 18px 18px;
    background: #fff;
}
.academy-contact {
    margin: 0;
    padding-left: 1.1rem;
}
.academy-contact li { margin-bottom: .4rem; }

.font{
    font-size: 28px!important;
}
.pricing__item ul{
    min-height: 500px;
}
.pricing__item ul li {
    color: var(--heading-color);
    font-size: 15px;
}
.pricing__item ul li i{
    background-color: white;
    width: 10px;
}

.pricing__item.popular ul li i{
    background-color: #e9ae47;
}

.min-h{
    min-height:330px !important;
}
.min-p{
    min-height: 150px!important;
}
.pricing__item .price h6 {
    font-size: 18px!important;
}
.right-txt{
    padding-top: 27px!important;
}
@media (max-width: 767px) {
    .pl{
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ─── CONTENT AREA HEADINGS (single-services, single-post, blog-details) ─────
   Global theme h2/h3 sizes are designed for hero/section headings (~32–48px).
   Inside article body copy they are disproportionate to paragraph text (~17px).
   These rules scope smaller sizes to the .blog-details__content wrapper only.
   ──────────────────────────────────────────────────────────────────────────── */
.blog-details__content h2 {
    font-size: 1.55rem;   /* ~25px — clear hierarchy above body, not oversized */
    line-height: 1.35;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}
.blog-details__content h3 {
}
.blog-details__content h4 {
    font-size: 1.05rem;   /* ~17px — just above body text */
    line-height: 1.45;
    font-weight: 600;
    margin-top: 1.3rem;
    margin-bottom: 0.4rem;
}

/* Blog card titles — visually small regardless of heading level (h2/h3/h4) */
.blog__item h2,
.blog__item h3,
.blog__item h4 {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    padding-top: 15px;
    margin-right: auto;
}

.blog__item h2 a,
.blog__item h3 a,
.blog__item h4 a {
    color: #000000 !important;
}

.blog__item h2 a:hover,
.blog__item h3 a:hover,
.blog__item h4 a:hover {
    color: #0e7a75 !important;
}

.p-academy{
    margin: 0!important;
    padding: 0!important;
    font-size: 20px!important;
    line-height: 30px!important;
    color: var(--paragraph);
}

/* ============================================
   ACCESSIBILITY BASELINE — DO NOT REMOVE
   ============================================ */

/* ─── PAKETA PAGE — COMPLETE DESIGN PASS ─────────────────────────────────────
   Scoped to .page-template-paketa (WordPress body class) where possible.
   Pricing card rules use .pricing__item directly (only on this page).
   No HTML, layout, or color palette changes.
   ──────────────────────────────────────────────────────────────────────────── */

/* 1 ── INTRO SECTION -------------------------------------------------------- */
.page-template-paketa .blog-details__content {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* Accent line — only on the intro section title, not the bottom section */
.page-template-paketa .blog-details__content .blog-details__title::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background-color: #e6a740;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.page-template-paketa .blog-details__title {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0e4a47;
}

/* Intro paragraph only — scoped inside .blog-details__content */
.page-template-paketa .blog-details__content .blog-details__text-2 {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b535d;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* 2 ── PRICING CARDS -------------------------------------------------------- */
.pricing__wrp {
    max-width: 100% !important; /* Override 1300px — respect Bootstrap container */
}

.pricing__item {
    border-radius: 14px !important;
    border: 1px solid #dce8e8 !important;
    box-shadow: 0 4px 20px rgba(14, 122, 117, 0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative;
    /* overflow: hidden removed — was breaking layout context on smaller screens */
}

.pricing-area {
    overflow-x: hidden;
}

/* Hover lift */
.pricing__item:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(14, 122, 117, 0.13) !important;
}

/* Check icons — teal instead of gray */
.pricing__item ul li i {
    /* background-color: rgba(14, 122, 117, 0.12) !important; */
    color: #0e7a75 !important;
}

/* Popular (middle) card — gradient amber, premium shadow */
.pricing__item.popular {
    background: linear-gradient(150deg, #f2bc58 0%, #e6a740 45%, #c98828 100%) !important;
    border: none !important;
    box-shadow: 0 8px 36px rgba(230, 167, 64, 0.38) !important;
}

.pricing__item.popular::before {
    background-color: rgba(255, 255, 255, 0.28);
}

.pricing__item.popular:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 56px rgba(230, 167, 64, 0.48) !important;
}

.pricing__item.popular ul li i {
    /* background-color: rgba(255, 255, 255, 0.22) !important; */
    color: #fff !important;
}

/* 3 ── BOTTOM SECTION ------------------------------------------------------- */
.page-template-paketa .container.pb-100 {
    border-top: 1px solid #dce8e8;
    padding-top: 64px;
    margin-top: 16px;
}

.page-template-paketa .blog-details__text-2 ul li {
    padding: 9px 0;
    border-bottom: 1px solid #eef3f3;
    font-size: 0.95rem;
    color: #4b535d;
}

.page-template-paketa .blog-details__text-2 ul li:last-child {
    border-bottom: none;
}

/* Vertical alignment of the two bottom columns */
.page-template-paketa .container.pb-100 .row {
    align-items: center;
}

/* Right column CTA box */
.page-template-paketa .choose-right {
    background: linear-gradient(140deg, #f5fafa 0%, #eaf3f3 100%);
    border-radius: 14px;
    padding: 44px 40px;
    border-left: 4px solid #0e7a75;
}

.page-template-paketa .choose-right h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0e4a47;
    margin-bottom: 18px;
    line-height: 1.35;
}

/* ─── GLOBAL CONTAINER MAX-WIDTH ─────────────────────────────────────────────*/
@media (min-width: 1400px) {
    .container {
        max-width: 1440px;
    }
}

/* .choose__wrp has margin-top: -160px in style.css (intentional theme overlap).
   With the wider container this becomes too aggressive — reset to positive. */
@media (min-width: 1400px) {
    .choose__wrp {
        margin-top: -70px !important;
    }
}

/* ─── FOOTER MODERNIZATION ────────────────────────────────────────────────────
   Replaces flat amber (#e9ae47) with a diagonal gradient for depth,
   and adds a thin teal accent strip at the top via ::before.
   No layout, spacing, or content changes.
   ──────────────────────────────────────────────────────────────────────────── */
.footer-two-area {
    background: linear-gradient(
        145deg,
        #f0b84e 0%,
        #e6a740 40%,
        #c48828 100%
    ) !important;
}

/* ─── FOOTER LINK TYPOGRAPHY ─────────────────────────────────────────────────*/
.footer-two__item ul li a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.footer-two__item ul li a:hover {
    padding-left: 0;
}

.footer-two__item ul li:not(:last-child) {
    margin-bottom: 0;
}

/* ─── HOMEPAGE ROUNDNESS ─────────────────────────────────────────────────────*/
.choose__item          { border-radius: 16px !important; overflow: hidden; }
.work__item            { border-radius: 12px !important; border-top: 1px solid var(--border) !important; margin-bottom: 10px; }
.work__item:last-child { margin-bottom: 0; }
.work__item:hover      { border-top: 1px solid var(--sub-bg) !important; }
.accordion-item        { border-radius: 12px !important; overflow: hidden; margin-bottom: 8px; }
.accordion-item:first-child,
.accordion-item:last-child { border-radius: 12px !important; }
.contact-four__form    { border-radius: 20px 0 0 20px !important; overflow: hidden; }
.contact-four__image   { border-radius: 0 20px 20px 0 !important; overflow: hidden; }
.contact-four__wrp     { border-radius: 20px !important; overflow: hidden; box-shadow: 0 8px 48px rgba(0,0,0,0.09); }
.faq__item             { border-radius: 0 20px 20px 0 !important; overflow: hidden; }
.faq-area .row         { border-radius: 20px !important; overflow: hidden; }

@media (max-width: 991px) {
    .contact-four__form  { border-radius: 20px 20px 0 0 !important; }
    .contact-four__image { border-radius: 0 0 20px 20px !important; }
}

/* ─── FOOTER MOBILE REDESIGN ──────────────────────────────────────────────────*/
@media (max-width: 767px) {

    .footer-two-area {
        padding-top: 48px !important;
        padding-bottom: 0 !important;
    }

    /* CTA top — bigger, centered */
    .footer-two__top {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(0,0,0,0.12);
    }
    .footer-two__top .title {
        font-size: clamp(28px, 8vw, 40px) !important;
        line-height: 1.15 !important;
    }

    /* Grid — single column, no gutter */
    .footer-two__item-wrp {
        padding: 0;
    }
    .footer-two__item-wrp .row {
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
    }
    .footer-two__item-wrp [class*="col-"] {
        width: 100% !important;
        padding: 0 !important;
    }

    /* Each footer block */
    .footer-two__item,
    .footer-two__item-adress {
        padding: 24px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: center;
        max-width: 100%;
    }

    /* Logo block */
    .footer-two__item .logo {
        display: inline-block;
    }
    .footer-two__item .logo img {
        max-height: 150px;
        width: auto;
    }

    /* Section titles */
    .footer-two__item-adress .title,
    .footer-two__item .title {
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(0,0,0,0.5) !important;
        margin-bottom: 12px !important;
    }

    /* Contact links */
    .footer-two__item-adress ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .footer-two__item-adress .adress-text {
        font-size: 16px !important;
        margin: 0 !important;
        text-align: center;
    }
    .footer-two__item-adress .adress-text a {
        color: #000 !important;
        font-weight: 500;
    }

    /* Nav link lists */
    .footer-two__item ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-two__item ul li a {
        font-size: 15px !important;
        font-weight: 500;
        color: #111 !important;
    }

    /* Bottom bar */
    .footer-two__bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 28px 20px !important;
        text-align: center;
    }

    /* Social icons — bigger tap targets */
    .footer-two__bottom .socials {
        display: flex;
        gap: 16px;
        justify-content: center;
    }
    .footer-two__bottom .socials a {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(0,0,0,0.1) !important;
        color: #000 !important;
        transition: background 0.2s !important;
    }
    .footer-two__bottom .socials a:hover {
        background: rgba(0,0,0,0.2) !important;
    }

    .footer-two__bottom .text {
        font-size: 13px !important;
        color: rgba(0,0,0,0.6) !important;
    }

    /* Hide decorative rectangles on mobile */
    .footer-two__rectangle-left,
    .footer-two__rectangle-right {
        display: none !important;
    }
}

/* ─── BREADCRUMB / INNER PAGE BANNER ─────────────────────────────────────────
   Replaces the flat dark overlay with a diagonal gradient (dark teal → teal)
   and adds a short amber accent line above the page title.
   Only ::after and ::before pseudo-elements are touched — no HTML/layout change.
   ──────────────────────────────────────────────────────────────────────────── */
.breadcrumb-area::after {
    background: linear-gradient(
        135deg,
        rgba(4, 28, 28, 0.96) 0%,
        rgba(14, 100, 95, 0.82) 100%
    ) !important;
}

.breadcrumb__item .title::before {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background-color: #e9ae47;
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ─── FOCUS INDICATORS ────────────────────────────────────────────────────────
   style.css resets outline to none on every element ( * { outline: none } ).
   The rules below restore visible focus indicators for keyboard users.
   :focus-visible targets keyboard focus only — mouse clicks stay unchanged.
   High specificity (html body selector prefix) ensures these win the cascade.
   ──────────────────────────────────────────────────────────────────────────── */

html body *:focus-visible {
    outline: 3px solid #0e7a75 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 5px rgba(14, 122, 117, 0.20) !important;
    border-radius: 2px !important;
}

/* Buttons and .btn-* variants — slightly tighter offset looks better on pill shapes */
html body a:focus-visible,
html body button:focus-visible,
html body [role="button"]:focus-visible,
html body .btn-one:focus-visible,
html body .btn-two:focus-visible,
html body .btn-view:focus-visible,
html body .arrow-btn:focus-visible {
    outline: 3px solid #0e7a75 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 6px rgba(14, 122, 117, 0.20) !important;
    border-radius: 4px !important;
}

/* Form inputs — use inset style so the border doesn't shift layout */
html body input:focus-visible,
html body select:focus-visible,
html body textarea:focus-visible {
    outline: 3px solid #0e7a75 !important;
    outline-offset: 0 !important;
    box-shadow: inset 0 0 0 2px rgba(14, 122, 117, 0.30) !important;
    border-color: #0e7a75 !important;
}

/* Accordion buttons already have a background — keep outline outside */
html body .accordion-button:focus-visible {
    outline: 3px solid #0e7a75 !important;
    outline-offset: -3px !important;
    box-shadow: none !important;
}

/* Academy cards — override the weak existing rule */
html body .academy-card:focus-visible {
    outline: 3px solid #0e7a75 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 6px rgba(14, 122, 117, 0.20) !important;
}

/* Skip link — visually hidden until focused */
.skip-link {
    position: absolute;
    top: -120px;
    left: 16px;
    z-index: 99999;
    background: #0e7a75;
    color: #ffffff;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* ─── DESKTOP HEADER ─────────────────────────────────────────────────────────*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.53) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 !important;
    box-shadow: none !important;
}
.site-header__inner {
    display: flex;
    align-items: center;
    height: 76px;
    gap: 40px;
}
.site-header__logo {
    flex-shrink: 0;
    line-height: 0;
}
.site-header__logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* ── Nav ── */
.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.site-nav__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}
.site-nav__item {
    position: relative;
}

/* Top-level link */
.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 8px;
    position: relative;
    transition: color 0.2s, background 0.2s;
}

/* Animated underline */
.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #4ecdc4;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.site-nav__link:hover,
.site-nav__item:focus-within .site-nav__link {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.site-nav__link:hover::after,
.site-nav__item:focus-within .site-nav__link::after {
    transform: scaleX(1);
}
.site-nav__link:focus-visible {
    outline: 2px solid rgba(255,255,255,0.7);
    outline-offset: 2px;
}

/* Active / current page */
.site-nav__item.current-menu-item > .site-nav__link,
.site-nav__item.current-menu-ancestor > .site-nav__link,
.site-nav__item.current-menu-parent > .site-nav__link {
    color: #fff;
}
.site-nav__item.current-menu-item > .site-nav__link::after,
.site-nav__item.current-menu-ancestor > .site-nav__link::after,
.site-nav__item.current-menu-parent > .site-nav__link::after {
    transform: scaleX(1);
}

/* Caret icon */
.site-nav__caret {
    font-size: 10px;
    margin-top: 1px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), color 0.2s;
}
.site-nav__link:hover .site-nav__caret,
.site-nav__item:focus-within .site-nav__caret,
.site-nav__item.is-open .site-nav__caret {
    transform: rotate(180deg);
    color: #4ecdc4;
}

/* ── Dropdown ── */
.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
    list-style: none;
    margin: 0;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(0,0,0,0.06);
    z-index: 100;
}

/* Arrow tip */
.site-nav__dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-radius: 2px 0 0 0;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.site-nav__dropdown__item {
    display: block;
}
.site-nav__dropdown__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1c1c1c;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 9px;
    transition: background 0.15s, color 0.15s;
}
.site-nav__dropdown__link::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cde9e7;
    flex-shrink: 0;
    transition: background 0.15s;
}
.site-nav__dropdown__link:hover,
.site-nav__dropdown__link:focus-visible {
    background: #eaf6f5;
    color: #0e7a75;
}
.site-nav__dropdown__link:hover::before,
.site-nav__dropdown__link:focus-visible::before {
    background: #0e7a75;
}
.site-nav__dropdown__link:focus-visible {
    outline: 2px solid #0e7a75;
    outline-offset: -2px;
}

/* ── Language switcher ── */
.site-header__lang {
    flex-shrink: 0;
}
.site-header__lang ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}
.site-header__lang ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}
#site-header .site-header__lang a,
#site-header .site-header__lang a:link,
#site-header .site-header__lang a:visited {
    color: #fff !important;
}
.site-header__lang ul li.current-lang a {
    background: #0e7a75;
    color: #fff;
    border-color: #0e7a75;
    box-shadow: 0 2px 8px rgba(14,122,117,0.4);
}
.site-header__lang ul li a:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.site-header__lang ul li a:focus-visible {
    outline: 2px solid rgba(255,255,255,0.7);
    outline-offset: 2px;
}

/* Hide on mobile */
@media (max-width: 991px) {
    .site-header { display: none !important; }
}
@media (min-width: 992px) {
    /* body { padding-top: 76px; } */
}

/* ─── ACCESSIBLE MOBILE MENU ─────────────────────────────────────────────────*/

/* Mobile header bar — hidden on desktop */
.mob-header {
    display: none;
    position: fixed;
    top: 5px;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 64px;
    background: transparent;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.mob-header__logo,
.mob-header .mob-menu-btn {
    pointer-events: auto;
}
.mob-header__logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Hamburger button — child of mob-header, no longer fixed standalone */
.mob-menu-btn {
    display: flex;
    position: static;
    width: 48px;
    height: 48px;
    background: #0e7a75;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.mob-menu-btn:hover,
.mob-menu-btn:focus-visible {
    background: #0a5e5a;
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.mob-menu-btn__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Hamburger stays as hamburger when open — X is inside the panel */

/* Mobile nav overlay */
.mob-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
}
.mob-nav.mob-nav--open {
    visibility: visible;
    pointer-events: auto;
}
.mob-nav__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(360px, 80vw);
    min-height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.18);
}
.mob-nav--open .mob-nav__panel {
    transform: translateX(0);
}

/* Header of panel */
.mob-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #0e7a75;
    flex-shrink: 0;
}
.mob-nav__logo-link img {
    height: 40px;
    width: auto;
    display: block;
}
.mob-nav__close {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.mob-nav__close:hover,
.mob-nav__close:focus-visible {
    background: rgba(255,255,255,0.3);
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Menu items */
.mob-nav__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.mob-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mob-nav__menu > li {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.mob-nav__menu > li > a {
    flex: 1;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    min-height: 56px;
    display: flex;
    align-items: center;
    transition: background 0.15s, color 0.15s;
}
.mob-nav__menu > li > a:hover {
    background: #f0fafa;
    color: #0e7a75;
}
.mob-nav__menu > li > a:focus-visible {
    background: #f0fafa;
    color: #0e7a75;
    outline: 3px solid #0e7a75;
    outline-offset: -3px;
}

/* Sub-menu toggle button */
.mob-submenu-btn {
    width: 56px;
    min-height: 56px;
    background: none;
    border: none;
    border-left: 1px solid #f0f0f0;
    color: #0e7a75;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}
.mob-submenu-btn i {
    transition: transform 0.25s ease;
}
.mob-submenu-btn:hover,
.mob-submenu-btn:focus-visible {
    background: #f0fafa;
    outline: 3px solid #0e7a75;
    outline-offset: -3px;
}
.mob-submenu-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}
/* Highlight parent row when sub-menu is open */
#mob-nav .mob-nav__menu > li:has(.mob-submenu-btn[aria-expanded="true"]) > a {
    color: #0e7a75 !important;
    background: #f0fafa !important;
}
#mob-nav .mob-nav__menu > li:has(.mob-submenu-btn[aria-expanded="true"]) > .mob-submenu-btn {
    background: #e0f5f3 !important;
    border-left-color: #0e7a75 !important;
}

/* Sub-menus — override ALL theme/plugin absolute positioning */
#mob-nav .mob-nav__menu .mob-sub-menu {
    position: static !important;
    float: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: block !important;           /* always block — max-height controls visibility */
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    flex-basis: 100% !important;
    min-width: 0 !important;
    background: #eaf6f5 !important;
    border: none !important;
    border-top: 0px solid #0e7a75 !important;
    border-bottom: 0px solid #c8e8e6 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: auto !important;
}
#mob-nav .mob-nav__menu .mob-sub-menu.is-open {
    border-top-width: 2px !important;
    border-bottom-width: 1px !important;
    padding: 4px 0 !important;
}
#mob-nav .mob-nav__menu .mob-sub-menu li {
    display: block !important;
    float: none !important;
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid rgba(14,122,117,0.12) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}
#mob-nav .mob-nav__menu .mob-sub-menu li:last-child {
    border-bottom: none !important;
}
#mob-nav .mob-nav__menu .mob-sub-menu li a {
    display: block !important;
    padding: 12px 20px 12px 48px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    background: transparent !important;
    text-decoration: none !important;
    min-height: 48px !important;
    line-height: 1.4 !important;
    position: static !important;
    transition: background 0.15s, color 0.15s !important;
}
#mob-nav .mob-nav__menu .mob-sub-menu li a:hover,
#mob-nav .mob-nav__menu .mob-sub-menu li a:focus-visible {
    background: #d4eeec !important;
    color: #0e7a75 !important;
}
#mob-nav .mob-nav__menu .mob-sub-menu li a:focus-visible {
    outline: 3px solid #0e7a75 !important;
    outline-offset: -3px !important;
}

/* Language switcher */
.mob-nav__lang {
    padding: 20px 24px;
    border-top: 2px solid #e0f4f3;
    flex-shrink: 0;
}
.mob-nav__lang ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}
.mob-nav__lang ul li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid #0e7a75;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #0e7a75;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    min-height: 44px;
}
.mob-nav__lang ul li a:hover,
.mob-nav__lang ul li.current-lang a {
    background: #0e7a75;
    color: #fff;
}
.mob-nav__lang ul li a:focus-visible {
    background: #0e7a75;
    color: #fff;
    outline: 3px solid #0a5e5a;
    outline-offset: 2px;
}

/* Backdrop */
.mob-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mob-nav__backdrop.mob-nav__backdrop--visible {
    opacity: 1;
}

/* Hide Polylang language items from main mobile menu list (shown in lang section) */
.mob-nav__menu .lang-item,
.site-nav__menu .lang-item { display: none !important; }

/* Show only on mobile, hide Groovy Menu burger & its close button */
@media (max-width: 991px) {
    .mob-header { display: flex; }
    .gm-menu-btn,
    .gm-hamburger,
    .gm-hamburger-close { display: none !important; }
    /* body { padding-top: 64px !important; } */

    /* Hide breadcrumb nav list on mobile */
    .breadcrumb__item ul { display: none !important; }

    /* h1 size on mobile */
    h1 {
        font-size: 22px !important;
        line-height: 33px !important;
    }

    /* h2 size on mobile */
    h2 {
        font-size: 20px !important;
        line-height: 40px !important;
    }

    /* blog-details section top padding on mobile */
    .blog-details {
        padding-top: 50px !important;
    }

    /* 25px left/right padding on mobile for all sections */
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    /* Reset row gutter so container padding isn't eaten by negative margins — all nesting depths */
    .row {
        --bs-gutter-x: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    [class*="col-"],
    [class^="col"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (min-width: 992px) {
    .mob-header { display: none !important; }
    .mob-nav,
    .mob-nav__backdrop { display: none !important; }
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 30px;
    }
}

/* Respect user motion preferences — WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .wow,
    .paralax__animation,
    .imageUpToDown,
    .imageLeftToRight {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}