@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&family=Signika+Negative:wght@400;600;700&display=swap");

body.about-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fdfee9;
  color: #0f1d38;
  font-family: "Signika Negative", system-ui, -apple-system, Segoe UI, sans-serif;
}

.about-main {
  flex: 1;
  padding: 2rem 0 4rem;
  background: #9bd4e4;
}

.about-shell {
  width: min(1050px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(20,38,63,.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19,35,58,.98) 0%, rgba(31,58,95,.94) 54%, rgba(151,171,186,.78) 100%);
  box-shadow: 0 20px 50px rgba(18,34,56,.14);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -40%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,254,233,.2) 0%, rgba(253,254,233,0) 68%);
  pointer-events: none;
}

.about-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 .65rem;
  color: rgba(253,254,233,.82);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 .8rem;
  color: #fdfee9;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .98;
  font-family: "Racing Sans One", sans-serif;
  font-weight: 500;
}

.about-hero p:not(.about-eyebrow) {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 68ch;
  color: rgba(253,254,233,.92);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.6;
}

.about-card,
.about-mini-card {
  border: 2px solid rgba(4,38,152,.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(246,248,251,.98) 100%);
  box-shadow: 0 14px 34px rgba(18,34,56,.07);
}

.about-story-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  columns: 2 320px;
  column-gap: 2.2rem;
}

.about-story-card p {
  break-inside: avoid;
  margin: 0 0 1rem;
  color: #263751;
  font-size: 1.03rem;
  line-height: 1.68;
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-mini-card {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
}

.about-story-card h2,
.about-mini-card h2 {
  display: inline-flex;
  align-items: center;
  margin: 0 0 .9rem;
  padding: .48rem .8rem;
  border: 2px solid rgba(4,38,152,.18);
  border-radius: 999px;
  background: rgba(155,212,228,.42);
  color: #042698;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  font-family: "Racing Sans One", sans-serif;
  font-weight: 500;
}

.about-mini-card p {
  margin: 0;
  color: #263751;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .about-main {
    padding: 1.25rem 0 3rem;
  }

  .about-shell {
    width: min(100% - 1rem, 1050px);
    gap: .85rem;
  }

  .about-hero,
  .about-card,
  .about-mini-card {
    border-radius: 20px;
  }

  .about-story-card {
    columns: 1;
    padding: 1.15rem;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
}
