/* Drop Cap */
.drop-cap::first-letter { float: left; font-family: 'Quicksand', sans-serif; font-size: 72px; font-weight: 700; color: #1C3664; line-height: 0.8; padding-right: 10px; padding-top: 6px; }

/* Section Labels */
.section-label { display: inline-block; font-family: 'Quicksand', sans-serif; font-size: 12px; font-weight: 700; color: #F26522; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; margin-top: 48px; }

/* Stat Cards */
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 36px 0 40px; }
.stat-card { background: #1C3664; padding: 28px 20px; text-align: center; }
.stat-card .number { font-family: 'Quicksand', sans-serif; font-size: 36px; font-weight: 700; color: #FFFFFF; line-height: 1.1; }
.stat-card .number.highlight { color: #F26522; }
.stat-card .label { font-family: 'Open Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Oversized Pull Quote */
.pull-quote { background: #E6EEF6; border-left: 5px solid #F26522; padding: 36px 40px; margin: 40px 0; }
.pull-quote p { font-family: 'Quicksand', sans-serif; font-size: 22px; font-weight: 600; color: #1C3664; line-height: 1.55; margin-bottom: 0; max-width: none; }

/* Full-width Navy Highlight Band */
.navy-band { background: #1C3664; padding: 44px 40px; margin: 44px -0px; }
.navy-band .band-title { font-family: 'Quicksand', sans-serif; font-size: 20px; font-weight: 700; color: #F26522; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.navy-band p { font-size: 17px; line-height: 1.8; color: #FFFFFF; margin-bottom: 0; max-width: none; opacity: 0.92; }

/* Data Table */
.data-table-wrapper { display: block; margin: 32px 0 36px; overflow-x: auto; width: 100%; max-width: 100%;}
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.data-table thead th { background: #1C3664; color: #FFFFFF; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; padding: 14px 18px; text-align: left; }
.data-table tbody td { padding: 14px 18px; border-bottom: 1px solid #E0E0E0; }
.data-table tbody tr:nth-child(even) { background: #F7F9FB; }
.data-table tbody tr:last-child { background: #E6EEF6; font-weight: 700; }
.data-table .highlight-cell { color: #F26522; font-weight: 700; }

/* ── Mobile: stack rows as key/value cards ── */
@media only screen and (max-width: 767px) {

    .data-table,
    .data-table thead,
    .data-table tbody,
    .data-table th,
    .data-table td,
    .data-table tr {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* Visually hide the header row but keep it accessible */
    .data-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .data-table tr {
        border: 1px solid #ccc;
        margin-bottom: 12px;
    }

    .data-table td {
        position: relative;
        padding: 10px 12px 10px 45%;
        border: none;
        border-bottom: 1px solid #eee;
        min-height: 36px;
        word-break: break-word;
    }

    /* Inject the column label from the data-label attribute */
    .data-table td::before {
        content: attr(data-label);
        display: block;
        width: 40%;
        font-weight: 600;
        white-space: normal;
        word-break: break-word;
    }
}

/* Callout Box */
.callout-box { border-left: 4px solid #F26522; background: #FFF8F4; padding: 24px 28px; margin: 32px 0; }
.callout-box .callout-title { font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 700; color: #1C3664; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.callout-box p { font-size: 15px; line-height: 1.7; margin-bottom: 0; max-width: none; }

/* CTA Banner */
.cta-banner { background: #F26522; padding: 52px 48px; text-align: center; margin: 52px 0; }
.cta-banner h3 { font-family: 'Quicksand', sans-serif; font-size: 28px !important; font-weight: 700 !important; color: #FFFFFF !important; margin-bottom: 8px !important; }
.cta-banner .cta-sub { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.cta-banner .btn { display: inline-block; background: #FFFFFF; color: #F26522; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 16px; padding: 16px 40px; border-radius: 0; transition: all 0.2s; }
.cta-banner .btn:hover { background: #1C3664; color: #FFFFFF; }

/* Section Divider */
.section-divider { display: flex; align-items: center; gap: 12px; margin: 48px 0 12px; }
.section-divider .bar { width: 40px; height: 4px; background: #F26522; }
.section-divider .line { flex: 1; height: 1px; background: #D0D0D0; }

/* ===== RESPONSIVE: TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .reading-time-display { margin-bottom: 8px; }
  .reading-time-number { font-size: 40px; }

  .stat-cards { gap: 12px; }
  .stat-card .number { font-size: 30px; }

  .pull-quote { padding: 28px 28px; }
  .pull-quote p { font-size: 20px; }

  .navy-band { padding: 32px 28px; }

  .cta-banner { padding: 36px 28px; }
  .cta-banner h3 { font-size: 24px !important; }
}

/* ===== RESPONSIVE: MOBILE (640px) ===== */
@media (max-width: 640px) {
  .drop-cap::first-letter { font-size: 52px; }

  .section-label { margin-top: 36px; }

  .stat-cards { grid-template-columns: 1fr; gap: 8px; margin: 28px 0 32px; }
  .stat-card { padding: 20px 16px; display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .stat-card .number { font-size: 32px; }
  .stat-card .label { margin-top: 0; font-size: 12px; }

  .pull-quote { padding: 20px 20px; margin: 28px 0; }
  .pull-quote p { font-size: 18px; line-height: 1.5; }

  .navy-band { padding: 28px 20px; margin: 32px -20px; }
  .navy-band .band-title { font-size: 16px; }
  .navy-band p { font-size: 15px; }

  .data-table { font-size: 13px; }
  .data-table thead th { padding: 10px 12px; font-size: 11px; letter-spacing: 0.5px; }
  .data-table tbody td { padding: 10px 12px; }

  .callout-box { padding: 20px; margin: 24px 0; }
  .callout-box p { font-size: 14px; }

  .cta-banner { padding: 28px 20px; margin: 36px -20px !important; }
  .cta-banner h3 { font-size: 20px !important; }
  .cta-banner .cta-sub { font-size: 14px; }
  .cta-banner .btn { padding: 14px 32px; font-size: 14px; width: 100%; text-align: center; }

  .section-divider { margin: 36px 0 10px; }
}

/* ===== RESPONSIVE: SMALL MOBILE (375px) ===== */
@media (max-width: 375px) {
  .stat-card .number { font-size: 28px; }
  .pull-quote p { font-size: 16px; }
  .cta-banner { margin: 28px -16px; padding: 24px 16px; }
  .navy-band { margin: 28px -16px; padding: 24px 16px; }
}