/* ==========================================================================
   Annadhara AI Agri - About Page Stylesheet
   Note: the global stylesheet (assets/css/style.css) is always loaded first
   via includes/layout.php, so its variables and base styles are available.
   Theme: AgriTech, Clean Vertical Farming, Modern Emerald & Teal Aesthetics
   ========================================================================== */

/* --- 1. HERO SECTION --- */
.about-hero {
  position: relative;
  background: linear-gradient(160deg, #052a1c 0%, #08402a 45%, #0f172a 100%);
  color: #fff;
  padding: 100px 0 90px;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(850px 500px at 85% 15%, rgba(52, 211, 153, 0.18), transparent 65%),
    radial-gradient(700px 450px at 15% 85%, rgba(14, 165, 164, 0.16), transparent 60%);
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}

.about-hero-content {
  max-width: 640px;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-300);
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.about-hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-400);
  box-shadow: 0 0 10px var(--primary-400);
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.about-hero h1 {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.about-hero h1 .text-highlight {
  background: linear-gradient(120deg, #6ee7b7, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-lead {
  font-size: 1.14rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.hero-pill svg {
  width: 15px;
  height: 15px;
  color: var(--primary-300);
}

.about-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Media Card */
.about-hero-visual {
  position: relative;
  min-width: 0;
  width: 100%;
}

.about-hero-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  animation: softFloat 7s ease-in-out infinite;
  will-change: transform;
}

.about-hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 440px;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.about-hero-frame:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.badge-info h4,.badge-info .badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.badge-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.badge-tag {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* --- 2. WHO WE ARE / STORY SECTION --- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.story-media {
  position: relative;
  display: flex;
  min-width: 0;
  width: 100%;
  height: 100%;
  align-self: stretch;
}

.story-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: softFloat 7.4s ease-in-out -2.4s infinite;
  will-change: transform;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s ease;
}

.story-image-wrap:hover img {
  transform: scale(1.02);
}

.story-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--primary-200);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.story-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-100);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-badge .badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neutral-800);
}

.story-content h2 {
  margin-bottom: 20px;
  line-height: 1.25;
}

.story-content .lead {
  font-size: 1.12rem;
  color: var(--neutral-700);
  margin-bottom: 18px;
  line-height: 1.65;
}

.story-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.story-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.story-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--neutral-800);
}

.story-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-500);
  flex-shrink: 0;
}

/* --- 3. MISSION & VISION SECTION --- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-50);
  color: var(--primary-600);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mv-card:hover .mv-icon-wrap {
  transform: scale(1.08) rotate(3deg);
  background: var(--primary-100);
}

.mv-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.mv-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--neutral-900);
}

.mv-card p {
  font-size: 1.04rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mv-bullet-wrap {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.mv-bullet-wrap li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--neutral-700);
}

.mv-bullet-wrap li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-500);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- 4. CORE VALUES --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.value-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.value-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--primary-300);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.value-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-soft);
}

.value-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-card-modern:hover .value-card-img img {
  transform: scale(1.05);
}

.value-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.value-card-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
}

.value-card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- 5. CENTRAL ALTERNATING TIMELINE --- */
.journey-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.timeline-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Central vertical stem line */
.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-400) 0%, var(--accent-500) 50%, var(--primary-700) 100%);
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Individual timeline row item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 24px 44px;
  box-sizing: border-box;
}

/* Alternating: 1st Left, 2nd Right, 3rd Left, 4th Right... */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Timeline center dot */
.timeline-dot {
  position: absolute;
  top: 40px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary-500);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -11px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -11px;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.25);
  border-color: var(--accent-500);
  box-shadow: 0 0 0 8px rgba(14, 165, 164, 0.3);
}

/* Timeline Card */
.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-align: left; /* Keep card inner text clean */
}

.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

/* Year Pill */
.timeline-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.timeline-card h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--neutral-900);
}

