/* ============================================================
   PIRRY PRINT – css/about.css
   Estilos exclusivos para about.html
   Se carga DESPUÉS de styles.css para extender sin sobreescribir
   ============================================================ */

/* ----------------------------------------------------------------
   //about hero
   ---------------------------------------------------------------- */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  /* img/about-hero-bg.jpg */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.1s linear;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.75) 55%,
    rgba(229,25,25,0.12) 100%
  );
}

/* //ruido de textura sobre el hero */
.about-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.about-hero__tag { margin-bottom: 1.5rem; }

/* //título hero */
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.9;
  margin-bottom: 1.75rem;
}
.about-hero__title--outline {
  display: block;
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
  text-shadow: 0 0 60px rgba(229,25,25,0.2);
}
.about-hero__title--accent {
  display: block;
  color: var(--red);
  text-shadow: 0 0 80px var(--red-glow);
}
.about-hero__title--light {
  display: block;
  color: var(--white);
}

.about-hero__subtitle {
  font-size: 1.15rem;
  color: var(--white-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* //chips de datos rápidos */
.about-hero__chips {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-2);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.45rem 1rem;
  border-radius: 99px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.chip i { color: var(--red); font-size: 0.8rem; }
.chip:hover { background: rgba(229,25,25,0.12); border-color: rgba(229,25,25,0.4); }

/* //scroll mouse */
.about-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.about-hero__scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.about-hero__scroll-dot {
  width: 4px;
  height: 7px;
  background: var(--red);
  border-radius: 99px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.d-none-mobile { display: inline; }

/* ----------------------------------------------------------------
   //about intro
   ---------------------------------------------------------------- */
.about-intro {
  padding: 7rem 0;
  background: var(--black-2);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

/* //lado visual */
.about-intro__visual {
  position: relative;
}
.about-intro__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-intro__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-intro__img-wrap:hover img { transform: scale(1.04); }

/* //badge flotante "18 años" */
.about-intro__img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 30px var(--red-glow);
  animation: badgePulse 3s ease infinite;
  z-index: 2;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 30px var(--red-glow); }
  50%       { box-shadow: 0 4px 50px rgba(229,25,25,0.6); }
}
.about-intro__img-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.about-intro__img-badge-text {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* //imagen pequeña superpuesta */
.about-intro__img-small {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--black-2);
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-intro__img-small img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* //lado texto */
.about-intro__text .section-title { margin: 0.75rem 0 1rem; }
.about-intro__text p { color: var(--gray); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.about-intro__text p strong { color: var(--white); }

/* //pilares misión/visión */
.about-intro__pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.pillar:hover { border-color: rgba(229,25,25,0.3); background: var(--black-4); }
.pillar > i { font-size: 1.25rem; margin-top: 2px; flex-shrink: 0; }
.pillar strong { display: block; font-family: var(--font-accent); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.pillar span { font-size: 0.88rem; color: var(--gray); }

/* ----------------------------------------------------------------
   //about numbers
   ---------------------------------------------------------------- */
.about-numbers {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.about-numbers__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229,25,25,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
  text-align: center;
}
/* ── Reveal base (tarjetas, timeline, equipo) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.55s cubic-bezier(0.16,1,0.3,1),
    transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.number-card {
  padding: 2rem 1rem;
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  transition:
    opacity  0.55s cubic-bezier(0.16,1,0.3,1),
    transform 0.55s cubic-bezier(0.16,1,0.3,1),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.number-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.number-card:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-red); }
.number-card:hover::before { transform: scaleX(1); }
.number-card__icon {
  width: 50px; height: 50px;
  background: rgba(229,25,25,0.1);
  border: 1px solid rgba(229,25,25,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  margin: 0 auto 1rem;
  transition: all var(--transition);
}
.number-card:hover .number-card__icon { background: var(--red); color: var(--white); }
.number-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.number-card__suffix {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
}
.number-card p {
  color: var(--gray);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   //timeline
   ---------------------------------------------------------------- */
.timeline-section {
  padding: 7rem 0;
  background: var(--black-2);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* //línea central */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red) 10%, var(--red) 90%, transparent);
}

/* //item genérico */
.timeline__item {
  display: flex;
  justify-content: flex-end;
  padding: 0 calc(50% + 3rem) 3.5rem 0;
  position: relative;
}
.timeline__item--right {
  justify-content: flex-start;
  padding: 0 0 3.5rem calc(50% + 3rem);
}

/* //dot central */
.timeline__dot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--black);
  border: 3px solid var(--red);
  border-radius: 50%;
  z-index: 2;
  transition: all var(--transition);
}
.timeline__dot--present {
  width: 24px;
  height: 24px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(229,25,25,0.25), 0 0 20px var(--red-glow);
  animation: dotGlow 2s ease infinite;
}
@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(229,25,25,0.25), 0 0 20px var(--red-glow); }
  50%       { box-shadow: 0 0 0 10px rgba(229,25,25,0.15), 0 0 35px var(--red-glow); }
}
.timeline__item:hover .timeline__dot { background: var(--red); transform: translateX(-50%) scale(1.3); }

/* //tarjeta de contenido */
.timeline__content {
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.timeline__content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.timeline__item:hover .timeline__content {
  border-color: rgba(229,25,25,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.timeline__item:hover .timeline__content::before { transform: scaleX(1); }
.timeline__content--present {
  border-color: rgba(229,25,25,0.35);
  background: linear-gradient(135deg, var(--black-3), rgba(229,25,25,0.05));
}
.timeline__content--present::before { transform: scaleX(1); }

/* //año */
.timeline__year {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.timeline__year--present { font-size: 1.1rem; }

/* //icono del evento */
.timeline__icon {
  width: 44px; height: 44px;
  background: rgba(229,25,25,0.12);
  border: 1px solid rgba(229,25,25,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  transition: all var(--transition);
}
.timeline__item:hover .timeline__icon { background: var(--red); color: var(--white); }

.timeline__content h3 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}

/* //icono representativo en lugar de imagen en el timeline */
.timeline__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(229,25,25,0.06);
  border: 1px solid rgba(229,25,25,0.15);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.timeline__icon-wrap i {
  font-size: 2.8rem;
  color: var(--red);
  opacity: 0.75;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.timeline__item:hover .timeline__icon-wrap {
  background: rgba(229,25,25,0.12);
  border-color: rgba(229,25,25,0.35);
}
.timeline__item:hover .timeline__icon-wrap i {
  transform: scale(1.15);
  opacity: 1;
}
/* Variante especial para el hito "hoy" */
.timeline__icon-wrap--present {
  background: rgba(229,25,25,0.1);
  border-color: rgba(229,25,25,0.35);
  box-shadow: 0 0 20px rgba(229,25,25,0.1);
}
.timeline__icon-wrap--present i {
  opacity: 1;
  animation: iconPulse 2.5s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 4px rgba(229,25,25,0.4)); }
  50%       { transform: scale(1.1); filter: drop-shadow(0 0 14px rgba(229,25,25,0.7)); }
}

.timeline__content p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* //etiqueta de hito */
.timeline__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229,25,25,0.1);
  border: 1px solid rgba(229,25,25,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.timeline__tag--special {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  animation: tagPulse 2s ease infinite;
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,25,25,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(229,25,25,0); }
}

/* ----------------------------------------------------------------
   //team section
   ---------------------------------------------------------------- */
.team-section {
  padding: 7rem 0;
  background: var(--black);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-red); border-color: rgba(229,25,25,0.3); }
.team-card__photo {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.team-card:hover .team-card__photo img { transform: scale(1.06); filter: grayscale(0%); }

/* //overlay con redes al hacer hover */
.team-card__social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(229,25,25,0.9), transparent);
  padding: 2rem 1.25rem 1rem;
  display: flex;
  gap: 0.6rem;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}
.team-card:hover .team-card__social { transform: translateY(0); }
.team-card__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.team-card__social a:hover { background: var(--white); color: var(--red); }

.team-card__body { padding: 1.5rem; }
.team-card__body h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.team-card__body span { font-size: 0.82rem; color: var(--red); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.75rem; }
.team-card__body p  { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ----------------------------------------------------------------
   //culture section
   ---------------------------------------------------------------- */
.culture-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.culture-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.culture-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.97) 100%);
}
.culture-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.culture-section__text p { color: var(--gray); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.culture-section__text p strong { color: var(--white); }

/* //valores culturales */
.culture-values { display: flex; flex-direction: column; gap: 1.25rem; }
.culture-value {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: default;
}
.culture-value:hover { background: rgba(229,25,25,0.07); border-color: rgba(229,25,25,0.25); transform: translateX(8px); }
.culture-value__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(229,25,25,0.15);
  line-height: 1;
  min-width: 40px;
  transition: color var(--transition);
}
.culture-value:hover .culture-value__num { color: rgba(229,25,25,0.35); }
.culture-value__body h4 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.culture-value__body p { font-size: 0.88rem; color: var(--gray); }

