/*
 * Nutra Society — Link na Bio (estático, caminhos relativos).
 * Funciona em qualquer subpasta: basta soltar a pasta no host e abrir.
 */

:root {
  --font-dm: "DM Sans";
  --font-caveat: "Caveat";
}

html,
body {
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.bio {
  /* ── Paleta: ROXO ESCURO + DOURADO herói (detalhes dourados mantidos) ── */
  --bg: #1b1026; /* Roxo escuro */
  --card-bg: #251633; /* Roxo profundo */
  --accent: #c8a96b; /* Dourado (herói) */
  --accent2: #e6cfa1; /* Dourado claro */
  --wine: #6a3f9c; /* roxo (detalhe) */
  --wine-bright: #8a5fc0; /* roxo claro */
  --red: #7a4aa8; /* roxo (detalhe) */
  --textinv: #ffffff;
  --mutedinv: #c3b4d6; /* lavanda suave */
  --borderdk: #33224a; /* borda roxo */
  --page-navy: #100719; /* fundo roxo escuro */

  position: relative;
  min-height: 100vh;
  background-color: var(--page-navy);
  /* base escura + zonas levemente mais claras (glows roxos sutis, bem de leve) */
  background-image:
    radial-gradient(70% 55% at 50% -10%, rgba(120, 60, 190, 0.42) 0%, transparent 60%),
    radial-gradient(42% 36% at 16% 24%, rgba(110, 54, 176, 0.2) 0%, transparent 72%),
    radial-gradient(46% 40% at 86% 60%, rgba(96, 46, 156, 0.18) 0%, transparent 72%),
    radial-gradient(44% 42% at 58% 102%, rgba(84, 40, 140, 0.16) 0%, transparent 70%);
  background-attachment: fixed;
  color: var(--textinv);
  font-family: var(--font-dm), system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bio *,
.bio *::before,
.bio *::after {
  box-sizing: border-box;
}

/* ─── BACKGROUND: blobs + particles ─── */
.bio .blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.bio .blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(140, 70, 200, 0.24) 0%, transparent 70%);
  top: -120px;
  right: -100px;
  animation: bioBlobFloat 8s ease-in-out infinite;
}
.bio .blob-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(120, 60, 180, 0.2) 0%, transparent 70%);
  bottom: 80px;
  left: -80px;
  animation: bioBlobFloat 10s ease-in-out infinite reverse;
}
.bio .blob-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(100, 50, 160, 0.16) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: bioBlobFloat 12s ease-in-out infinite;
}
@keyframes bioBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.bio #bio-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bio .particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 194, 134, 0.95) 0%, rgba(200, 169, 107, 0.5) 45%, transparent 72%);
  box-shadow: 0 0 8px rgba(200, 169, 107, 0.55);
  animation: bioFloatParticle linear infinite;
}
@keyframes bioFloatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 0.8; }
  100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

/* ─── MAIN ─── */
.bio .bio-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 20px 90px;
}
/* centraliza verticalmente quando a tela comporta (como o layout de referência) */
@media (min-height: 720px) and (min-width: 640px) {
  .bio .bio-main { justify-content: center; }
}

/* faixa web Gucci no topo */
.bio .bio-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 5;
  background: linear-gradient(90deg, transparent, #8a6238 22%, #e6cfa1 50%, #8a6238 78%, transparent);
}

