/* ============================================================
   Mr. Austin's Health & PE — Main Stylesheet
   styles.css  |  Used across all pages
   Bootstrap 5.3 is loaded via CDN before this file
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600&family=Barlow+Semi+Condensed:wght@500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --pe-navy:     #0D1B2A;
  --pe-royal:    #1B4FD8;
  --pe-gold:     #F5A623;
  --pe-green:    #1DA462;
  --pe-white:    #FFFFFF;
  --pe-offwhite: #F0F4FF;
  --pe-mid:      #637082;
  --pe-light:    #D6E0F5;
  --pe-stripe:   #E8EEF8;
  --pe-dark-bg:  #07111C;
  --pe-darker:   #040D14;
  --navy:   #0D1B2A;
    --royal:  #1B4FD8;
    --gold:   #F5A623;
    --white:  #FFFFFF;
    --offwhite: #F0F4FF;
    --mid:    #637082;
    --light:  #D6E0F5;
    --stripe: #E8EEF8;
}

ul,li{padding:0px;}

/* ── Base Reset & Typography ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--pe-white);
  color: var(--pe-navy);
  line-height: 1.6;
}

/* ── HEADER / NAV ── */
  header {
    background: var(--white);
    border-bottom: 3px solid var(--royal);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(13,27,42,0.10);
  }
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--royal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon svg { width: 26px; height: 26px; fill: var(--white); }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .logo-sub {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 0.72rem;
    color: var(--royal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
  }
  nav ul li a {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
  }
  nav ul li a:hover { background: var(--offwhite); color: var(--royal); }
  nav ul li a.nav-highlight {
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 4px;
  }
  nav ul li a.nav-highlight:hover { background: #e8961a; color: var(--navy); }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  /* Diagonal stripe decoration */
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -120px;
    width: 520px; height: 520px;
    background: var(--royal);
    opacity: 0.18;
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    opacity: 1;
  }
  .section-title.hero_title{    color: #fff;
    margin: 0;
    text-align: center;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    font-weight: 700;}
  
  /* Diagonal accent bar */
  .hero-accent {
    position: absolute;
    top: 0; right: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(27,79,216,0.28) 100%);
    pointer-events: none;
  }
  /* Athletic track lines on right */
  .hero-lines {
    position: absolute;
    right: 0; top: 0;
    width: 340px; height: 100%;
    opacity: 0.07;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-lines span {
    display: block;
    position: absolute;
    right: 0;
    height: 100%;
    width: 4px;
    background: var(--white);
    transform-origin: top right;
  }
  .hero-lines span:nth-child(1) { right: 40px; transform: skewX(-8deg); }
  .hero-lines span:nth-child(2) { right: 80px; transform: skewX(-8deg); }
  .hero-lines span:nth-child(3) { right: 120px; transform: skewX(-8deg); }
  .hero-lines span:nth-child(4) { right: 160px; transform: skewX(-8deg); }
  .hero-lines span:nth-child(5) { right: 200px; transform: skewX(-8deg); }
  .hero-lines span:nth-child(6) { right: 240px; transform: skewX(-8deg); }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 90px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .hero-copy { flex: 1; }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--navy);
    border-radius: 50%;
  }
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .hero-title em {
    font-style: normal;
    color: var(--gold);
    display: block;
  }
  .hero-body {
    font-size: 1.08rem;
    color: var(--light);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.18s, transform 0.14s;
    display: inline-block;
  }
  .btn-primary:hover { background: #e8961a; transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.18s, background 0.18s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); background: rgba(245,166,35,0.08); }

  /* Hero stat badges */
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
  }
  .stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 18px 22px;
    min-width: 180px;
    backdrop-filter: blur(4px);
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
    font-weight: 500;
  }

  /* ── WELCOME STRIP ── */
  .welcome-strip {
    background: var(--royal);
    color: var(--white);
    padding: 22px 40px;
  }
  .welcome-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .welcome-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  .welcome-text {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
  }
  .welcome-text strong { color: var(--gold); }

  /* ── SECTION INTRO ── */
  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-eyebrow::after {
    content: '';
    display: inline-block;
    height: 2px;
    width: 36px;
    background: var(--gold);
    border-radius: 2px;
  }

  /* ── NAV CARDS ── */
  .nav-section {
    padding: 72px 40px;
    background: var(--offwhite);
  }
  .nav-section-inner { max-width: 1200px; margin: 0 auto; }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 48px;
    letter-spacing: 0.01em;
  }
  .nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  .nav-card {
    background: var(--white);
    border: 1.5px solid var(--light);
    border-radius: 8px;
    padding: 28px 22px 24px;
    text-decoration: none;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    position: relative;
    overflow: hidden;
  }
  .nav-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--royal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
  }
  .nav-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,79,216,0.12); border-color: var(--royal); }
  .nav-card:hover::before { transform: scaleX(1); }
  .nav-card-icon {
    font-size: 1.9rem;
    line-height: 1;
  }
  .nav-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
  }
  .nav-card-desc {
    font-size: 0.82rem;
    color: var(--mid);
    line-height: 1.5;
  }
  .nav-card-arrow {
    margin-top: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--royal);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .nav-card-arrow::after { content: '→'; }

  /* ── ANNOUNCEMENT BAND ── */
  .announce {
    background: var(--navy);
    color: var(--white);
    padding: 58px 40px;
  }
  .announce-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .announce-copy .section-eyebrow { color: var(--gold); }
  .announce-copy .section-eyebrow::after { background: var(--royal); }
  .announce-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .announce-body {
    color: var(--light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .updates-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .updates-list li {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 14px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .update-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    margin-top: 2px;
  }
  .update-text {
    font-size: 0.9rem;
    color: var(--light);
    line-height: 1.5;
  }

  /* ── QUOTE BANNER ── */
  .quote-banner {
    background: var(--gold);
    padding: 50px 40px;
  }
  .quote-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .quote-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
  }
  .quote-attr {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13,27,42,0.6);
  }

  /* ── BIG FOOTER ── */
  footer {
    background: #07111C;
    color: var(--light);
    padding: 80px 40px 0;
  }
  .footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo-main { font-size: 1.4rem; color: var(--white); }
  .footer-brand .logo-sub { color: var(--gold); }
  .footer-desc {
    font-size: 0.9rem;
    color: rgba(214,224,245,0.7);
    line-height: 1.7;
    margin: 18px 0 24px;
    max-width: 300px;
  }
  .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27,79,216,0.2);
    border: 1px solid rgba(27,79,216,0.4);
    border-radius: 4px;
    padding: 8px 14px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light);
    font-weight: 600;
  }
  .footer-badge span { color: var(--gold); }
  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--royal);
    display: inline-block;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
	padding: 0;
  }
  .footer-links li a {
    color: rgba(214,224,245,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
  }
  .footer-links li a::before {
    content: '›';
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
  }
  .footer-links li a:hover { color: var(--white); }

  /* Contact block in footer */
  .footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 16px;
  }
  .footer-contact-label {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }
  .footer-contact-value {
    font-size: 0.88rem;
    color: rgba(214,224,245,0.75);
  }

  /* Social icons */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }
  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color 0.15s, background 0.15s;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .social-btn:hover { border-color: var(--gold); background: rgba(245,166,35,0.1); color: var(--gold); }

  /* Newsletter in footer */
  .footer-newsletter {
    background: rgba(27,79,216,0.12);
    border: 1px solid rgba(27,79,216,0.3);
    border-radius: 8px;
    padding: 32px;
    margin: 0 auto 0;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
  }
  .newsletter-copy { flex: 1; }
  .newsletter-copy strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
  }
  .newsletter-copy p {
    font-size: 0.85rem;
    color: rgba(214,224,245,0.65);
  }
  .newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
  .newsletter-form input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 10px 16px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    width: 230px;
    outline: none;
    transition: border-color 0.15s;
  }
  .newsletter-form input::placeholder { color: rgba(214,224,245,0.4); }
  .newsletter-form input:focus { border-color: var(--gold); }
  .newsletter-form button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
  }
  .newsletter-form button:hover { background: #e8961a; }

  /* Footer middle strip */
  .footer-mid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-mid-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(214,224,245,0.4);
    margin-bottom: 16px;
  }
  .footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-quick-links a {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: rgba(214,224,245,0.6);
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
  }
  .footer-quick-links a:hover { background: rgba(27,79,216,0.2); color: var(--white); }

  /* Footer bottom bar */
  .footer-bottom {
    background: #040D14;
    margin: 0 -40px;
    padding: 22px 40px;
    margin-top: 0;
  }
  .footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-bottom p {
    font-size: 0.78rem;
    color: rgba(214,224,245,0.35);
    font-family: 'Barlow Semi Condensed', sans-serif;
  }
  .footer-bottom p strong { color: rgba(214,224,245,0.6); }
  .footer-legal {
    display: flex;
    gap: 20px;
  }
  .footer-legal a {
    font-size: 0.75rem;
    color: rgba(214,224,245,0.3);
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    transition: color 0.15s;
  }
  .footer-legal a:hover { color: rgba(214,224,245,0.7); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { flex-direction: column; padding: 60px 24px 70px; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .announce-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-newsletter { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-wrap: wrap; }
    .newsletter-form input { width: 100%; }
    .topbar { display: none; }
    .header-inner { padding: 0 24px; }
    nav ul { display: none; }
    .nav-section, .announce, .quote-banner, footer { padding-left: 24px; padding-right: 24px; }
  }
  @media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
  }
  
  .hero img{max-width:100%;height:auto;}
  .footer-bottom-inner p{margin-bottom:0px;}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.pe-header {
  background: var(--royal);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 16px rgba(13, 27, 42, .10);
}

