:root {
  --wa-green: #0b6b3a;
  --wa-green-dark: #053018;
  --wa-teal: #00a896;
  --wa-gold: #f6b700;
  --wa-sky: #21a1e2;
  --wa-soft-bg: #f4fbf7;
  --wa-text-muted: #5c6a61;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--wa-green-dark);
  background: #ffffff;
}

/* HEADER */

.wa-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e4f1e8;
}

.wa-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image sizing */
.wa-logo-link {
  display: flex;
  align-items: center;
}

.wa-logo-link img {
  height: 64px;          /* adjust this number if you want bigger/smaller */
  width: auto;
  display: block;
}

/* On small screens, make it a bit smaller */
@media (max-width: 600px) {
  .wa-logo-link img {
    height: 48px;
  }
}


.wa-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-nav a {
  text-decoration: none;
  color: var(--wa-green-dark);
  position: relative;
}

.wa-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wa-green), var(--wa-teal));
  transition: width 0.25s ease;
}

.wa-nav a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */

.wa-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.wa-nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--wa-green-dark);
  border-radius: 999px;
}

@media (max-width: 800px) {
  .wa-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.25rem 1.2rem;
    gap: 0.6rem;
    border-bottom: 1px solid #e4f1e8;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .wa-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .wa-nav-toggle {
    display: inline-flex;
  }
}

/* HERO */

.wa-hero {
  position: relative;
  min-height: 90vh;
  color: #ffffff;
  display: grid;
  align-items: center;
}

.wa-hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.wa-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 8s linear;
}

.wa-hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.wa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(6, 70, 37, 0.5));
}

.wa-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4.2rem 1.25rem 3rem;
}

.wa-hero-pill {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.5rem;
}

.wa-hero-title {
  font-size: clamp(2.0rem, 3.1vw, 2.7rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.03em;
}

.wa-hero-sub {
  font-size: 1.02rem;
  max-width: 32rem;
  color: #e3f7ec;
  margin: 0 0 1.4rem;
}

.wa-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.wa-hero-badges span {
  font-size: 0.78rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.wa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.wa-btn-primary {
  background: #ffffff;
  color: var(--wa-green-dark);
  border-color: #ffffff;
}

.wa-btn-primary:hover {
  opacity: 0.9;
}

.wa-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.wa-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.wa-stat {
  min-width: 5rem;
}

.wa-stat-number {
  font-size: 1.4rem;
  font-weight: 700;
}

.wa-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #d7f2e3;
}

/* SECTIONS */

.wa-section {
  padding: 2.8rem 0;
}

.wa-section-alt {
  background: var(--wa-soft-bg);
}

.wa-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wa-section-head {
  margin-bottom: 1.7rem;
}

.wa-pill {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.18rem 0.78rem;
  border-radius: 999px;
  background: #e9f7ee;
  color: var(--wa-green);
}

.wa-h2 {
  font-size: 1.8rem;
  margin: 0.3rem 0 0.5rem;
}

.wa-lead {
  font-size: 0.98rem;
  color: var(--wa-text-muted);
  max-width: 720px;
}

/* GRID / CARDS */

.wa-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .wa-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wa-cards {
  margin-top: 1.4rem;
}

.wa-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem 1.15rem;
  border: 1px solid #e4f0e7;
  box-shadow: 0 10px 26px rgba(6, 70, 37, 0.05);
  position: relative;
  overflow: hidden;
}

.wa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(246, 183, 0, 0.2), transparent 52%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wa-card:hover::before {
  opacity: 1;
}

.wa-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--wa-green);
  margin-bottom: 0.3rem;
}

.wa-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--wa-green-dark);
}

.wa-card p {
  font-size: 0.86rem;
  margin: 0;
  color: var(--wa-text-muted);
}

/* === Solid Colour Cards === */

.wa-cards .wa-card:nth-child(1) {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}

.wa-cards .wa-card:nth-child(1) .wa-card-label,
.wa-cards .wa-card:nth-child(1) h3,
.wa-cards .wa-card:nth-child(1) p {
  color: #fff;
}

.wa-cards .wa-card:nth-child(2) {
  background: #21a1e2; /* Sky Blue */
  color: #fff;
  border-color: #21a1e2;
}

.wa-cards .wa-card:nth-child(2) .wa-card-label,
.wa-cards .wa-card:nth-child(2) h3,
.wa-cards .wa-card:nth-child(2) p {
  color: #fff;
}

.wa-cards .wa-card:nth-child(3) {
  background: #f6b700; /* School Gold */
  color: #242814;
  border-color: #f6b700;
}