/* ─── HEADER ─── */
.bio .profile-header {
  text-align: center;
  margin-bottom: 40px;
  animation: bioFadeUp 0.8s ease 0.2s both;
}
.bio .avatar-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent2), var(--accent), var(--accent2));
  background-size: 200% auto;
  animation: bioAccentFlow 3s linear infinite, bioRingPulse 3s ease-in-out infinite;
}
@keyframes bioRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 107, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(200, 169, 107, 0); }
}
.bio .avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--alpine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  overflow: hidden;
}
.bio .avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.bio .profile-name {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.bio .profile-name b {
  background: linear-gradient(135deg, var(--accent2), var(--accent), var(--accent2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bioAccentFlow 3s linear infinite;
  font-weight: 800;
}
.bio .profile-bio {
  font-family: var(--font-caveat), cursive;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bio .profile-handle {
  font-family: var(--font-dm), system-ui, sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ─── CITAÇÃO ─── */
.bio .bio-quote {
  font-family: var(--font-caveat), cursive;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  margin: 26px 0 0;
  letter-spacing: 0.01em;
  animation: bioFadeUp 0.8s ease 0.6s both;
}

/* ─── CARDS ─── */
.bio .cards-wrapper {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: bioFadeUp 0.8s ease 0.4s both;
}
.bio .card-row {
  display: flex;
  gap: 14px;
}

.bio .card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  background: var(--card-bg);
  border: 1px solid var(--borderdk);
  text-decoration: none;
  display: block;
  color: var(--textinv);
}
.bio .card:visited { color: var(--textinv); }
/* glow border on hover */
.bio .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.1) 0%, rgba(150, 100, 50, 0.07) 50%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* corner brackets — dourados */
.bio .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(200, 169, 107, 0.65) 2px, transparent 2px) top left / 18px 18px no-repeat,
    linear-gradient(to bottom, rgba(200, 169, 107, 0.65) 2px, transparent 2px) top left / 18px 18px no-repeat,
    linear-gradient(to left, rgba(200, 169, 107, 0.65) 2px, transparent 2px) top right / 18px 18px no-repeat,
    linear-gradient(to bottom, rgba(200, 169, 107, 0.65) 2px, transparent 2px) top right / 18px 18px no-repeat,
    linear-gradient(to right, rgba(200, 169, 107, 0.65) 2px, transparent 2px) bottom left / 18px 18px no-repeat,
    linear-gradient(to top, rgba(200, 169, 107, 0.65) 2px, transparent 2px) bottom left / 18px 18px no-repeat,
    linear-gradient(to left, rgba(200, 169, 107, 0.65) 2px, transparent 2px) bottom right / 18px 18px no-repeat,
    linear-gradient(to top, rgba(200, 169, 107, 0.65) 2px, transparent 2px) bottom right / 18px 18px no-repeat;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}
.bio .card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 20px 60px rgba(200, 169, 107, 0.14), 0 0 0 1px rgba(200, 169, 107, 0.28), 0 0 40px rgba(150, 100, 50, 0.28);
}
.bio .card:hover::before { opacity: 1; }
.bio .card:hover::after { opacity: 1; }
.bio .card:active { transform: translateY(-2px) scale(1.005); }

.bio .card-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bio .card-wide { width: 100%; }
.bio .card-wide .card-inner { padding: 34px 32px; min-height: 300px; }
.bio .card-small { flex: 1; }
.bio .card-small .card-inner {
  padding: 30px 30px;
  min-height: 288px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

/* glows internos */
.bio .card-bg-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bio .card-wide .card-bg-glow {
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(150, 100, 50, 0.42) 0%, rgba(200, 169, 107, 0.1) 50%, transparent 100%);
}
.bio .card-small:nth-child(1) .card-bg-glow {
  background: radial-gradient(ellipse 90% 90% at 90% 90%, rgba(200, 169, 107, 0.16) 0%, rgba(150, 100, 50, 0.12) 60%, transparent 100%);
}
.bio .card-small:nth-child(2) .card-bg-glow {
  background: radial-gradient(ellipse 90% 90% at 90% 90%, rgba(196, 140, 70, 0.18) 0%, rgba(200, 169, 107, 0.08) 60%, transparent 100%);
}
.bio .card-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* texto */
.bio .card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mutedinv);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bio .card-title {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.bio .card-small .card-title { font-size: clamp(1.15rem, 2.4vw, 1.45rem); margin-bottom: 0; }

/* CTA dourado */
.bio .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 50%, var(--accent2) 100%);
  background-size: 200% auto;
  border: none;
  color: #0b0b0b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: filter 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(200, 169, 107, 0.36), 0 0 48px rgba(200, 169, 107, 0.12);
  animation: bioAccentFlow 3s linear infinite;
}
.bio .card:hover .card-cta {
  filter: brightness(1.08);
  box-shadow: 0 0 20px rgba(200, 169, 107, 0.5), 0 0 60px rgba(200, 169, 107, 0.2);
}
.bio .card-cta svg { flex-shrink: 0; transition: transform 0.25s ease; }
.bio .card:hover .card-cta svg { transform: translate(2px, -2px); }

/* shine */
.bio .card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  z-index: 4;
  pointer-events: none;
  transition: left 0.6s ease;
}
.bio .card:hover .card-shine { left: 150%; }

