  /* ===== Base ===== */
    :root {
      /* Replace these with exact logo hex values */
      --blue: #225F8A;
      --green: #6EA82D;
      --dark-blue: #0b3a5a;
      --light-bg: #f7f9fb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

  
    body {
  font-family: 'Inter', sans-serif;
  color: #1f2933;
  background: #ffffff;
  margin: 0;
  overflow-x: hidden;
}

.site-wrapper {
  transition: transform 0.35s ease;
}

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
       padding: 40px 20px;
        }
    
    h1,h2,h3 {
        color: #2a5d9f;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
    
        h2 {
            font-size: 2em;
            margin-top: 40px;
            margin-bottom: 15px;
        }
    
        h3 {
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 10px;
            color: #1e3d70;
        }
    
        p {
            margin-bottom: 15px;
        }
    
        ul {
            list-style: disc;
            padding-left: 20px;
            margin-bottom: 20px;
        }
    
        .core-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
    
        .value {
            background-color: #e3f0ff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
/* Hero heading outline */
.news-hero-content h1,
.home-hero-content h1,
.about-hero-content h1 {
  color: #F3E5AB; /* fill color */
  -webkit-text-stroke: 1.5px #F3E5AB; /* outline */
  text-shadow: 1px 1px 0 rgba(0,0,0,0.35),-1px 1px 0 rgba(0,0,0,0.35),1px -1px 0 rgba(0,0,0,0.35),-1px -1px 0 rgba(0,0,0,0.35);
}
    /* ================= HEADER ================= */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.25rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
.site-header {
  position: sticky;
  top: 0;
  height: 72px;
  background: #fff;
  z-index: 1000;
  margin-bottom: 0;
}
        
.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
}
    
.site-content {
  padding-top: 0;
 }
    nav a {
      margin-left: 2rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: #334e68;
    }

    nav a.cta {
      padding: 0.6rem 1.2rem;
      border: 1.5px solid var(--green);
      border-radius: 999px;
      color: var(--green);
      transition: all 0.3s ease;
    }

    nav a.cta:hover {
      background: var(--green);
      color: white;
    }
/* ===== Desktop Nav ===== */
.desktop-nav {
display: flex;
    gap: 2rem;
    margin-left: auto;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #1a1a1a;
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-toggle {
    margin-left: auto;
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.mobile-menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.35s ease;
}

/* Hamburger → X when menu open */
.menu-open .mobile-menu-toggle .top {
    transform: rotate(45deg) translateY(8px);
}

.menu-open .mobile-menu-toggle .middle {
    opacity: 0;
}

.menu-open .mobile-menu-toggle .bottom {
    transform: rotate(-45deg) translateY(-8px);
}
.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
}
.menu-open {
  overflow: hidden;
}
.menu-open .site-wrapper {
  transform: translateX(-80%);
}

/* ===== Mobile Nav Panel ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: #0b3a5a;
    padding-top: 5rem;
    box-sizing: border-box;
    /* ServeWell Blue */
    padding: 5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav a {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline animation */
.mobile-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.mobile-nav a:hover::after {
    width: 100%;
}

/* ===== Active State ===== */
.menu-open .site-wrapper {
    transform: translateX(-80%);
}

.menu-open .mobile-nav {
    transform: translateX(0);
}
    /* ================= HERO ================= */
    .home-hero {
  position: relative;
  background-image: url("/images/home-hero.png");
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
   background: linear-gradient(rgba(32, 122, 85, 0.75),rgba(32, 122, 85, 0.75));
}

.home-hero-content {
  position: relative;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
}
.home-hero-content h1 {
color: #ffffff;
font-size: 3rem;
margin-bottom: 15px;
}
.home-hero-content p {
font-size: 1.2rem;
margin-bottom: 25px;
}

.home-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
    /* ================= STATEMENT ================= */
    .statement {
      padding: 6rem 2rem;
      text-align: center;
    }

    .statement h2 {
      font-size: 3rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .statement p {
      font-size: 1.2rem;
      color: #52606d;
    }

    /* ================= MISSION / VISION ================= */
    .beliefs {
      background: var(--light-bg);
      padding: 6rem 4rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .belief-card {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    }

    .belief-card h3 {
      font-size: 1.6rem;
      font-weight: 500;
      margin-bottom: 1rem;
      color: var(--blue);
    }

    /* ================= SERVICES ================= */
    .services {
      padding: 6rem 4rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      padding: 2.5rem;
      border-radius: 20px;
      background: white;
      box-shadow: 0 15px 40px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
    }

    .service-card h4 {
      margin-bottom: 0.8rem;
      font-weight: 500;
      color: var(--blue);
    }

    /* ================= FAITH ================= */
    .faith {
      padding: 5rem 2rem;
      max-width: 720px;
      margin: auto;
      text-align: center;
      color: #52606d;
    }

    /* ================= CALL TO ACTION ================= */
    .cta-section {
      background: var(--dark-blue);
      color: white;
      padding: 0;
    text-align: center;
    }

    .cta-section h2 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 2.5rem;
    }

    .cta-section a {
    margin: 0 0.6rem;
    padding: 0.9rem 1.8rem;
      border-radius: 999px;
      background: white;
      color: var(--dark-blue);
      font-weight: 500;
    }
     
    .image-container {
    position: relative;
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    }
    
    .image-container img {
    /* Ensure the image fills its container */
    display: block;
    width: 100%;
    height: auto;
    }
    
    .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 102, 204, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
}
    
    /* Optional: Style the text */
    .overlay-text {
    color: white;
    text-align: center;
    padding: 10px;
    max-width: 1000px;
    margin: 0 auto;
    }

    .overlay-text a {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 5px;
    }

    .overlay-text h2 {
  color: white;
  line-height: 1.2;
  margin: 0 0 16px;
}
    
    /* Optional: Add hover effect to show overlay on mouse over */
    /* .image-container:hover .overlay {
    opacity: 1;
    } */
    /* ================= FOOTER ================= */
    footer {
      background: #F7F7F7;
      color: #235F8B;
      padding: 4rem 4rem 2rem;
      border-top: 2px solid #6DA62D;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }

    footer .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
    }

    footer h5 {
      font-weight: 500;
      margin-bottom: 1rem;
      color: #6DA62D;
    }

    footer p, footer a {
      font-size: 0.9rem;
    }
    .finfo {
    color: #898B8A;
    }
    
/* ===== Contact Page Layout ===== */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    /* accounts for fixed header */
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.contact-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
/* ===== Contact Info ===== */

.contact-info {
    background: #f7f9fb;
    padding: 32px;
    border-radius: 12px;
}

.info-item {
margin-bottom: 16px;
}


.info-item strong {
display: block;
font-weight: 600;
margin-bottom: 4px;
}

 /* ===== Form ===== */
.contact-form {
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

 .form-group {
   margin-bottom: 20px;
 }

 label {
   display: block;
   font-size: 0.9rem;
   font-weight: 600;
   margin-bottom: 6px;
 }

 input,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 6px;
   border: 1px solid #d1d5db;
   font-size: 1rem;
   font-family: inherit;
 }

 textarea {
   resize: vertical;
   min-height: 140px;
 }

 input:focus,
 textarea:focus {
   outline: none;
   border-color: #0066cc;
   box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
 }

 .submit-btn {
   display: inline-block;
   width: 100%;
   padding: 14px;
   background-color: #0066cc;
   color: #ffffff;
   border: none;
   border-radius: 6px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
 }

 .submit-btn:hover {
   background-color: #0052a3;
 }
.form-success {
  max-width: 800px;
  margin: 20px auto;
  background: #e6f2ff;
  border-left: 4px solid #0066cc;
  padding: 16px 20px;
  border-radius: 6px;
  font-weight: 600;
}
.error {
  color: #b00020;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

input.error-input,
textarea.error-input {
  border-color: #b00020;
}

.hp-field {
  display: none;
}
.contact-info,
.contact-form {
    width: 100%;
    min-width: 0;
}
/* ===== Team Page ===== */
.team-section {
  padding: 5rem 1.5rem 4rem; /* more space from header */
}
.team-section h1 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
  font-weight: 600;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.team-card {
    width: 100%;
    max-width: 300px;
    height: 360px;
    perspective: 1200px;
    justify-self: center;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.team-card:hover .card-inner {
  transform: rotateY(180deg);
}
.card-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-front {
  display: flex;
  flex-direction: column;
  position: relative;
    overflow: hidden;
  
}

.card-front img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-front h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 14px;
  background: rgba(11, 61, 145, 0.9);
  color: #fff;
  text-align: center;
}
.card-back {
  background: linear-gradient(135deg, #0b3d91, #1565c0);
  color: #fff;
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
}

.card-back h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-back p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.card-front,
.card-back {
    height: 100%;
    width: 100%;
}
.profile-btn {
  margin-top: 15px;
  background: #fff;
  color: #2a5d9f;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}


.profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
/* ROLE BADGE */
.member-role {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(42, 93, 159, 0.9);
  padding: 5px 10px;
  border-radius: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  pointer-events: none;/* prevents hover issues */
  color: #fff;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
/* ROLE COLORS */
.member-role.officer  { background: rgba(11, 61, 145, 0.95); }
.member-role.director { background: rgba(42, 93, 159, 0.95); }
.member-role.board    { background: rgba(90, 90, 90, 0.95); }
.member-role.staff    { background: rgba(60, 140, 100, 0.95); }

/* ===== Team Profile Page ===== */
.team-profile-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  padding: 60px 20px;
}

/* HERO LAYOUT */
.profile-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

/* CIRCLE PHOTO */
.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
   border: 4px solid transparent;
  background:linear-gradient(white, white) padding-box,linear-gradient(135deg, #2a5d9f, #4fa3ff) border-box;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Meta */
.profile-meta h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.profile-meta .title {
  font-size: 1.25rem;
  color: #0b5ed7;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.profile-meta .email a {
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
}

.profile-meta .email a:hover {
  color: #0b5ed7;
}

/* Social */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: transparent;
    /* remove blue background */
    border-radius: 0;
    /* remove extra rounding */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links img {
  width: 30px;
  height: 30px;
  display: block;
}
/* Social Links */
.member-social {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.member-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

.member-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}

.member-social a:hover img {
    transform: scale(1.1);
}

.email {
    font-size: 1rem;
    margin: 10px 0;
}

.email a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* space between icon and text */
    text-decoration: none;
    color: #2a5d9f;
    /* match your site color */
}

.email a:hover {
    text-decoration: underline;
}

.email-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
}
/* Bio */
.profile-bio {
  max-width: 720px;
}

.profile-bio h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #0b5ed7;
}

.profile-bio p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #333;
}
/* ===== About Page ===== */
.about-section {
    padding: 1rem 1.5rem 4rem;
    /* more space from header */
}

.about-section h1 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    font-weight: 600;
}
.about-hero {
    position: relative;
    background-image: url("/images/about-hero.jpg");
    height: 70vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(42, 93, 159, 0.75), rgba(42, 93, 159, 0.75));
}