/* Logo */
.pe-logo { text-decoration: none !important; }
.pe-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--pe-royal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pe-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--pe-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}
.pe-logo-sub {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: .72rem;
  color: var(--pe-royal);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
  display: block;
}

/* Nav links */
.pe-nav .nav-link {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff !important;
      padding: 16px 24px !important;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.pe-nav .nav-link:hover,
.pe-nav .nav-link.active {
      background: transparent;
    border-bottom: 3px solid #f5a623;
    border-radius: 0px;
}
.pe-nav .nav-link.pe-nav-cta {
  background: var(--pe-gold);
  color: var(--pe-navy) !important;
  padding: 6px 14px !important;
}
.pe-nav .nav-link.pe-nav-cta:hover { background: #e8961a; }

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.pe-page-hero {
	background:url(../image/inner-banner_new.jpg) no-repeat center center/cover;
  /* background: var(--pe-navy); */
  position: relative;
  overflow: hidden;
  padding: 120px 0px;
}
.pe-page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: var(--pe-royal);
  opacity: .15; border-radius: 50%;
  pointer-events: none;
}
.pe-page-hero::after {
  content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 27 42 / 50%);
    opacity: 1;
}
.pe-hero-lines {
  position: absolute; right: 0; top: 0;
  width: 260px; height: 100%;
  opacity: .06; pointer-events: none; overflow: hidden;
}
.pe-hero-lines span {
  display: block; position: absolute; right: 0;
  height: 100%; width: 4px;
  background: var(--pe-white);
  transform-origin: top right;
}
.pe-hero-lines span:nth-child(1) { right: 30px;  transform: skewX(-8deg); }
.pe-hero-lines span:nth-child(2) { right: 65px;  transform: skewX(-8deg); }
.pe-hero-lines span:nth-child(3) { right: 100px; transform: skewX(-8deg); }
.pe-hero-lines span:nth-child(4) { right: 135px; transform: skewX(-8deg); }
.pe-hero-lines span:nth-child(5) { right: 170px; transform: skewX(-8deg); }

