.about-whale-layout {
  display: grid;
  gap: 24px;
}

.about-whale-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.95fr);
  gap: 24px;
  padding: 26px;
}

.about-whale-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.about-whale-intro__title {
  margin: 18px 0 12px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-h1);
}

.about-whale-intro__copy {
  display: grid;
  gap: 14px;
}

.about-whale-intro__copy p {
  font-size: 14px;
  line-height: 1.86;
  color: var(--text-secondary);
}

.about-whale-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.about-whale-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-whale-stat {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.about-whale-stat strong,
.about-whale-stat span,
.about-whale-stat small {
  display: block;
}

.about-whale-stat strong {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-whale-stat span {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-h1);
}

.about-whale-stat small {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-whale-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-whale-panel {
  padding: 22px 20px;
}

.about-whale-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-tag);
  color: var(--gold-light);
  flex-shrink: 0;
}

.about-whale-panel__icon svg {
  width: var(--icon-size-card);
  height: var(--icon-size-card);
  stroke-width: var(--icon-stroke-card);
}

.about-whale-panel h2 {
  margin: 16px 0 10px;
  font-size: 16px;
  color: var(--text-h1);
}

.about-whale-panel p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-whale-editorial {
  padding: 28px;
  display: grid;
  gap: 22px;
}

.about-whale-editorial__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.about-whale-editorial__head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-h1);
}

.about-whale-editorial__head p {
  margin-top: 8px;
  max-width: 760px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-whale-editorial__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  background: var(--bg-tag-active);
  border: 1px solid var(--blue-alpha-20);
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.about-whale-editorial__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.about-whale-editorial__copy {
  display: grid;
  gap: 14px;
}

.about-whale-editorial__copy p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-body);
}

.about-whale-editorial__quote {
  margin: 4px 0;
  padding: 18px 20px;
  border-left: 3px solid rgba(255, 196, 0, 0.52);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-h1);
  font-size: 16px;
  line-height: 1.72;
}

.about-whale-editorial__stack {
  display: grid;
  gap: 14px;
}

.about-whale-note {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.about-whale-note strong,
.about-whale-note span {
  display: block;
}

.about-whale-note strong {
  font-size: 13px;
  color: var(--text-h1);
}

.about-whale-note span {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-whale-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-whale-list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-whale-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.68);
}

.about-whale-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}

.about-whale-cta__copy h2 {
  margin: 0;
  font-size: 18px;
  color: var(--text-h1);
}

.about-whale-cta__copy p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-whale-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1180px) {
  .about-whale-intro,
  .about-whale-editorial__body,
  .about-whale-panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-whale-intro,
  .about-whale-editorial,
  .about-whale-cta {
    padding: 22px 20px;
  }

  .about-whale-editorial__head,
  .about-whale-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-whale-cta__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .about-whale-layout {
    gap: 18px;
  }

  .about-whale-intro__title {
    font-size: 22px;
  }

  .about-whale-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-whale-editorial__head h2,
  .about-whale-cta__copy h2 {
    font-size: 18px;
  }

  .about-whale-editorial__quote {
    font-size: 15px;
  }
}