.wa-cards .wa-card:nth-child(3) .wa-card-label,
.wa-cards .wa-card:nth-child(3) h3,
.wa-cards .wa-card:nth-child(3) p {
  color: #242814;
}

/* Hover enhancement */
.wa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}



/* SPLIT / INFRA */

.wa-split {
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 900px) {
  .wa-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.wa-tag-block {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  background: #fdf7e7;
  border-radius: 0.9rem;
  border-left: 4px solid var(--wa-gold);
  font-size: 0.86rem;
  color: #6c5a1a;
}

.wa-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.wa-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: #4b5850;
}

.wa-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--wa-green);
  font-size: 1.1rem;
}

.wa-infra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.4rem;
}

/* shared style */
.wa-infra-item {
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  font-size: 0.86rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* soft tints per item */
.wa-infra-item:nth-child(1) {
  background: #e9fef3;             /* mint */
  border-color: #b6e7c7;
}

.wa-infra-item:nth-child(2) {
  background: #e8f7ff;             /* light blue */
  border-color: #b8ddf4;
}

.wa-infra-item:nth-child(3) {
  background: #fdf6e4;             /* warm gold tint */
  border-color: #f2d79a;
}

.wa-infra-item:nth-child(4) {
  background: #f3ecff;             /* soft violet/teal vibe */
  border-color: #d3c5ff;
}

/* hover */
.wa-infra-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(6, 70, 37, 0.12);
}

.wa-infra-title {
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 0.2rem;
  color: #052816;
}


/* GALLERY STRIP */

.wa-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.wa-gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e1eee7;
  min-height: 120px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.wa-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ADMISSIONS CTA */

.wa-cta {
  background: linear-gradient(120deg, var(--wa-green), #1cb388);
  border-radius: 1.3rem;
  padding: 1.7rem 1.5rem;
  display: grid;
  gap: 1rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .wa-cta {
    grid-template-columns: 2.2fr 1fr;
    align-items: center;
  }
}

.wa-cta h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.wa-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: #e3fbf1;
}

.wa-cta-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #d1f5e6;
}

.wa-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.wa-btn-light {
  background: #ffffff;
  color: var(--wa-green-dark);
  border-color: transparent;
}

.wa-btn-light:hover {
  opacity: 0.95;
}

.wa-btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}

/* FOOTER */

.wa-footer {
  background: #0f1f18;
  color: #d1e3da;
  padding-top: 2rem;
  margin-top: 1rem;
}

.wa-footer-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .wa-footer-grid {
    grid-template-columns: 2fr 1.1fr 1.1fr;
  }
}

.wa-footer h3,
.wa-footer h4 {
  margin: 0 0 0.4rem;
}

.wa-footer p {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
}

.wa-footer a {
  color: #f2fffb;
  text-decoration: none;
}

.wa-footer a:hover {
  text-decoration: underline;
}

.wa-footer-note {
  font-size: 0.78rem;
  color: #9bb2a6;
}

.wa-footer-links a {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.wa-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.4rem;
  padding: 0.8rem 1.25rem 1.3rem;
  font-size: 0.78rem;
  text-align: center;
  color: #9bb2a6;
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* === Lightbox for Campus Life images === */

.wa-lightbox {
  position: fixed;
  inset: 0;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.wa-lightbox.is-open {
  display: flex;
}

.wa-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.wa-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.6);
}

.wa-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.wa-lightbox-close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Explore Wendy Academy image grid === */

.wa-focus-section {
  background: #f9fcff; /* very light tint so section feels separate */
}

.wa-focus-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .wa-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wa-focus-item {
  display: flex;
  flex-direction: column;
}

.wa-focus-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.wa-focus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.55), rgba(6, 70, 37, 0.6));
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.wa-focus-text {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 1;
}

.wa-focus-text h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.wa-focus-text p {
  margin: 0;
  font-size: 0.86rem;
}

/* Hover / focus effect on desktop */
@media (hover: hover) and (pointer: fine) {
  .wa-focus-card:hover .wa-focus-overlay,
  .wa-focus-card:focus-visible .wa-focus-overlay {
    opacity: 0.95;
  }

  .wa-focus-card:hover .wa-focus-text p,
  .wa-focus-card:focus-visible .wa-focus-text p {
    text-decoration: underline;
  }
}

/* Mobile text below images (no hover on touch) */
.wa-focus-desc-mobile {
  display: none;
  margin-top: 0.4rem;
}

.wa-focus-desc-mobile h3 {
  margin: 0 0 0.1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--wa-green-dark);
}

.wa-focus-desc-mobile p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--wa-text-muted);
}

@media (max-width: 767px) {
  .wa-focus-card {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  }

  .wa-focus-text p {
    display: none; /* keep only heading over image on small screens */
  }

  .wa-focus-desc-mobile {
    display: block; /* show full text below image (like Chintels) */
  }
}