.pe-breadcrumb {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(214,224,245,.5);
  margin-bottom: 14px;
}
.pe-breadcrumb a { color: var(--pe-gold); text-decoration: none; }

.pe-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pe-gold); color: var(--pe-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px; margin-bottom: 18px;
}
.pe-eyebrow::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: var(--pe-navy); border-radius: 50%;
}

.pe-page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .96;
  color: var(--pe-white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.pe-page-title em { font-style: normal; color: var(--pe-gold); }

.pe-page-subtitle {
  font-size: 1.05rem;
  color: var(--pe-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.pe-home-hero {
  background: var(--pe-navy);
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}
.pe-home-hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 520px; height: 520px;
  background: var(--pe-royal); opacity: .18;
  border-radius: 50%; pointer-events: none;
}
.pe-home-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 20%;
  width: 280px; height: 280px;
  background: var(--pe-gold); opacity: .10;
  border-radius: 50%; pointer-events: none;
}
.pe-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: .96; color: var(--pe-white);
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 20px;
}
.pe-hero-heading em { font-style: normal; color: var(--pe-gold); }
.pe-hero-subheading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--pe-light); margin-bottom: 14px; line-height: 1.45;
}
.pe-hero-desc {
  font-size: 1rem; color: rgba(214,224,245,.75);
  line-height: 1.75; margin-bottom: 36px; max-width: 540px;
}

