/* =============================================
   ABIS / Schoolabis Clone — Shared Styles
   ============================================= */

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

:root {
  --navy:    #1a3560;
  --red:     #c0392b;
  --gold:    #c8a84b;
  --white:   #ffffff;
  --light:   #f5f5f5;
  --text:    #333333;
  --text-md: #555555;
  --shadow:  0 2px 12px rgba(0,0,0,.12);
  --radius:  8px;
  --font-h:  'Montserrat', sans-serif;
  --font-b:  'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Layout ---- */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 72px 0; }
.bg-light   { background: var(--light); }

.section-title {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--navy);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--red);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-family: var(--font-h);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary  { background: var(--navy); color: var(--white); }
.btn-white    { background: var(--white); color: var(--navy); }
.btn-outline  { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-red      { background: var(--red);  color: var(--white); }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: .85rem;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: .02em;
  z-index: 200;
  position: relative;
}
.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 6px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.logo-top  { font-family: var(--font-h); font-size: .95rem; font-weight: 800; color: var(--navy); letter-spacing: .06em; line-height: 1.2; }
.logo-bottom { font-family: var(--font-h); font-size: .6rem; font-weight: 600; color: var(--text-md); letter-spacing: .1em; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  display: block;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--red); }
.nav-login a {
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 7px 16px !important;
}
.nav-login a:hover { background: var(--red) !important; color: var(--white) !important; }

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 160px;
  z-index: 99;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  transition: background .2s, color .2s;
}
.has-dropdown .dropdown li a:hover { background: var(--light); color: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
@media(min-width:900px) { .hero { height: 640px; } }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.38);
  z-index: 1;
}
.hero-content {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 24px;
}
.hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  max-width: 700px;
}
.hero-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .3s;
}
.dot.active { background: var(--white); }
.hero-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.3);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 12px 16px;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: background .2s;
}
.hero-arrow:hover { background: rgba(0,0,0,.55); }
.prev { left: 16px; }
.next { right: 16px; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-inner { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.about-logo-block { text-align: center; }
.about-logo-block img { margin: 0 auto 16px; height: 80px; width: auto; }
.about-logo-block h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.about-content { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.about-images { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.about-images img { width: 220px; border-radius: var(--radius); object-fit: cover; }
.about-text { flex: 1; min-width: 280px; }
.about-text p { color: var(--text-md); margin-bottom: 14px; }
.about-text h3 {
  font-family: var(--font-h); font-size: 1rem;
  font-weight: 700; color: var(--navy);
  margin-bottom: 20px; margin-top: 8px;
  font-style: italic;
}

/* =============================================
   PHOTO STRIP (scrolling)
   ============================================= */
.photo-strip {
  overflow: hidden;
  background: var(--navy);
  padding: 8px 0;
}
.strip-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: scrollStrip 30s linear infinite;
}
.strip-track img {
  height: 140px;
  width: 200px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
@keyframes scrollStrip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.photo-strip:hover .strip-track { animation-play-state: paused; }

/* =============================================
   PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-icon { font-size: 2.4rem; margin-bottom: 14px; }
.pillar-card h3 {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.pillar-card p { font-size: .9rem; color: var(--text-md); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  columns: 2;
  column-gap: 10px;
}
@media(min-width:600px) { .gallery-grid { columns: 3; } }
@media(min-width:900px) { .gallery-grid { columns: 4; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* =============================================
   NEWS
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.news-card:hover { transform: translateY(-4px); }
.news-img { overflow: hidden; height: 200px; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 20px; }
.news-date  { font-size: .78rem; color: #999; margin-bottom: 8px; }
.news-body h3 {
  font-family: var(--font-h); font-size: .95rem;
  font-weight: 700; color: var(--navy);
  margin-bottom: 8px; line-height: 1.45;
}
.news-body h3 a:hover { color: var(--red); }
.news-excerpt { font-size: .85rem; color: var(--text-md); margin-bottom: 10px; }
.news-author { font-size: .78rem; font-weight: 600; color: var(--red); }

/* =============================================
   EVENTS
   ============================================= */
.event-card {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; flex-wrap: wrap;
}
.event-img { flex-shrink: 0; }
.event-img img { width: 320px; height: 220px; object-fit: cover; }
.event-body { padding: 24px; flex: 1; min-width: 240px; }
.event-date { font-family: var(--font-h); font-size: .85rem; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.event-body h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.event-share { margin-bottom: 16px; }
.share-btn {
  font-size: .8rem; color: var(--navy);
  border: 1px solid var(--navy);
  padding: 6px 14px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.share-btn:hover { background: var(--navy); color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.8);
  padding: 40px 0;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
}
.footer-social img { filter: brightness(10); opacity: .7; transition: opacity .2s; }
.footer-social img:hover { opacity: 1; }
.footer-links a {
  font-family: var(--font-h); font-size: .85rem;
  font-weight: 600; color: rgba(255,255,255,.8);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-info p { font-size: .82rem; margin-bottom: 4px; }
.footer-info a { color: rgba(255,255,255,.8); }
.footer-info a:hover { color: var(--white); }

/* =============================================
   INTRO BLOCK (CGK-style centered text)
   ============================================= */
.intro-block { background: #fff; }
.intro-headline {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
}
.intro-divider {
  width: 48px; height: 3px;
  background: var(--red);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.intro-para {
  color: var(--text-md);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* =============================================
   MISSION PANEL (blue left + photo right)
   ============================================= */
.mission-panel {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 400px;
}
@media (max-width: 900px) {
  .mission-panel { grid-template-columns: 1fr; }
  .mission-right { min-height: 280px; }
}
.mission-left {
  background: var(--navy);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.mission-left h2 {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.3;
}
.mission-left p { font-size: .95rem; line-height: 1.78; opacity: .88; }
.mission-right { overflow: hidden; }
.mission-right img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; display: block; }

/* =============================================
   PATHWAY DIAGRAM (chevron arrows)
   ============================================= */
.pathway-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  border-radius: 6px;
  overflow: hidden;
}
.pathway-step {
  flex: 1;
  min-width: 140px;
  padding: 22px 24px 22px 36px;
  position: relative;
  text-decoration: none;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  transition: filter .2s;
  text-align: center;
}
.pathway-step:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  padding-left: 24px;
}
.pathway-step.last {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
}
.pathway-step.navy { background: var(--navy); }
.pathway-step.red  { background: var(--red); }
.pathway-step:hover { filter: brightness(1.12); }
.pathway-age  { font-family: var(--font-h); font-size: .78rem; font-weight: 700; letter-spacing: .06em; opacity: .75; margin-bottom: 6px; }
.pathway-name { font-family: var(--font-h); font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.pathway-sub  { font-size: .72rem; opacity: .78; }
@media (max-width: 600px) {
  .pathway-row { flex-direction: column; }
  .pathway-step,
  .pathway-step:first-child,
  .pathway-step.last { clip-path: none; padding: 16px 20px; border-radius: 4px; margin-bottom: 4px; }
}

/* =============================================
   PROGRAM CARDS (photo + text alternating)
   ============================================= */
.program-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.program-card.flip { direction: rtl; }
.program-card.flip > * { direction: ltr; }
@media (max-width: 700px) {
  .program-card, .program-card.flip { grid-template-columns: 1fr; direction: ltr; }
}
.program-img { overflow: hidden; }
.program-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; display: block; transition: transform .5s; }
.program-img:hover img { transform: scale(1.04); }
.program-body {
  padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.program-body.navy { background: var(--navy); color: #fff; }
.program-body.red  { background: var(--red);  color: #fff; }
.program-body.light{ background: var(--light); color: var(--text); }
.program-badge {
  font-family: var(--font-h); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; opacity: .7; text-transform: uppercase;
}
.program-body h3 {
  font-family: var(--font-h);
  font-size: 1.35rem; font-weight: 800; line-height: 1.3;
}
.program-body p  { font-size: .9rem; line-height: 1.75; opacity: .9; }
.program-body strong { font-weight: 700; opacity: 1; }
.program-body .learn-more {
  font-family: var(--font-h); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; color: inherit; opacity: .85;
  display: inline-flex; align-items: center; gap: 4px;
  transition: opacity .2s; margin-top: 4px;
}
.program-body .learn-more:hover { opacity: 1; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { font-size: 1.1rem; opacity: .85; }

/* =============================================
   TEAM PAGE
   ============================================= */
.team-section { padding: 60px 0; }
.team-leader { display: flex; gap: 36px; align-items: flex-start; margin-bottom: 56px; flex-wrap: wrap; }
.team-leader img { width: 220px; height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); flex-shrink: 0; }
.team-leader-text h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.team-leader-text p  { color: var(--text-md); margin-bottom: 14px; }
.team-leader-text .name { font-family: var(--font-h); font-weight: 700; color: var(--red); font-size: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px; margin-top: 24px; }
.team-member { text-align: center; }
.team-member img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin-bottom: 10px; box-shadow: var(--shadow); }
.team-member h4 { font-family: var(--font-h); font-size: .85rem; font-weight: 700; color: var(--navy); }
.team-sub-title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; margin-top: 40px; border-left: 4px solid var(--red); padding-left: 12px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width:700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-b);
  font-size: .9rem;
  margin-bottom: 18px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--navy); }
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form .success-msg { display: none; color: green; font-weight: 600; margin-top: 8px; }
.contact-info h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info p  { color: var(--text-md); margin-bottom: 10px; }
.contact-info a  { color: var(--navy); font-weight: 600; }
.map-embed { margin-top: 20px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.subscribe-box { background: var(--navy); color: var(--white); padding: 32px; border-radius: var(--radius); margin-top: 40px; text-align: center; }
.subscribe-box h3 { font-family: var(--font-h); font-size: 1.1rem; margin-bottom: 16px; }
.subscribe-form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.subscribe-form input { flex: 1; min-width: 200px; padding: 10px 14px; border: none; border-radius: 4px; font-size: .9rem; }
.subscribe-form button { background: var(--red); color: var(--white); border: none; padding: 10px 24px; border-radius: 4px; font-family: var(--font-h); font-weight: 600; cursor: pointer; transition: opacity .2s; }
.subscribe-form button:hover { opacity: .85; }

/* =============================================
   ADMISSIONS PAGE
   ============================================= */
.admissions-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 48px; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow); text-align: center; }
.step-num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 800; color: var(--red); opacity: .2; line-height: 1; }
.step-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 8px 0; }
.step-card p  { font-size: .88rem; color: var(--text-md); }
.fee-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.fee-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-family: var(--font-h); font-size: .85rem; }
.fee-table td { padding: 12px 16px; border-bottom: 1px solid #eee; font-size: .9rem; }
.fee-table tr:nth-child(even) td { background: var(--light); }
.enrol-cta { background: var(--red); color: var(--white); text-align: center; padding: 48px 24px; border-radius: var(--radius); margin-top: 40px; }
.enrol-cta h2 { font-family: var(--font-h); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.enrol-cta p  { margin-bottom: 24px; opacity: .9; }

/* =============================================
   ACADEMICS PAGE
   ============================================= */
.level-card { display: flex; gap: 32px; align-items: flex-start; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.level-icon { font-size: 3rem; flex-shrink: 0; }
.level-body h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.level-body .badge { display: inline-block; background: var(--red); color: var(--white); font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; letter-spacing: .06em; }
.level-body p { color: var(--text-md); font-size: .92rem; }
.subjects-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.subjects-list span { background: var(--light); border-radius: 4px; padding: 4px 12px; font-size: .8rem; font-weight: 600; color: var(--navy); }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-menu { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--white); box-shadow: var(--shadow); padding: 12px 0; gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .navbar { position: sticky; top: 0; }
  .about-content { flex-direction: column; }
  .about-images img { width: 160px; }
  .event-card { flex-direction: column; }
  .event-img img { width: 100%; height: 200px; }
}
@media (max-width: 480px) {
  .hero { height: 380px; }
  .section-pad { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .logo-top { font-size: .8rem; }
  .logo-bottom { display: none; }
}