/* Final Principal Card Layout - Solid Blue Theme */

.wa-section-principal {
  background: #f3f9fb;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.wa-principal-card {
  background: #21a1e2;
  border-radius: 1.6rem;
  padding: 2rem 2.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  color: #ffffff;
}

.wa-principal-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .wa-principal-grid {
    grid-template-columns: 0.9fr 1.5fr;
    align-items: center;
  }
}

.wa-principal-photo-wrap {
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  border: 4px solid #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 22px rgba(0,0,0,0.22);
}

.wa-principal-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-principal-meta {
  text-align: left;
}

.wa-principal-name {
  margin: 0.1rem 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.wa-principal-role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* Quote and text formatting */

.wa-principal-quote {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #ffffff;
  padding-left: 1.8rem;
  position: relative;
}

.wa-principal-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.35);
}

.wa-principal-quote span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-style: normal;
  color: rgba(255,255,255,0.8);
}

.wa-principal-text p {
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

/* Mobile tweaks */

@media (max-width: 700px) {
  .wa-principal-grid {
    text-align: center;
  }
  .wa-principal-photo-wrap {
    margin: 0 auto 1rem;
  }
  .wa-principal-meta {
    text-align: center;
  }
}

/* === Testimonial / Video Section === */

.wa-section-testimonial {
  background: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 2.8rem;
  border-top: 1px solid #e4f0e7;
}

.wa-testimonial-layout {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

@media (min-width: 900px) {
  .wa-testimonial-layout {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

.wa-testimonial-copy .wa-h2 {
  margin-bottom: 0.5rem;
}

.wa-testimonial-quote-text {
  margin: 1rem 0 0.3rem;
  font-style: italic;
  color: #36443c;
}

.wa-testimonial-author {
  margin: 0;
  font-size: 0.86rem;
  color: var(--wa-text-muted);
}

/* Video frame */

.wa-testimonial-video-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wa-video-frame {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  background: #000;
  transform-origin: center;
  animation: wa-video-float 7s ease-in-out infinite;
}

.wa-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sound toggle button */

.wa-video-sound-toggle {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.wa-video-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
}

.wa-video-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--wa-text-muted);
}

/* Subtle float animation for video card */

@keyframes wa-video-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Mobile tweaks */

@media (max-width: 700px) {
  .wa-testimonial-layout {
    grid-template-columns: 1fr;
  }
  .wa-testimonial-video-col {
    width: 100%;
  }
}



/* === Achievements & Results (Medal Wall) === */

.wa-section-achievements {
  background: #f6b700; /* Solid school gold-orange */
  padding-top: 2.8rem;
  padding-bottom: 3rem;
}

.wa-achievements-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

@media (min-width: 768px) {
  .wa-achievements-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.wa-achievement-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.2rem 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #dcefe4;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wa-achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.wa-achievement-card:hover::before {
  opacity: 1;
}

/* Medal circles */

.wa-achievement-medal {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  margin: 0 auto 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.medal-gold {
  background: linear-gradient(135deg, #f6b700, #ffda55);
}

.medal-green {
  background: linear-gradient(135deg, #0b6b3a, #1cb388);
}

.medal-blue {
  background: linear-gradient(135deg, #21a1e2, #55c3ff);
}

.medal-teal {
  background: linear-gradient(135deg, #00a896, #02c39a);
}

.wa-medal-icon {
  font-size: 1.6rem;
}

/* Counter text */

.wa-achievement-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #053018;
  margin-bottom: 0.3rem;
}

.wa-achievement-count .wa-counter {
  font-variant-numeric: tabular-nums;
}

.wa-achievement-label {
  margin: 0;
  font-size: 0.85rem;
  color: #053018;
}

/* Mobile tweak */
@media (max-width: 767px) {
  .wa-achievement-card {
    padding: 1rem 0.9rem 1.1rem;
  }
}

/* === Top News Bar === */

.wa-newsbar {
  background: #d82424; /* Chintels-style red bar */
  color: #ffffff;
  font-size: 0.85rem;
}

.wa-newsbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  overflow: hidden;
}

.wa-news-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
}

.wa-news-items {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.wa-news-items a,
.wa-news-items span {
  color: #ffffff;
  text-decoration: none;
}

.wa-news-items a:hover {
  text-decoration: underline;
}

/* scrolling effect */
.wa-news-ticker {
  display: inline-block;
  padding-left: 100%;
  animation: wa-news-scroll 18s linear infinite;
}

@keyframes wa-news-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.wa-news-loading {
  opacity: 0.8;
  font-style: italic;
}