/* Stat cards in hero */
.pe-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--pe-gold);
  border-radius: 6px; padding: 18px 24px;
}
.pe-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.1rem;
  color: var(--pe-gold); line-height: 1; margin-bottom: 4px;
}
.pe-stat-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pe-light); font-weight: 500;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.pe-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pe-royal); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.pe-section-label::after {
  content: '';
  display: inline-block; height: 2px; width: 36px;
  background: var(--pe-gold); border-radius: 2px;
}
.pe-section-label--light { color: var(--pe-gold); }
.pe-section-label--light::after { background: var(--pe-royal); }

.pe-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.2rem;
  text-transform: uppercase; color: var(--pe-navy);
  letter-spacing: .01em; line-height: 1.05;
}
.pe-section-title--light { color: var(--pe-white); }
.pe-section-title--sm { font-size: 1.7rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.pe-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 4px;
  text-decoration: none !important;
  transition: all .18s; border: none; cursor: pointer;
}
.pe-btn--primary { background: var(--pe-gold); color: var(--pe-navy) !important; }
.pe-btn--primary:hover { background: #e8961a; transform: translateY(-1px); color: var(--pe-navy) !important; }
.pe-btn--secondary { background: var(--pe-royal); color: var(--pe-white) !important; }
.pe-btn--secondary:hover { background: #1642b8; color: var(--pe-white) !important; }
.pe-btn--outline { background: transparent; border: 2px solid rgba(255,255,255,.35); color: var(--pe-white) !important; }
.pe-btn--outline:hover { border-color: var(--pe-gold); background: rgba(245,166,35,.08); }
.pe-btn--outline-dark { background: transparent; border: 2px solid var(--pe-royal); color: var(--pe-royal) !important; }
.pe-btn--outline-dark:hover { background: var(--pe-royal); color: var(--pe-white) !important; }
.pe-btn--sm { padding: 7px 16px; font-size: .82rem; }

/* ============================================================
   CARDS
   ============================================================ */
.pe-card {
  background: var(--pe-white);
  border: 1.5px solid var(--pe-light);
  border-radius: 8px;
  padding: 28px 24px 24px;
  position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pe-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--pe-royal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.pe-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,79,216,.12); border-color: var(--pe-royal); }
.pe-card:hover::before { transform: scaleX(1); }

.pe-card--dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
.pe-card--dark:hover { border-color: rgba(255,255,255,.3); box-shadow: 0 8px 28px rgba(0,0,0,.3); }

.pe-card-icon { font-size: 2rem; line-height: 1; margin-bottom: 10px; }
.pe-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--pe-navy); margin-bottom: 8px;
}
.pe-card--dark .pe-card-title { color: var(--pe-white); }
.pe-card-body { font-size: .88rem; color: var(--pe-mid); line-height: 1.6; }
.pe-card--dark .pe-card-body { color: var(--pe-light); }