/* social pills */
.bio .social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  animation: bioFadeUp 0.8s ease 0.6s both;
}
.bio .social-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--borderdk);
  color: var(--mutedinv);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}
.bio .social-pill:hover {
  background: rgba(200, 169, 107, 0.08);
  border-color: rgba(200, 169, 107, 0.3);
  color: var(--accent);
  transform: translateY(-2px);
}

@keyframes bioFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bioAccentFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* bg dos cards com imagem — PLACEHOLDERS: troque por assets/bg-canal.jpg e assets/bg-curso.jpg */
.bio .card-canal {
  background:
    linear-gradient(90deg, rgba(16, 7, 25, 0.9) 0%, rgba(16, 7, 25, 0.42) 32%, rgba(16, 7, 25, 0) 58%),
    url("/kayo/assets/bg-canal.png");
  background-size: cover;
  background-position: center 45%;
}
.bio .card-curso {
  background:
    linear-gradient(90deg, rgba(16, 7, 25, 0.86) 0%, rgba(16, 7, 25, 0.5) 44%, rgba(16, 7, 25, 0.05) 74%),
    url("/kayo/assets/bg-curso.png");
  background-size: cover;
  background-position: 60% 22%;
}
/* ─── CARD MENTORIA — paleta PRATA/PLATINA (destaque pela cor, não pelo glow) ─── */
.bio .card-mentoria {
  /* troca o dourado por prata só dentro deste card:
     .card-cta e .card-tag herdam via var(), o resto é sobrescrito abaixo */
  --accent: #b7c2d2;
  --accent2: #f4f7fb;

  border-color: rgba(198, 212, 232, 0.3);
  background:
    /* véu escuro frio à esquerda, pro texto respirar */
    linear-gradient(90deg, rgba(9, 12, 20, 0.92) 0%, rgba(9, 12, 20, 0.56) 44%, rgba(9, 12, 20, 0.08) 74%),
    /* filtro azul-aço em MULTIPLY: esfria e escurece a foto quente.
       Camada translúcida por cima clareava os pretos e dava clarão. */
    linear-gradient(0deg, #adbfd8, #adbfd8),
    url("/kayo/assets/bg-mentoria.jpg");
  background-blend-mode: normal, multiply, normal;
  background-size: cover;
  background-position: center 28%;
}
/* glow interno frio no lugar do âmbar do .card-wide —
   tom profundo, não claro, senão vira clarão em cima do rosto */
.bio .card-mentoria .card-bg-glow {
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(48, 74, 120, 0.2) 0%, rgba(60, 88, 138, 0.08) 50%, transparent 100%);
}
/* véu de hover em prata */
.bio .card-mentoria::before {
  background: linear-gradient(135deg, rgba(220, 232, 248, 0.12) 0%, rgba(150, 172, 205, 0.08) 50%, transparent 100%);
}
/* brackets dos cantos em prata */
.bio .card-mentoria::after {
  background:
    linear-gradient(to right, rgba(226, 236, 250, 0.7) 2px, transparent 2px) top left / 18px 18px no-repeat,
    linear-gradient(to bottom, rgba(226, 236, 250, 0.7) 2px, transparent 2px) top left / 18px 18px no-repeat,
    linear-gradient(to left, rgba(226, 236, 250, 0.7) 2px, transparent 2px) top right / 18px 18px no-repeat,
    linear-gradient(to bottom, rgba(226, 236, 250, 0.7) 2px, transparent 2px) top right / 18px 18px no-repeat,
    linear-gradient(to right, rgba(226, 236, 250, 0.7) 2px, transparent 2px) bottom left / 18px 18px no-repeat,
    linear-gradient(to top, rgba(226, 236, 250, 0.7) 2px, transparent 2px) bottom left / 18px 18px no-repeat,
    linear-gradient(to left, rgba(226, 236, 250, 0.7) 2px, transparent 2px) bottom right / 18px 18px no-repeat,
    linear-gradient(to top, rgba(226, 236, 250, 0.7) 2px, transparent 2px) bottom right / 18px 18px no-repeat;
}
/* hover em prata */
.bio .card-mentoria:hover {
  box-shadow:
    0 20px 60px rgba(180, 200, 230, 0.14),
    0 0 0 1px rgba(226, 236, 250, 0.36),
    0 0 40px rgba(140, 165, 205, 0.3);
}
/* CTA e tarja: sombra fria no lugar da dourada */
.bio .card-mentoria .card-cta {
  color: #0d1219;
  box-shadow: 0 0 14px rgba(214, 228, 248, 0.34), 0 0 48px rgba(214, 228, 248, 0.12);
}
.bio .card-mentoria:hover .card-cta {
  box-shadow: 0 0 20px rgba(214, 228, 248, 0.5), 0 0 60px rgba(214, 228, 248, 0.2);
}
.bio .card-mentoria .card-tag {
  color: #0d1219;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 14px rgba(214, 228, 248, 0.32);
}
/* label em cinza-azulado frio no lugar da lavanda */
.bio .card-mentoria .card-label {
  color: #b8c6da;
}