.about-hero-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.about-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.about-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #ffffff;
    color: #2a5d9f;
}

.btn.primary:hover {
    background-color: #e6eef9;
}

.btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
/* ===== Back 2 Top ===== */
#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2a5d9f;
  border: none;
  cursor: pointer;
  display: none; /* or use fade method */
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  padding: 0;
}

#backToTop img {
  width: 22px;     /* control arrow size */
  height: auto;
  pointer-events: none; /* click still hits button */
}

#backToTop:hover {
  background: #1f4f8a;
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}
body.menu-open #backToTop {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
/* =========================
   BLOG SECTION
========================= */
/* =========================
   BLOG HERO SECTION
========================= */

.news-hero {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 70, 140, 0.75),
      rgba(20, 70, 140, 0.85));
  backdrop-filter: blur(2px);
}

.news-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.news-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.news-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.95;
}
.news-section {
    padding: 70px 20px;
}
.news-section h1 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.news-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Image area */
.news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.news-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.news-content {
  padding: 22px 22px 26px; /* more space around everything */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-content h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px; /* space under title */
  color: #111;
}

.news-content p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  margin-bottom: 18px; /* space before read more */
}

/* Push read more to bottom */
.news-content .read-more {
  margin-top: auto;
  font-weight: 600;
  color: #b00020;
}
/* =========================
   SINGLE POST HERO (CENTERED)
========================= */

.post-hero {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  text-align: center;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* black tint */
}

.post-hero-content {
  position: relative;
  padding: 0 20px;
  max-width: 900px;
  color: #fff;
}

.post-hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.post-hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
  color: #fff;
}

.post-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  max-width: 900px;
  color: #F3E5AB;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.post-body {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =========================
   POST CONTENT IMAGES
========================= */

.post-body img {
  display: block;
  max-width: 100%;
  height: auto;

  margin: 30px auto;        /* center + spacing */
  border-radius: 10px;     /* rounded corners */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.post-body figure {
  margin: 40px auto;
  text-align: center;
}

.post-body figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}
/* =========================
   BACK TO NEWS BUTTON
========================= */

.post-back-wrapper {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.post-back-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  background: #2a5d9f; /* Servewell blue */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.post-back-btn:hover {
  background: #1f4775;
  transform: translateX(-3px);
}