.pe-tag {
      display: block;
    background: var(--pe-offwhite);
    border: 1px solid var(--pe-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pe-royal);
    padding: 3px 9px;
    border-radius: 20px;
    width: max-content;
    margin-bottom: 20px !important;
}
.pe-tag--green { background: #E8F5E9; color: var(--pe-green); border-color: #A5D6A7; }
.pe-tag--orange { background: #FFF3E0; color: #E65100; border-color: #FFCCBC; }

/* Nav card variant */
.pe-nav-card {
  background: var(--pe-offwhite);
  border: 1.5px solid var(--pe-light);
  border-radius: 8px;
  padding: 22px 18px 18px;
  text-decoration: none !important;
  color: var(--pe-navy) !important;
  display: flex; flex-direction: column; gap: 8px;
  height: 100%;
  position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pe-nav-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--pe-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.pe-nav-card:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(27,79,216,.10); border-color: var(--pe-royal); }
.pe-nav-card:hover::before { transform: scaleX(1); }
.pe-nav-card-icon { font-size: 1.7rem; line-height: 1; }
.pe-nav-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.pe-nav-card-arrow {
  margin-top: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--pe-royal);
}
.pe-nav-card-arrow::after { content: ' →'; }

/* Resource card (links page) */
.pe-resource-card {
  background: var(--pe-offwhite);
  border: 1.5px solid var(--pe-light);
  border-radius: 8px; padding: 20px 18px;
  text-decoration: none !important;
  color: var(--pe-navy) !important;
  display: flex; align-items: center; gap: 14px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  height: 100%;
}
.pe-resource-card:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(27,79,216,.10); border-color: var(--pe-royal); }
.pe-resource-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.pe-resource-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.pe-resource-arrow { margin-left: auto; color: var(--pe-royal); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   SIDEBAR COMPONENTS
   ============================================================ */
.pe-sidebar-box {
  background: var(--pe-offwhite);
  border: 1.5px solid var(--pe-light);
  border-radius: 8px; padding: 22px 20px;
}
.pe-sidebar-box--dark { background: var(--pe-navy); border-color: rgba(255,255,255,.08); }

.pe-sidebar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pe-navy);
  padding-bottom: 10px; margin-bottom: 16px;
  border-bottom: 2px solid var(--pe-royal);
  display: inline-block;
}
.pe-sidebar-title--light { color: var(--pe-gold); border-color: var(--pe-royal); }

.pe-sidebar-list { list-style: none; padding: 0; margin: 0; }
.pe-sidebar-list li { border-bottom: 1px solid var(--pe-stripe); }
.pe-sidebar-list li:last-child { border-bottom: none; }
.pe-sidebar-list li a,
.pe-sidebar-list li span {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: #374558;
  text-decoration: none; padding: 7px 0;
  transition: color .15s;
}
.pe-sidebar-list li a::before,
.pe-sidebar-list li span::before {
  content: '›'; color: var(--pe-gold);
  font-size: 1.1rem; line-height: 1; flex-shrink: 0;
}
.pe-sidebar-list li a:hover { color: var(--pe-royal); }
.pe-sidebar-list--light li { border-color: rgba(255,255,255,.07); }
.pe-sidebar-list--light li a,
.pe-sidebar-list--light li span { color: var(--pe-light); }
.pe-sidebar-list--light li a:hover { color: var(--pe-gold); }

/* ============================================================
   CALLOUTS
   ============================================================ */
.pe-callout {
  background: var(--pe-royal); color: var(--pe-white);
  border-radius: 8px; padding: 24px 22px;
}
.pe-callout--gold { background: var(--pe-gold); color: var(--pe-navy); }
.pe-callout--dark { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--pe-light); }
.pe-callout-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.pe-callout p { font-size: .92rem; line-height: 1.65; opacity: .92; margin: 0; }

/* ============================================================
   TABLES
   ============================================================ */
