/* ============================================================
       USPF DESIGN TOKENS
       Copy this <style> block into every page's <head>
       or save as: assets/css/uspf-components.css
       and link as: <link rel="stylesheet" href="../assets/css/uspf-components.css">
    ============================================================ */

    :root {
      --uspf-navy:       #27235e;
      --uspf-navy-dark:  #1a1845;
      --uspf-gold:       #fec223;
      --uspf-gold-light: rgba(254,194,35,0.15);
      --uspf-white:      #ffffff;
      --uspf-gray-50:    #f8f7ff;
      --uspf-gray-100:   #f1f0f8;
      --uspf-gray-200:   #e4e2f5;
      --uspf-gray-500:   #6b6880;
      --uspf-gray-700:   #3d3a52;
      --uspf-green-bg:   #eef9f0;
      --uspf-green-text: #1a7a30;
      --uspf-green-border:#b8e8c0;
      --uspf-blue-bg:    #eef3ff;
      --uspf-blue-text:  #2d4faa;
      --uspf-blue-border:#b8ccf5;
      --radius-sm:       4px;
      --radius-md:       8px;
      --radius-lg:       12px;
      --radius-xl:       16px;
    }

    /* ── Demo page styles (NOT part of the component library) ── */
    * { box-sizing: border-box; }
    body { font-family: Arial, sans-serif; background: #f0eef8; margin: 0; padding: 0; }
    .demo-page { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
    .demo-header { background: var(--uspf-navy); color: white; padding: 32px 40px; border-radius: var(--radius-xl); margin-bottom: 40px; }
    .demo-header h1 { font-size: 28px; font-weight: 800; color: var(--uspf-gold); margin: 0 0 6px; }
    .demo-header p { margin: 0; color: rgba(255,255,255,0.6); font-size: 14px; }
    .demo-section { margin-bottom: 48px; }
    .demo-section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--uspf-navy); background: var(--uspf-gold); display: inline-block;
      padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
    }
    .demo-section-label-navy {
      font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--uspf-white); background: var(--uspf-navy); display: inline-block;
      padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
    }
    .demo-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .demo-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .demo-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    @media (max-width: 768px) {
      .demo-grid-2, .demo-grid-3, .demo-grid-4 { grid-template-columns: 1fr; }
    }

    /* ============================================================
       COMPONENT 1: PAGE BANNER
       Usage: Top of every inner page
    ============================================================ */
    .uspf-page-banner {
      background: var(--uspf-navy-dark);
      padding: 48px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .uspf-page-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg, rgba(254,194,35,0.04) 0, rgba(254,194,35,0.04) 1px,
        transparent 0, transparent 50%
      ) center / 20px 20px;
    }
    .uspf-page-banner .banner-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--uspf-gold); margin-bottom: 8px;
    }
    .uspf-page-banner h1 {
      font-size: 32px; font-weight: 800; color: white; margin: 0 0 16px; position: relative;
    }
    .uspf-page-banner .banner-breadcrumb {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); position: relative;
    }
    .uspf-page-banner .banner-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
    .uspf-page-banner .banner-breadcrumb a:hover { color: var(--uspf-gold); }
    .uspf-page-banner .banner-breadcrumb .current { color: var(--uspf-gold); }

    /* ============================================================
       COMPONENT 2: SECTION TITLE BAR
       Usage: Before any major content section
    ============================================================ */
    .uspf-section-title {
      display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
    }
    .uspf-section-title h2 {
      font-size: 22px; font-weight: 700; color: var(--uspf-navy);
      margin: 0; white-space: nowrap;
    }
    .uspf-section-title::after {
      content: ''; flex: 1; height: 2px;
      background: linear-gradient(to right, var(--uspf-gold), transparent);
      border-radius: 2px;
    }

    /* ============================================================
       COMPONENT 3: STAT BAR
       Usage: Key numbers at a glance (founded year, programs, etc.)
    ============================================================ */
    .uspf-stat-bar {
      display: flex; background: var(--uspf-navy);
      border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px;
    }
    .uspf-stat-bar-item {
      flex: 1; padding: 20px 14px; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .uspf-stat-bar-item:last-child { border-right: none; }
    .uspf-stat-bar-item .stat-num {
      font-size: 28px; font-weight: 800; color: var(--uspf-gold); line-height: 1;
    }
    .uspf-stat-bar-item .stat-label {
      font-size: 11px; color: rgba(255,255,255,0.65);
      margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px;
    }

    /* ============================================================
       COMPONENT 4: STAT CARDS (individual)
       Usage: Key metrics in a grid
    ============================================================ */
    .uspf-stat-card {
      background: white; border: 1px solid var(--uspf-gray-200);
      border-top: 3px solid var(--uspf-navy);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
      padding: 18px 14px; text-align: center;
    }
    .uspf-stat-card.gold { border-top-color: var(--uspf-gold); }
    .uspf-stat-card .stat-num {
      font-size: 32px; font-weight: 800; color: var(--uspf-navy); line-height: 1;
    }
    .uspf-stat-card.gold .stat-num { color: var(--uspf-gold); }
    .uspf-stat-card .stat-label {
      font-size: 12px; color: var(--uspf-gray-500); margin-top: 6px; line-height: 1.3;
    }

    /* ============================================================
       COMPONENT 5: QUALITY POLICY BANNER
       Usage: Quality at USPF page
    ============================================================ */
    .uspf-policy-banner {
      background: var(--uspf-navy); border-radius: var(--radius-xl);
      padding: 32px 36px; position: relative; overflow: hidden; margin-bottom: 28px;
    }
    .uspf-policy-banner::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 180px; height: 180px; border-radius: 50%;
      background: rgba(254,194,35,0.08);
    }
    .uspf-policy-banner::after {
      content: ''; position: absolute; bottom: -60px; left: -20px;
      width: 220px; height: 220px; border-radius: 50%;
      background: rgba(254,194,35,0.05);
    }
    .uspf-policy-banner .policy-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--uspf-gold); margin-bottom: 10px;
    }
    .uspf-policy-banner h3 {
      color: white; font-size: 22px; font-weight: 700;
      margin-bottom: 14px; line-height: 1.3; position: relative;
    }
    .uspf-policy-banner p {
      color: rgba(255,255,255,0.82); font-size: 14px;
      line-height: 1.7; margin-bottom: 8px; position: relative;
    }
    .uspf-policy-banner p:last-child { margin-bottom: 0; }

    /* ============================================================
       COMPONENT 6: ACCREDITATION CARD
       Usage: Each accredited program/department
    ============================================================ */
    .uspf-accred-card {
      border: 1px solid var(--uspf-gray-200);
      border-radius: var(--radius-lg); overflow: hidden;
    }
    .uspf-accred-card-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 11px 16px; background: var(--uspf-navy); gap: 10px;
    }
    .uspf-accred-card-header .dept { font-size: 12px; font-weight: 600; color: white; line-height: 1.3; }
    .uspf-accred-badge { flex-shrink: 0; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
    .uspf-accred-badge.l3 { background: var(--uspf-gold); color: var(--uspf-navy); }
    .uspf-accred-badge.l2 { background: rgba(255,255,255,0.18); color: white; border: 1px solid rgba(255,255,255,0.3); }
    .uspf-accred-badge.l1 { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
    .uspf-accred-card-body { padding: 8px 14px; background: white; }
    .uspf-accred-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 0; border-bottom: 1px solid var(--uspf-gray-100); gap: 8px;
    }
    .uspf-accred-row:last-child { border-bottom: none; }
    .uspf-accred-row .prog { font-size: 12px; color: #333; flex: 1; line-height: 1.3; }
    .uspf-status-pill { flex-shrink: 0; font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; }
    .uspf-status-pill.l3 { background: var(--uspf-green-bg); color: var(--uspf-green-text); border: 1px solid var(--uspf-green-border); }
    .uspf-status-pill.l2 { background: var(--uspf-blue-bg); color: var(--uspf-blue-text); border: 1px solid var(--uspf-blue-border); }

    /* ============================================================
       COMPONENT 7: TIMELINE ITEM
       Usage: Brief History page, milestone pages
    ============================================================ */
    .uspf-timeline {
      position: relative; padding-left: 30px; margin: 8px 0;
    }
    .uspf-timeline::before {
      content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px;
      width: 2px; background: var(--uspf-navy); opacity: 0.15;
    }
    .uspf-timeline-item { position: relative; margin-bottom: 24px; }
    .uspf-timeline-item::before {
      content: ''; position: absolute; left: -26px; top: 7px;
      width: 11px; height: 11px; border-radius: 50%;
      background: var(--uspf-gold); border: 2px solid var(--uspf-navy);
    }
    .uspf-timeline-year {
      display: inline-block; background: var(--uspf-navy); color: var(--uspf-gold);
      font-size: 11px; font-weight: 700; letter-spacing: 1px;
      padding: 3px 10px; border-radius: var(--radius-sm); margin-bottom: 5px;
    }
    .uspf-timeline-item h5 {
      font-size: 15px; font-weight: 700; color: var(--uspf-navy); margin: 0 0 4px;
    }
    .uspf-timeline-item p {
      font-size: 13px; color: var(--uspf-gray-500); line-height: 1.6; margin: 0;
    }

    /* ============================================================
       COMPONENT 8: CONTACT SIDEBAR CARD
       Usage: Right sidebar on any About page
    ============================================================ */
    .uspf-contact-card {
      background: var(--uspf-navy); border-radius: var(--radius-xl);
      padding: 24px; color: white; margin-bottom: 20px;
    }
    .uspf-contact-card h4 {
      font-size: 18px; font-weight: 700; color: white; margin: 0 0 2px;
    }
    .uspf-contact-card h4 span { color: var(--uspf-gold); }
    .uspf-contact-card .office-label {
      font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 16px;
    }
    .uspf-contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 14px 0; }
    .uspf-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .uspf-contact-row:last-of-type { margin-bottom: 0; }
    .uspf-contact-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: rgba(254,194,35,0.12); border: 1px solid rgba(254,194,35,0.25);
      border-radius: var(--radius-md); display: flex; align-items: center;
      justify-content: center; font-size: 13px; color: var(--uspf-gold);
    }
    .uspf-contact-row p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }
    .uspf-contact-row a { color: var(--uspf-gold) !important; text-decoration: none; }
    .uspf-follow-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
    .uspf-social-row { display: flex; gap: 8px; }
    .uspf-social-btn {
      width: 36px; height: 36px; border-radius: var(--radius-md);
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
      display: flex; align-items: center; justify-content: center;
      color: white !important; font-size: 14px; text-decoration: none !important;
      transition: background 0.2s;
    }
    .uspf-social-btn:hover { background: rgba(254,194,35,0.2); color: var(--uspf-gold) !important; }

    /* ============================================================
       COMPONENT 9: QUICK LINKS SIDEBAR
       Usage: Right sidebar navigation on any section
    ============================================================ */
    .uspf-quick-links {
      background: var(--uspf-gray-50); border: 1px solid var(--uspf-gray-200);
      border-radius: var(--radius-xl); padding: 20px; margin-bottom: 20px;
    }
    .uspf-quick-links h6 {
      font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--uspf-navy); margin: 0 0 14px;
    }
    .uspf-quick-links ul { list-style: none; padding: 0; margin: 0; }
    .uspf-quick-links ul li { border-bottom: 1px solid var(--uspf-gray-200); }
    .uspf-quick-links ul li:last-child { border-bottom: none; }
    .uspf-quick-links ul li a {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; font-size: 13px; color: var(--uspf-navy);
      text-decoration: none; transition: color 0.2s;
    }
    .uspf-quick-links ul li a::after { content: '›'; font-size: 16px; opacity: 0.35; }
    .uspf-quick-links ul li a:hover { color: var(--uspf-gold); }
    .uspf-quick-links ul li.active a { font-weight: 700; color: var(--uspf-gold); }
    .uspf-quick-links ul li.active a::after { opacity: 1; }

    /* ============================================================
       COMPONENT 10: ADMISSIONS CTA CARD (Full)
       Usage: Right sidebar on history/academic pages
    ============================================================ */
    .uspf-cta-card {
      background: var(--uspf-navy); border-radius: var(--radius-xl);
      overflow: hidden; margin-bottom: 20px;
    }
    .uspf-cta-card-header { background: var(--uspf-gold); padding: 16px 20px; }
    .uspf-cta-card-header .cta-eyebrow {
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--uspf-navy); margin-bottom: 2px;
    }
    .uspf-cta-card-header h4 {
      font-size: 19px; font-weight: 800; color: var(--uspf-navy); margin: 0; line-height: 1.2;
    }
    .uspf-cta-card-body { padding: 20px; }
    .uspf-cta-open-badge {
      display: inline-block; background: rgba(254,194,35,0.14);
      border: 1px solid rgba(254,194,35,0.3); color: var(--uspf-gold);
      font-size: 11px; font-weight: 600; padding: 4px 12px;
      border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.5px;
    }
    .uspf-cta-steps { list-style: none; padding: 0; margin: 0 0 16px; }
    .uspf-cta-steps li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: rgba(255,255,255,0.82); margin-bottom: 10px; line-height: 1.4;
    }
    .uspf-cta-step-num {
      flex-shrink: 0; width: 20px; height: 20px; background: var(--uspf-gold);
      color: var(--uspf-navy); border-radius: 50%; font-size: 10px; font-weight: 800;
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .uspf-cta-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 14px 0; }
    .uspf-btn-gold {
      display: block; background: var(--uspf-gold); color: var(--uspf-navy) !important;
      text-align: center; padding: 12px; border-radius: var(--radius-md);
      font-weight: 700; font-size: 14px; text-decoration: none !important;
      margin-bottom: 8px; transition: opacity 0.2s;
    }
    .uspf-btn-gold:hover { opacity: 0.88; }
    .uspf-btn-outline {
      display: block; background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.18); color: white !important;
      text-align: center; padding: 10px; border-radius: var(--radius-md);
      font-size: 13px; font-weight: 600; text-decoration: none !important;
      margin-bottom: 8px; transition: background 0.2s;
    }
    .uspf-btn-outline:hover { background: rgba(255,255,255,0.14); }
    .uspf-cta-note { font-size: 11px; color: rgba(255,255,255,0.38); text-align: center; margin-top: 10px; }

    /* ============================================================
       COMPONENT 11: ADMISSIONS CTA MINI (compact)
       Usage: Smaller sidebar callout
    ============================================================ */
    .uspf-cta-mini {
      background: var(--uspf-gold); border-radius: var(--radius-xl); padding: 20px;
    }
    .uspf-cta-mini h5 {
      font-size: 14px; font-weight: 800; color: var(--uspf-navy); margin-bottom: 6px;
    }
    .uspf-cta-mini p {
      font-size: 12px; color: var(--uspf-navy); opacity: 0.75;
      margin-bottom: 14px; line-height: 1.5;
    }
    .uspf-cta-mini a {
      display: block; background: var(--uspf-navy); color: white !important;
      text-align: center; padding: 10px; border-radius: var(--radius-md);
      font-size: 13px; font-weight: 700; text-decoration: none !important;
      transition: opacity 0.2s;
    }
    .uspf-cta-mini a:hover { opacity: 0.88; }

    /* ============================================================
       COMPONENT 12: RECOGNITION CARD
       Usage: PACUCOA, PCNC, and other institutional recognitions
    ============================================================ */
    .uspf-recognition-card {
      background: white; border: 1px solid var(--uspf-gray-200);
      border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
      transition: box-shadow 0.2s;
    }
    .uspf-recognition-card:hover { box-shadow: 0 4px 20px rgba(39,35,94,0.1); }
    .uspf-recognition-card img {
      max-height: 80px; width: auto; margin: 0 auto 14px; display: block;
    }
    .uspf-recognition-card h6 { font-size: 14px; font-weight: 700; color: var(--uspf-navy); margin-bottom: 6px; }
    .uspf-recognition-card p { font-size: 12px; color: var(--uspf-gray-500); margin: 0 0 12px; line-height: 1.5; }
    .uspf-recognition-card a {
      font-size: 12px; color: var(--uspf-navy); font-weight: 600;
      text-decoration: none; border-bottom: 1px solid var(--uspf-gold);
    }
    .uspf-recognition-card a:hover { color: var(--uspf-gold); }

    /* ============================================================
       COMPONENT 13: INFO CARD (generic content card)
       Usage: Any general content block
    ============================================================ */
    .uspf-info-card {
      background: white; border: 1px solid var(--uspf-gray-200);
      border-left: 4px solid var(--uspf-navy);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      padding: 20px 24px;
    }
    .uspf-info-card.gold { border-left-color: var(--uspf-gold); }
    .uspf-info-card h5 { font-size: 16px; font-weight: 700; color: var(--uspf-navy); margin: 0 0 8px; }
    .uspf-info-card p { font-size: 13px; color: var(--uspf-gray-500); line-height: 1.6; margin: 0; }

    /* ============================================================
       COMPONENT 14: HASHTAG BLOCK
       Usage: Bottom of history/about pages
    ============================================================ */
    .uspf-hashtag-block {
      background: var(--uspf-navy); color: var(--uspf-gold);
      font-size: 18px; font-weight: 800; letter-spacing: 1px;
      padding: 18px 24px; border-radius: var(--radius-lg);
      text-align: center; margin-top: 28px;
    }

    /* ============================================================
       COMPONENT 15: ALERT / NOTICE BANNER
       Usage: Announcements, enrollment notices
    ============================================================ */
    .uspf-alert {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 20px; border-radius: var(--radius-lg); margin-bottom: 20px;
    }
    .uspf-alert.info { background: #eef3ff; border: 1px solid var(--uspf-blue-border); }
    .uspf-alert.success { background: var(--uspf-green-bg); border: 1px solid var(--uspf-green-border); }
    .uspf-alert.warning { background: #fff8ee; border: 1px solid #ffd999; }
    .uspf-alert .alert-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .uspf-alert.info .alert-icon { color: var(--uspf-blue-text); }
    .uspf-alert.success .alert-icon { color: var(--uspf-green-text); }
    .uspf-alert.warning .alert-icon { color: #8a5500; }
    .uspf-alert .alert-content h6 {
      font-size: 13px; font-weight: 700; margin: 0 0 3px;
    }
    .uspf-alert.info .alert-content h6 { color: var(--uspf-blue-text); }
    .uspf-alert.success .alert-content h6 { color: var(--uspf-green-text); }
    .uspf-alert.warning .alert-content h6 { color: #8a5500; }
    .uspf-alert .alert-content p { font-size: 12px; margin: 0; line-height: 1.5; color: var(--uspf-gray-700); }

    /* ============================================================
       COMPONENT 16: PERSON CARD
       Usage: Administration, faculty profiles
    ============================================================ */
    .uspf-person-card {
      background: white; border: 1px solid var(--uspf-gray-200);
      border-radius: var(--radius-lg); overflow: hidden; text-align: center;
      transition: box-shadow 0.2s;
    }
    .uspf-person-card:hover { box-shadow: 0 4px 20px rgba(39,35,94,0.1); }
    .uspf-person-card .person-img-wrap {
      background: var(--uspf-gray-100); height: 180px;
      display: flex; align-items: center; justify-content: center;
    }
    .uspf-person-card .person-img-wrap img { width: 100%; height: 180px; object-fit: cover; object-position: top; }
    .uspf-person-card .person-initials {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--uspf-navy); color: var(--uspf-gold);
      font-size: 28px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
    }
    .uspf-person-card .person-info { padding: 16px; }
    .uspf-person-card .person-name { font-size: 15px; font-weight: 700; color: var(--uspf-navy); margin-bottom: 3px; }
    .uspf-person-card .person-title { font-size: 12px; color: var(--uspf-gray-500); margin-bottom: 10px; }
    .uspf-person-card .person-dept {
      display: inline-block; background: var(--uspf-gray-50); border: 1px solid var(--uspf-gray-200);
      color: var(--uspf-navy); font-size: 11px; font-weight: 600;
      padding: 3px 10px; border-radius: 20px;
    }

    /* ============================================================
       COMPONENT 17: PROGRAM CARD
       Usage: Academic program listing pages
    ============================================================ */
    .uspf-program-card {
      background: white; border: 1px solid var(--uspf-gray-200);
      border-radius: var(--radius-lg); padding: 20px;
      transition: box-shadow 0.2s, border-color 0.2s;
    }
    .uspf-program-card:hover {
      box-shadow: 0 4px 20px rgba(39,35,94,0.1);
      border-color: var(--uspf-navy);
    }
    .uspf-program-card .prog-icon {
      width: 44px; height: 44px; border-radius: var(--radius-md);
      background: var(--uspf-navy); color: var(--uspf-gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin-bottom: 12px;
    }
    .uspf-program-card h5 { font-size: 15px; font-weight: 700; color: var(--uspf-navy); margin-bottom: 6px; }
    .uspf-program-card p { font-size: 12px; color: var(--uspf-gray-500); line-height: 1.5; margin-bottom: 14px; }
    .uspf-program-card a {
      font-size: 12px; font-weight: 700; color: var(--uspf-navy);
      text-decoration: none; border-bottom: 1px solid var(--uspf-gold);
      transition: color 0.2s;
    }
    .uspf-program-card a:hover { color: var(--uspf-gold); }

    /* ============================================================
       COMPONENT 18: NEWS CARD
       Usage: News & Events listing
    ============================================================ */
    .uspf-news-card {
      background: white; border: 1px solid var(--uspf-gray-200);
      border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow 0.2s;
    }
    .uspf-news-card:hover { box-shadow: 0 4px 20px rgba(39,35,94,0.1); }
    .uspf-news-card .news-img {
      height: 160px; background: var(--uspf-gray-100);
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .uspf-news-card .news-img img { width: 100%; height: 160px; object-fit: cover; }
    .uspf-news-card .news-body { padding: 16px; }
    .uspf-news-card .news-date { font-size: 11px; color: var(--uspf-gray-500); margin-bottom: 6px; }
    .uspf-news-card .news-title { font-size: 14px; font-weight: 700; color: var(--uspf-navy); margin-bottom: 8px; line-height: 1.4; }
    .uspf-news-card .news-excerpt { font-size: 12px; color: var(--uspf-gray-500); line-height: 1.5; margin-bottom: 12px; }
    .uspf-news-card .news-link {
      font-size: 12px; font-weight: 700; color: var(--uspf-navy);
      text-decoration: none; border-bottom: 1px solid var(--uspf-gold);
    }
    .uspf-news-card .news-link:hover { color: var(--uspf-gold); }
    .uspf-news-tag {
      display: inline-block; background: var(--uspf-navy); color: var(--uspf-gold);
      font-size: 10px; font-weight: 700; padding: 3px 8px;
      border-radius: var(--radius-sm); margin-bottom: 8px; letter-spacing: 0.5px;
    }

    /* ============================================================
       COMPONENT 19: VIDEO EMBED WRAPPER
       Usage: YouTube embeds — responsive, no duplicate
    ============================================================ */
    .uspf-video-wrap {
      position: relative; padding-bottom: 56.25%; height: 0;
      overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 28px;
    }
    .uspf-video-wrap iframe {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
    }

    /* ============================================================
       COMPONENT 20: TWO-COLUMN LAYOUT WRAPPER
       Usage: Any inner page with sidebar
    ============================================================ */
    .uspf-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
    .uspf-layout-main { min-width: 0; }
    .uspf-layout-sidebar { min-width: 0; }
    @media (max-width: 991px) {
      .uspf-layout { grid-template-columns: 1fr; }
    }

    /* ============================================================
       UTILITY: Grid helpers
    ============================================================ */
    .uspf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .uspf-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .uspf-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    @media (max-width: 768px) {
      .uspf-grid-2, .uspf-grid-3, .uspf-grid-4 { grid-template-columns: 1fr; }
      .uspf-stat-bar { flex-wrap: wrap; }
      .uspf-stat-bar-item { min-width: 48%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    }