    :root {
      --teal: #032b45;
      --teal-dark: #1a6e65;
      --teal-light: #e6f5f3;
      --navy: #1a3a4a;
      --bg: #f0f5f8;
      --text: #1a2e38;
      --text-muted: #5a7a8a;
      --border: #d0e2ea;
      --accent: #4ecdc4;
    } 
/* HERO */
    .blog-hero {
      background: var(--navy);
      padding: 72px 0 54px;
      position: relative;
      overflow: hidden;
    }
    .blog-hero::before {
      content: '';
      position: absolute; top: -90px; right: -70px;
      width: 340px; height: 340px; border-radius: 50%;
      background: var(--teal); opacity: .08;
      pointer-events: none;
    }
    .blog-hero::after {
      content: '';
      position: absolute; bottom: -50px; left: 35%;
      width: 200px; height: 200px; border-radius: 50%;
      background: var(--accent); opacity: .06;
      pointer-events: none;
    }
    .hero-label {
      font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; color: var(--accent);
      text-transform: uppercase;
    }
    .hero-title {
      color: #fff;
      font-size: clamp(24px, 5vw, 40px);
      font-weight: 700; line-height: 1.2;
    }
    .hero-sub { color: #a8c4d0; font-size: 15px; line-height: 1.75; }
    .search-wrap { display: flex; max-width: 420px; }
    .search-wrap input {
      flex: 1; padding: 12px 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.2);
      color: #fff; font-size: 14px;
      border-radius: 6px 0 0 6px; outline: none;
    }
    .search-wrap input::placeholder { color: #7aa8ba; }
    .search-wrap button {
      padding: 12px 20px; background: var(--teal);
      color: #fff; border: none; font-weight: 700;
      font-size: 14px; border-radius: 0 6px 6px 0; cursor: pointer;
      white-space: nowrap;
    }
    .search-wrap button:hover { background: var(--teal-dark); }

    /* FILTERS */ 
    .filter-pill {
      padding: 7px 18px; border-radius: 0;
      font-size: 13px; font-weight: 600; cursor: pointer;
      border: 1.5px solid var(--border);
      background: #fff; color: var(--text-muted);
      transition: all .2s; white-space: nowrap;
		
		    border: 1px solid #032B45 !important;
    color: #032B45!important;
    }
    .filter-pill.active, .filter-pill:hover {
      background: var(--teal); color: #fff !important; border-color: var(--teal);
    }

    /* SECTION HEADER */
    .sec-hd {
/*      border-bottom: 2px solid var(--teal-light);*/
      padding-bottom: 10px; 
		margin-bottom: 22px;
    }
    .sec-hd h2 { font-size: clamp(18px,3vw,22px); color: var(--navy); margin: 0; }
    .sec-hd a { font-size: 13px; color: var(--teal); font-weight: 700; text-decoration: none; }

    /* FEATURED MAIN */
    .feat-main {
      background: #fff; border-radius: 12px;
      overflow: hidden; border: 1px solid var(--border);
      height: 100%; transition: transform .25s;
    }
    .feat-main:hover { transform: translateY(-4px); }
    .feat-img {
      height: 230px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .feat-img i { font-size: 56px; color: rgba(255,255,255,.18); }
    .feat-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--teal); color: #fff;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 4px;
    }
    .feat-body { padding: 22px 24px 26px; }
    .feat-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
    .feat-body h3 { font-size: clamp(16px,2.5vw,20px); font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
    .feat-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* SIDE MINI CARDS */
    .side-mini {
      background: #fff; border-radius: 10px;
      border: 1px solid var(--border);
      padding: 18px 20px; height: 100%;
      transition: transform .2s;
    }
    .side-mini:hover { transform: translateY(-3px); }
    .side-dot { width: 32px; height: 4px; background: var(--teal); border-radius: 2px; margin-bottom: 10px; }
    .side-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
    .side-mini h4 { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.45; margin-bottom: 8px; }
    .side-mini .meta-sm { font-size: 12px; color: var(--text-muted); }

    /* BLOG CARDS */
    .blog-card {
      background: #fff; border-radius: 10px;
      border: 1px solid var(--border); overflow: hidden;
      transition: transform .25s; height: 100%;
      display: flex; flex-direction: column;
    }
    .blog-card:hover { transform: translateY(-4px); }
    .card-img-top-wrap {
      height: 240px;
      display: flex; align-items: center; justify-content: center;
      position: relative; flex-shrink: 0;
		overflow: hidden;
    }
    .card-img-top-wrap i { font-size: 42px; color: rgba(255,255,255,.22); }
    .ci-1 { background: linear-gradient(135deg, #1a3a4a, #2a9d8f); }
    .ci-2 { background: linear-gradient(135deg, #2a4a5a, #3aada0); }
    .ci-3 { background: linear-gradient(135deg, #0d2a3a, #1a7a70); }
    .cat-bd {
      position: absolute; bottom: 10px; left: 10px;
      background: rgba(95,193,176,.75);
		color: #fff;
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; padding: 3px 9px; border-radius: 3px;
    }
    .card-bd { padding: 16px; flex: 1; display: flex; flex-direction: column; }
    .card-bd .card-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 7px; }
    .card-bd h4 { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 7px; }
    .card-bd p { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 12px; }
    .read-link { font-size: 12px; font-weight: 700; color: var(--teal); text-decoration: none; }
    .read-link:hover { color: var(--teal-dark); }

    /* NEWSLETTER */
    .nl-box { background: var(--navy); border-radius: 12px; padding: 36px; }
    .nl-box h3 { color: #fff; font-size: clamp(17px,3vw,22px); margin-bottom: 6px; }
    .nl-box p { color: #a8c4d0; font-size: 14px; margin: 0; }
    .nl-form { display: flex; }
    .nl-form input {
      flex: 1; padding: 12px 14px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.2);
      color: #fff; font-size: 14px;
      border-radius: 6px 0 0 6px; outline: none;
    }
    .nl-form input::placeholder { color: #7aa8ba; }
    .nl-form button {
      padding: 12px 20px; background: var(--teal);
      color: #fff; border: none; font-size: 13px;
      font-weight: 700; cursor: pointer;
      border-radius: 0 6px 6px 0; white-space: nowrap;
    }
    .nl-form button:hover { background: var(--teal-dark); }

    /* PAGINATION */
    .page-btn {
      width: 38px; height: 38px; 
/*		border-radius: 50%;*/
      border: 1.5px solid var(--border);
      background: #fff; font-size: 14px;
      color: var(--text-muted); cursor: pointer; font-weight: 600;
      display: inline-flex; align-items: center; justify-content: center;
      transition: all .2s; text-decoration: none;
    }
    .page-btn.active, .page-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
/* .card-img-top-wrap img{
	width: 100%;
	height: 100%;
} */
    /* MOBILE */
    @media (max-width: 575px) {
      .blog-hero { padding: 48px 0 36px; }
      .search-wrap { max-width: 100%; }
      .nl-box { padding: 24px 18px; }
      .nl-form { flex-direction: column; }
      .nl-form input { border-radius: 6px 6px 0 0; }
      .nl-form button { border-radius: 0 0 6px 6px; padding: 12px; }
    }

    /* HERO */
    .detail-hero {
      background: var(--navy);
      padding: 52px 0 46px;
      position: relative; overflow: hidden;
    }
    .detail-hero::before {
      content: '';
      position: absolute; top: -90px; right: -60px;
      width: 320px; height: 320px; border-radius: 50%;
      background: var(--teal); opacity: .07;
      pointer-events: none;
    }
    .detail-hero::after {
      content: '';
      position: absolute; bottom: -50px; left: 20%;
      width: 180px; height: 180px; border-radius: 50%;
      background: var(--accent); opacity: .05;
      pointer-events: none;
    }
    .hero-tag {
      display: inline-block;
      background: var(--teal); color: #fff;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 4px;
    }
    .detail-hero h1 {
      color: #fff;
      font-size: clamp(22px, 4vw, 34px);
      font-weight: 700; line-height: 1.25;
      max-width: 680px;
    }
    .author-av {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--teal);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .author-name { font-size: 14px; color: #fff; font-weight: 600; line-height: 1.2; }
    .author-role { font-size: 12px; color: #7aa8ba; }
    .hero-info { font-size: 13px; color: #296a5f; }
    .hero-info span { margin-right: 16px; }

    /* ARTICLE COVER */
    .article-cover {
      height: 240px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; margin-bottom: 28px;
    }
    .article-cover i { font-size: 64px; color: rgba(255,255,255,.15); }
    .article-cover .cover-text {
      position: absolute; bottom: 18px; left: 50%;
      transform: translateX(-50%);
      
      font-size: 16px; color: rgba(255,255,255,.13);
      white-space: nowrap; letter-spacing: 1px;
    }

    /* ARTICLE BODY */
    .article-card {
      background: #fff; border-radius: 12px;
      border: 1px solid var(--border); padding: 30px 32px;
    }
    .article-intro {
      
      font-size: 17px; font-style: italic;
      color: var(--navy); line-height: 1.8;
      border-left: 4px solid var(--teal);
      padding-left: 18px; margin-bottom: 24px;
    }
    .article-card p.body-p { font-size: 15px; line-height: 1.85; color: #2e4a56; margin-bottom: 18px; }
    .article-card h2 { font-size: clamp(17px,2.5vw,21px); font-weight: 600; color: var(--navy); margin: 28px 0 12px; }
    .article-card h3 { font-size: clamp(15px,2vw,18px); font-weight: 600; color: var(--navy); margin: 20px 0 8px; }

    /* STATS */
    .stat-box {
      background: var(--bg); border-radius: 10px;
      padding: 18px 14px; text-align: center;
    }
    .stat-num {
      
      font-size: 28px; font-weight: 700;
      color: var(--teal); display: block;
    }
    .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

    /* PULL QUOTE */
    .pull-quote {
      background: var(--teal-light);
      border-left: 4px solid var(--teal);
      border-radius: 0 8px 8px 0;
      padding: 18px 22px; margin: 24px 0;
    }
    .pull-quote p { font-size: 14px; color: var(--teal-dark); line-height: 1.75; font-weight: 600; margin: 0; }

    /* TAGS & SHARE */
    .tag-pill {
      padding: 5px 14px; border-radius: 20px;
      font-size: 12px; font-weight: 600;
      background: var(--teal-light); color: var(--teal-dark);
      border: 1px solid rgba(42,157,143,.2);
    }
    .share-btn {
      padding: 7px 16px; border-radius: 6px;
      border: 1.5px solid var(--border); background: #fff;
      font-size: 12px; font-weight: 700; color: var(--text-muted);
      cursor: pointer; transition: all .2s;
    }
    .share-btn:hover { border-color: var(--teal); color: var(--teal); }
    .share-btn.primary { background: var(--teal); color: #fff; border-color: var(--teal); }
    .share-btn.primary:hover { background: var(--teal-dark); }

    /* SIDEBAR */
    .s-card {
      background: #fff; border-radius: 10px;
      border: 1px solid var(--border); overflow: hidden;
      margin-bottom: 20px;
    }
    .s-head {
      background: var(--navy); padding: 14px 18px;
    }
    .s-head h5 { font-size: 15px; color: #fff; font-weight: 600; margin: 0; }
    .s-body { padding: 14px 18px; }

    .toc-item {
      display: flex; gap: 10px; padding: 9px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer; align-items: flex-start;
    }
    .toc-item:last-child { border-bottom: none; }
    .toc-num { font-size: 11px; font-weight: 700; color: var(--teal); min-width: 20px; padding-top: 2px; }
    .toc-text { font-size: 13px; color: var(--text); line-height: 1.4; }

    .related-item {
      display: flex; gap: 10px; padding: 10px 0;
      border-bottom: 1px solid var(--border); cursor: pointer;
    }
    .related-item:last-child { border-bottom: none; }
    .related-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 5px; flex-shrink: 0; }
    .related-title { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 2px; }
    .related-meta { font-size: 11px; color: var(--text-muted); }

    /* CTA SIDEBAR */
    .cta-s {
      background: var(--navy); border-radius: 10px;
      padding: 22px 18px; text-align: center;
      margin-bottom: 20px;
    }
    .cta-s h5 { font-size: 16px; color: #fff; margin-bottom: 8px; }
    .cta-s p { font-size: 12px; color: #a8c4d0; line-height: 1.6; margin-bottom: 14px; }
    .cta-s button {
      width: 100%; padding: 11px;
      background: #1a6e65; color: #fff;
      border: none; border-radius: 6px;
      font-size: 13px; font-weight: 700; cursor: pointer;
    }
    .cta-s button:hover { background: var(--teal-dark); }

    /* NEWSLETTER SIDEBAR */
    .nl-s {
      background: var(--teal-light); border-radius: 10px;
      padding: 18px; border: 1px solid rgba(42,157,143,.2);
      margin-bottom: 20px;
    }
    .nl-s h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .nl-s p { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
    .nl-s input {
      width: 100%; padding: 9px 12px;
      border: 1px solid var(--border);
      border-radius: 6px 6px 0 0;
      font-size: 13px; outline: none;
    }
    .nl-s button {
      width: 100%; padding: 10px;
      background: var(--teal); color: #fff;
      border: none; border-radius: 0 0 6px 6px;
      font-size: 13px; font-weight: 700; cursor: pointer;
    }
    .nl-s button:hover { background: var(--teal-dark); }

    /* PREV NEXT */
    .pn-card {
      background: #fff; border-radius: 10px;
      border: 1px solid var(--border); padding: 18px;
      cursor: pointer; transition: border-color .2s; height: 100%;
    }
    .pn-card:hover { border-color: var(--teal); }
    .pn-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
    .pn-title {  font-size: 14px; color: var(--navy); line-height: 1.4; }





    /* ─────────────────────────────────────────────────
     | :root — CSS Custom Properties (Design Tokens)
     ───────────────────────────────────────────────── */
    :root {
      --teal:        #2a9d8f;
      --teal-dark:   #1a6e65;
      --teal-light:  #e6f5f3;
      --navy:        #1a3a4a;
      --bg:          #f0f5f8;
      --text:        #1a2e38;
      --text-muted:  #5a7a8a;
      --border:      #d0e2ea;
      --accent:      #4ecdc4;
      --white:       #ffffff;
    }

    .page-wrapper {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 16px;
    }


    .site-header {
      background: var(--navy);
      padding: 16px 0;
      border-bottom: 3px solid var(--teal);
    }

    .site-header .brand {
      
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .site-header .brand span {
      color: var(--accent);
    }

    .breadcrumb-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      font-size: 13px;
      color: var(--text-muted);
    }

    .breadcrumb-bar a {
      color: var(--teal);
      text-decoration: none;
      font-weight: 600;
    }

    .breadcrumb-bar a:hover {
      color: var(--teal-dark);
      text-decoration: underline;
    }


    .article-hero {
      background: var(--navy);
      padding: 56px 0 48px;
      position: relative;
      overflow: hidden;
    }

    .article-hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.07;
      pointer-events: none;
    }

    .hero-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .hero-title {
      color: var(--white);
      font-size: clamp(22px, 4.5vw, 36px);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 20px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: #a8c4d0;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    /* ─────────────────────────────────────────────────
     | components/article-body/
     |   .article-body
     |   .article-body h2
     |   .article-body h3
     |   .article-body p
     |   .article-body ul
     |   .article-body ul li
     |   .article-body ul li::before
     |   .article-body a
     |   .article-body strong
     ───────────────────────────────────────────────── */
    .article-body {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border);
      padding: 40px 44px;
      margin: 36px 0;
    }

    .article-body h2 {
      font-size: clamp(18px, 3vw, 23px);
      font-weight: 700;
      color: var(--navy);
      margin-top: 38px;
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--teal-light);
    }

    .article-body h2:first-child {
      margin-top: 0;
    }

    .article-body h3 {
      font-size: clamp(15px, 2.5vw, 18px);
      font-weight: 600;
      color: var(--navy);
      margin-top: 26px;
      margin-bottom: 10px;
    }

    .article-body p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .article-body ul {
      list-style: none;
      padding: 0;
      margin: 0 0 18px 0;
    }

    .article-body ul li {
      font-size: 15px;
      color: var(--text);
      line-height: 1.75;
      padding: 6px 0 6px 28px;
      position: relative;
      border-bottom: 1px solid var(--teal-light);
    }

    .article-body ul li:last-child {
      border-bottom: none;
    }

    .article-body ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 14px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
    }

    .article-body a {
      color: var(--teal);
      font-weight: 600;
      text-decoration: none;
    }

    .article-body a:hover {
      color: var(--teal-dark);
      text-decoration: underline;
    }

    .article-body strong {
      color: var(--navy);
      font-weight: 700;
    }

    /* ─────────────────────────────────────────────────
     | components/info-box/
     |   .info-box
     |   .info-box.warning
     ───────────────────────────────────────────────── */
    .info-box {
      background: var(--teal-light);
      border-left: 4px solid var(--teal);
      border-radius: 0 8px 8px 0;
      padding: 16px 20px;
      margin: 20px 0;
      font-size: 14px;
      color: var(--text);
      line-height: 1.7;
    }

    .info-box.warning {
      background: #fff4e5;
      border-left-color: #e09e3a;
    }

    /* ─────────────────────────────────────────────────
     | components/step-list/
     |   .step-list
     |   .step-item
     |   .step-number
     |   .step-content
     ───────────────────────────────────────────────── */
    .step-list {
      list-style: none;
      padding: 0;
      margin: 24px 0;
    }

    .step-item {
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
      align-items: flex-start;
    }

    .step-number {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      background: var(--teal);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      
      font-weight: 700;
      font-size: 16px;
      margin-top: 2px;
    }

    .step-content {
      flex: 1;
    }

    .step-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 8px 0;
    }

    .step-content p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 10px 0;
      line-height: 1.7;
    }

    .step-content ul {
      margin: 8px 0 0 0;
    }

    /* ─────────────────────────────────────────────────
     | components/faq/
     |   .faq-section
     |   .faq-item
     |   .faq-question
     |   .faq-answer
     ───────────────────────────────────────────────── */
    .faq-section {
      margin-top: 8px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-question {
      background: #f7fbfc;
      padding: 16px 20px;
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: none;
      width: 100%;
      text-align: left;
      
      transition: background 0.2s;
    }

    .faq-question:hover {
      background: var(--teal-light);
    }

    .faq-question i {
      color: var(--teal);
      font-size: 18px;
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .faq-question.open i {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 16px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      background: var(--white);
      border-top: 1px solid var(--border);
    }

    .faq-answer.open {
      display: block;
    }

    /* ─────────────────────────────────────────────────
     | components/cta-box/
     |   .cta-box
     |   .cta-box h3
     |   .cta-box p
     |   .cta-links
     |   .cta-link
     |   .cta-link i
     ───────────────────────────────────────────────── */
    .cta-box {
      background: var(--navy);
      border-radius: 12px;
      padding: 36px 40px;
      margin: 36px 0;
      text-align: center;
    }

    .cta-box h3 {
      color: var(--white);
      font-size: clamp(18px, 3vw, 24px);
      margin-bottom: 10px;
    }

    .cta-box p {
      color: #a8c4d0;
      font-size: 15px;
      margin-bottom: 24px;
    }

    .cta-links {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: var(--teal);
      color: var(--white);
      border-radius: 6px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.2s;
    }

    .cta-link:hover {
      background: var(--teal-dark);
      color: var(--white);
    }

    .cta-link.secondary {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
    }

    .cta-link.secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .cta-link i {
      font-size: 16px;
    }

    /* ─────────────────────────────────────────────────
     | components/footer/
     |   .site-footer
     |   .site-footer p
     ───────────────────────────────────────────────── */
    .site-footer {
      background: var(--navy);
      padding: 24px 0;
      border-top: 3px solid var(--teal);
      text-align: center;
    }

    .site-footer p {
      font-size: 13px;
      color: #7aa8ba;
      margin: 0;
    }

    .site-footer a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
    }

    /* ─────────────────────────────────────────────────
     | utilities/
     |   .text-teal
     |   .divider
     ───────────────────────────────────────────────── */
    .text-teal {
      color: var(--teal);
    }

    .divider {
      border: none;
      border-top: 2px solid var(--teal-light);
      margin: 30px 0;
    }


.card-img-top-wrap img{
	width: 100%;
	height: 100%; 
	
	    left: 0;
    position: absolute;
}
.card-img-top-wrap{
	object-fit: cover;
}


    /* ─────────────────────────────────────────────────
     | media-queries/
     |   @media (max-width: 768px)
     ───────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .article-hero {
        padding: 36px 0 30px;
      }

      .hero-title {
        font-size: 22px;
      }

      .article-body {
        padding: 24px 20px;
      }

      .step-item {
        gap: 12px;
      }

      .cta-box {
        padding: 28px 20px;
      }

      .cta-links {
        flex-direction: column;
        align-items: center;
      }

      .cta-link {
        width: 100%;
        justify-content: center;
      }
    }

















    /* MOBILE SIDEBAR */
    @media (max-width: 991px) {
      .article-card { padding: 20px 18px; }
      .detail-hero { padding: 40px 0 36px; }
    }
    @media (max-width: 575px) {
      .article-cover { height: 180px; }
      .stat-num { font-size: 22px; }
    }
.article-cover1 img{
	width: 100%;
	border-radius: 10px;margin-bottom: 20px;
}
.inner-headerimg123 img {
    width: 73%;
}