.pe-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.pe-table th {
  background: var(--pe-navy); color: var(--pe-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
}
.pe-table td { padding: 11px 16px; border-bottom: 1px solid var(--pe-stripe); color: #374558; vertical-align: top; }
.pe-table tbody tr:nth-child(even) td { background: var(--pe-offwhite); }
.pe-table tbody tr:hover td { background: #E3EBFF; }

/* ============================================================
   RULE ITEMS
   ============================================================ */
.pe-rule {
  background: var(--pe-white);
  border: 1.5px solid var(--pe-light);
  border-left: 4px solid var(--pe-royal);
  border-radius: 6px; padding: 16px 20px; margin-bottom: 12px;
}
.pe-rule--gold { border-left-color: var(--pe-gold); }
.pe-rule--red  { border-left-color: #E53E3E; }
.pe-rule-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--pe-royal); margin-bottom: 4px;
}
.pe-rule--gold .pe-rule-num { color: #B07A10; }
.pe-rule--red .pe-rule-num  { color: #E53E3E; }
.pe-rule-text { font-size: .93rem; color: #374558; line-height: 1.6; margin: 0; }

/* ============================================================
   CHECKLIST
   ============================================================ */
.pe-checklist { list-style: none; padding: 0; margin: 0; }
.pe-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: .96rem; color: #374558; line-height: 1.55; margin-bottom: 12px; }
.pe-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pe-green);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: #fff; font-weight: 900;
  flex-shrink: 0; margin-top: 2px;
}
.pe-check--royal { background: var(--pe-royal); }
.pe-check--gold  { background: var(--pe-gold); color: var(--pe-navy); }
.pe-check--alert { background: var(--pe-gold); color: var(--pe-navy); font-size: .75rem; }
.pe-checklist--light li { color: var(--pe-light); }

/* ============================================================
   STEP LIST
   ============================================================ */
.pe-steps { list-style: none; padding: 0; margin: 0; }
.pe-step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 22px; }
.pe-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pe-royal); color: var(--pe-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.pe-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--pe-navy); margin-bottom: 6px;
}
.pe-step-body { font-size: .9rem; color: #374558; line-height: 1.65; margin: 0; }

/* ============================================================
   ABSENCE CARDS
   ============================================================ */
.pe-absence-card {
  background: var(--pe-offwhite);
  border: 1.5px solid var(--pe-light);
  border-radius: 8px; padding: 20px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 14px;
}
.pe-week-badge {
  background: var(--pe-gold); color: var(--pe-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.pe-absence-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600; font-size: .97rem;
  color: var(--pe-navy); margin-bottom: 4px;
}
.pe-absence-desc { font-size: .84rem; color: var(--pe-mid); line-height: 1.5; margin-bottom: 10px; }

/* ============================================================
   LINK ITEMS (links page)
   ============================================================ */
.pe-link-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--pe-stripe);
}
.pe-link-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--pe-offwhite); border: 1.5px solid var(--pe-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.pe-link-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600; font-size: .98rem;
  color: var(--pe-navy) !important; display: block;
  margin-bottom: 3px; transition: color .15s;
}
.pe-link-label:hover { color: var(--pe-royal) !important; }
.pe-link-desc { font-size: .84rem; color: var(--pe-mid); line-height: 1.5; }

/* ============================================================
   NEWS / NEWSLETTER
   ============================================================ */
.pe-news-post {
  background: var(--pe-white);
  border: 1.5px solid var(--pe-light);
  border-radius: 8px; padding: 28px 26px; margin-bottom: 20px;
}
.pe-news-date {
  background: var(--pe-royal); color: var(--pe-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.pe-news-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--pe-navy); margin: 0;
}
.pe-news-post p { font-size: .93rem; color: #374558; line-height: 1.72; }

/* ============================================================
   WELCOME STRIP
   ============================================================ */
.pe-welcome-strip {
  background: var(--pe-royal); color: var(--pe-white); padding: 22px 0;
}
.pe-welcome-strip strong { color: var(--pe-gold); }

/* ============================================================
   DARK BAND  (used in About, Health, etc.)
   ============================================================ */
.pe-dark-band {
  background: var(--pe-navy);
  padding: 72px 0;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.pe-quote-banner { background: var(--pe-gold); padding: 52px 0; }
.pe-quote-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-transform: uppercase; color: var(--pe-navy);
  line-height: 1.15; letter-spacing: .01em; margin-bottom: 12px;
}
.pe-quote-attr {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(13,27,42,.55); margin: 0;
}

/* ============================================================
   BENEFITS / FIND SECTION backgrounds
   ============================================================ */
.bg-pe-offwhite { background: var(--pe-offwhite); }
.bg-pe-navy     { background: var(--pe-navy); }
.bg-pe-royal    { background: var(--pe-royal); }
.bg-pe-dark     { background: var(--pe-dark-bg); }


/* ============================================================
   PROSE  (long-form text blocks)
   ============================================================ */
.pe-prose p { font-size: 1rem; color: #374558; line-height: 1.78; margin-bottom: 18px; }
.pe-prose p.authore_name { color: var(--royal);font-weight: 600;}
.pe-prose h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--pe-navy); margin: 28px 0 10px;
  padding-bottom: 8px; border-bottom: 2px solid var(--pe-light);
}
.pe-prose ul { padding-left: 20px; margin-bottom: 18px; }
.pe-prose ul li { font-size: .96rem; color: #374558; line-height: 1.7; margin-bottom: 6px; }
.pe-prose strong { color: var(--pe-navy); }
.pe-prose a { color: var(--pe-royal); }

/* ============================================================
   PROFILE AVATAR
   ============================================================ */
.pe-avatar-box {
  background: var(--pe-navy);
  border-radius: 8px; padding: 28px 20px;
  text-align: center;
}
.pe-avatar {
      width: 93px;
    height: 93px; border-radius: 50%;
  background: var(--pe-royal);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
      overflow: hidden;
	      border: 3px solid #f5a623;
}
.pe-avatar-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.4rem;
  color: var(--pe-white); text-transform: uppercase;
}
.pe-avatar-role {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: .8rem; color: var(--pe-gold);
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600;
}