.timeline-card p {
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Connector pointer arrows */
.timeline-card::after {
  content: "";
  position: absolute;
  top: 36px;
  width: 0;
  height: 0;
  border: 9px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-card::after {
  right: -18px;
  border-left-color: #fff;
}

.timeline-item:nth-child(even) .timeline-card::after {
  left: -18px;
  border-right-color: #fff;
}

/* --- 6. APPROACH & TECHNOLOGY --- */
.approach-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.approach-media {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.approach-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: softFloat 7.8s ease-in-out -4.8s infinite;
  will-change: transform;
}

.approach-frame img {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.approach-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--neutral-900);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.approach-stat-card .big {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary-300), var(--accent-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.approach-stat-card .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.discipline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.discipline-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
}

.discipline-item:hover {
  background: #fff;
  border-color: var(--primary-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.discipline-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discipline-ico svg {
  width: 18px;
  height: 18px;
}

.discipline-info h5 {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--neutral-900);
}

.discipline-info p {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0;
  line-height: 1.4;
}

/* --- 7. LEADERSHIP TEAM --- */
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Single-leader layout: one balanced, centered profile card */
/* Single-leader layout: unboxed 2-column split grid */
.leader-split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 36px auto 0;
}

.leader-photo-col {
  display: flex;
  justify-content: center;
}

.leader-image-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 122, 77, 0.16);
  border: 4px solid #ffffff;
  background: var(--bg-soft, #f8fafc);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-image-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(15, 122, 77, 0.22);
}

.leader-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-content-col {
  text-align: left;
}

.leader-content-col h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--neutral-900, #0f172a);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.leader-subtitle {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-700, #0f7a4d);
  margin-bottom: 16px;
}

.leader-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.leader-badge {
  font-size: 0.84rem;
  font-weight: 600;
  color: #0284c7;
  background: #e0f2fe;
  padding: 5px 14px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(2, 132, 199, 0.15);
}

.leader-bio {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--text-muted, #475569);
  margin-bottom: 0;
}

@media (max-width: 868px) {
  .leader-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .leader-content-col {
    text-align: center;
  }
  
  .leader-image-frame {
    max-width: 260px;
  }
  
  .leader-badges {
    justify-content: center;
  }
}

/* --- 8. STATS COUNTER BAND --- */
.stats-band-modern {
  background: linear-gradient(160deg, #052a1c 0%, #08402a 60%, #0f172a 100%);
  color: #fff;
  padding: 68px 0;
  position: relative;
  overflow: hidden;
}

.stats-band-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 50% 50%, rgba(52, 211, 153, 0.12), transparent 70%);
}

.stats-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-modern-box {
  text-align: center;
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.stat-modern-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

.stat-modern-box .num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #6ee7b7, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-modern-box .lbl {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* --- 9. PARTNERSHIP CARDS --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.partner-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.partner-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-ico svg {
  width: 26px;
  height: 26px;
}

.partner-card-modern h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--neutral-900);
}

.partner-card-modern p {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--text-muted);
}

/* --- 10. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .team-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .story-split, .approach-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-image-wrap,
  .story-image-wrap img {
    min-height: 300px;
  }
  .approach-frame,
  .approach-frame img {
    min-height: 300px;
  }
  .approach-stat-card {
    position: static;
    margin-top: 16px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .stats-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE TIMELINE CONVERSION (Single column, left aligned) */
@media (max-width: 768px) {
  .timeline-wrap {
    padding: 20px 0;
  }

  /* Shift line from center (50%) to left (24px) */
  .timeline-wrap::before {
    left: 24px;
  }

  /* Expand items to 100% width, aligned to the left of the screen */
  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding: 14px 0 14px 58px !important;
    text-align: left !important;
  }

  /* Position dot along the left line */
  .timeline-dot {
    left: 13px !important;
    right: auto !important;
    top: 34px !important;
  }

  /* Direction pointer arrows on cards point left towards line */
  .timeline-card::after {
    left: -18px !important;
    right: auto !important;
    border-right-color: #fff !important;
    border-left-color: transparent !important;
  }
}

@media (max-width: 520px) {
  .stats-modern-grid {
    grid-template-columns: 1fr;
  }
  .team-grid-modern {
    grid-template-columns: 1fr;
  }
  .story-features-list, .discipline-grid {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 70px 0 60px;
  }
  .about-hero-frame img {
    min-height: 300px;
  }
  .hero-floating-badge {
    position: static;
    margin-top: 14px;
    border-radius: 12px;
  }
}