/* ─── DESTAQUE DOURADO — card EURO START ─── */
/* borda dourada sólida permanente */
.bio .card-curso {
  border: 2px solid rgba(214, 182, 118, 0.75);
  animation: bioGoldHalo 3.2s ease-in-out infinite;
}
/* brackets dos cantos sempre acesos e com glow (nos outros só aparecem no hover) */
.bio .card-curso::after {
  opacity: 1;
  filter: drop-shadow(0 0 7px rgba(230, 207, 161, 0.85));
}
/* véu dourado permanente — leve, só pra puxar o tom (forte demais embaça a foto) */
.bio .card-curso::before {
  opacity: 0.35;
}
/* halo pulsante permanente (a animação sobrescreve o box-shadow base) */
@keyframes bioGoldHalo {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(200, 169, 107, 0.45),
      0 0 26px rgba(200, 169, 107, 0.3),
      0 0 64px rgba(200, 169, 107, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(230, 207, 161, 0.8),
      0 0 60px rgba(200, 169, 107, 0.58),
      0 0 130px rgba(200, 169, 107, 0.3);
  }
}
/* no hover a animação sai pra não brigar com o box-shadow do :hover */
.bio .card-curso:hover {
  animation: none;
  box-shadow:
    0 22px 70px rgba(200, 169, 107, 0.28),
    0 0 0 2px rgba(230, 207, 161, 0.85),
    0 0 80px rgba(200, 169, 107, 0.6);
}

/* shine dourado varrendo sozinho (independente do .card-shine do hover) */
.bio .card-shine-gold {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 55%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(230, 207, 161, 0.14) 47%,
    rgba(255, 243, 214, 0.3) 51%,
    rgba(230, 207, 161, 0.14) 55%,
    transparent 64%
  );
  z-index: 4;
  pointer-events: none;
  animation: bioGoldSweep 4.5s ease-in-out infinite;
}
@keyframes bioGoldSweep {
  0% { left: -100%; }
  55%, 100% { left: 170%; }
}

/* ─── TARJA DE ESCASSEZ ─── */
.bio .card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 50%, var(--accent2) 100%);
  background-size: 200% auto;
  animation: bioAccentFlow 3s linear infinite;
  color: #0b0b0b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), 0 0 14px rgba(200, 169, 107, 0.3);
  pointer-events: none;
}

/* selo no canto inferior direito do card */
.bio .card-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  width: clamp(120px, 24%, 168px);
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.bio .card-badge img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
/* sombreado por cima do selo — tira o excesso de destaque */
.bio .card-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}
/* legibilidade do texto sobre foto sem escurecer a imagem toda */
.bio .card-text .card-title,
.bio .card-text .card-label,
.bio .card-small .card-title,
.bio .card-small .card-label {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 560px) {
  .bio .bio-main { padding: 40px 16px 70px; justify-content: flex-start; }
  .bio .cards-wrapper { gap: 12px; }
  .bio .card-wide .card-inner { padding: 22px 20px; min-height: 150px; }
  .bio .card-wide .card-title { font-size: 1.5rem; margin-bottom: 12px; }
  .bio .card-small .card-inner { padding: 20px 20px; min-height: 150px; justify-content: center; gap: 14px; }
  .bio .card-small .card-title { font-size: 1.3rem; }
  .bio .card-row { flex-direction: column; gap: 12px; }
  .bio .card-small { flex: none; width: 100%; }
  .bio .card-tag {
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    font-size: 0.56rem;
    letter-spacing: 0.09em;
  }
}