/* ============================================================
   UTILITY HELPERS
   ============================================================ */
.text-pe-gold  { color: var(--pe-gold) !important; }
.text-pe-royal { color: var(--pe-royal) !important; }
.text-pe-light { color: var(--pe-light) !important; }
.text-pe-navy  { color: var(--pe-navy) !important; }
.text-pe-mid   { color: var(--pe-mid) !important; }

.border-pe-top-royal { border-top: 3px solid var(--pe-royal); }
.border-pe-left-gold { border-left: 3px solid var(--pe-gold) !important; }

.font-condensed { font-family: 'Barlow Condensed', sans-serif; }
.font-semi      { font-family: 'Barlow Semi Condensed', sans-serif; }

/* ============================================================
   ENRICHMENT ZONE — card accent + tag variants
   ============================================================ */
.pe-card--gold::before  { background: var(--pe-gold); }
.pe-card--green::before { background: var(--pe-green); }

.pe-tag--purple { background:#F3E8FF; color:#7C3AED; border-color:#DDD6FE; }

.pe-card-meta {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600; font-size: .8rem;
  color: var(--pe-royal); margin: 10px 0 2px;
}
.pe-card ul.pe-card-sublist { list-style: none; padding: 0; margin: 6px 0 12px; }
.pe-card ul.pe-card-sublist li {
  font-size: .85rem; color: #374558; line-height: 1.55;
  padding-left: 16px; position: relative; margin-bottom: 4px;
}
.pe-card ul.pe-card-sublist li::before {
  content: '›'; position: absolute; left: 0; color: var(--pe-gold); font-weight: 700;
}
.pe-card-foot { margin-top: auto; padding-top: 14px; }
.pe-card.d-flex-col { display: flex; flex-direction: column; height: 100%; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1100px) {
  .section-title.hero_title{font-size: 60px;}
  .pe-nav .nav-link{font-size: 14px;    padding: 10px 14px !important;}
}
@media (max-width: 991.98px) {
  .pe-topbar { display: none; }
  .pe-page-hero { padding: 48px 0 56px; }
  .pe-home-hero { padding: 64px 0 72px; }
  .footer-bottom{margin: 0 0px;}
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");}
 .menu{color: #fff;font-weight: 600;font-size: 14px;margin-left: 5px;}
 .navbar-toggler:focus{box-shadow:none;}
 .navbar-toggler{padding: 12px 0px;}
 .navbar-nav{display:block;}
}
@media (max-width: 767.98px) {
  .pe-page-title { font-size: 2.2rem; }
  .pe-hero-heading { font-size: 2.4rem; }
  .pe-section-title { font-size: 1.8rem; }
  .pe-footer { padding-top: 56px; }
  .pe-footer-newsletter { flex-direction: column; }
  .section-title.hero_title{font-size: 32px;}
  .hero img{height: 220px;object-fit: cover;}
  .section-title{font-size: 1.6rem;margin-bottom: 28px;}
  .announce-title{font-size: 1.6rem;}
  .footer-bottom{padding: 12px 0px;}
  .pe-nav .nav-link{padding: 10px 24px !important;}
  .pe-news-post>div{display:block !important;}
  .pe-news-title{margin-top: 10px;}
}