/* ----------------------------------------------------------------
   //workshop gallery
   ---------------------------------------------------------------- */
.workshop-gallery {
  padding: 7rem 0;
  background: var(--black-2);
}
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}
.workshop-grid__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.workshop-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.workshop-grid__item:hover img { transform: scale(1.07); }
.workshop-grid__item--large {
  grid-row: span 2;
  grid-column: span 1;
}
.workshop-grid__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  padding: 1.5rem 1rem 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}
.workshop-grid__item:hover .workshop-grid__label { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------
   //about cta
   ---------------------------------------------------------------- */
.about-cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.about-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(229,25,25,0.1) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(229,25,25,0.04) 100%);
  pointer-events: none;
}
.about-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.about-cta__content .section-title { margin: 0.75rem 0 1.25rem; }
.about-cta__content p { color: var(--gray); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; }
.about-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   //responsive about
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__img-small { display: none; }
  .about-intro__img-wrap img { height: 380px; }

  .culture-section__grid { grid-template-columns: 1fr; gap: 3rem; }

  /* //timeline responsive */
  .timeline::before { left: 24px; }
  .timeline__item,
  .timeline__item--right {
    justify-content: flex-start;
    padding: 0 0 3rem 4.5rem;
  }
  .timeline__dot {
    left: 24px;
    transform: translateX(-50%);
  }
  .timeline__item:hover .timeline__dot { transform: translateX(-50%) scale(1.3); }
  .timeline__content { max-width: 100%; }
}

@media (max-width: 768px) {
  .about-hero__title { font-size: clamp(3.5rem, 15vw, 6rem); }
  .d-none-mobile { display: none; }

  .about-numbers__grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .workshop-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .workshop-grid__item--large { grid-row: span 1; grid-column: span 2; }

  .about-intro__visual { display: none; }
  .about-intro__text { text-align: center; }
  .about-intro__pillars { text-align: left; }
}

@media (max-width: 480px) {
  .about-hero__chips { flex-direction: column; align-items: center; }
  .about-numbers__grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-grid__item--large { grid-column: span 1; }
  .about-cta__btns { flex-direction: column; align-items: center; }
}