@font-face {
  font-family: 'VAGRounded';
  src: url('fonts/VAG Rounded Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   LAIKA BLOG — SHARED STYLES
   Primary: #613e89 (LAIKA Purple) · Accent: #FFB800 (Amber)
   Fonts: Playfair Display (headings) · Montserrat (body)
   ============================================================ */

/* === LAIKA BRAND FONT === */
.laika-brand {
  font-family: 'VAGRounded', sans-serif;
  font-weight: bold;
}

/* === TOKENS === */
:root {
  --purple:    #613e89;
  --purple-dk: #4a2d6b;
  --purple-lt: #ac97cf;
  --amber:     #FFB800;
  --light:     #faf8fc;
  --white:     #ffffff;
  --muted:     #7c6d8a;
  --soft:      #f5f0fb;
  --border:    #e2d5f0;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: var(--purple-dk);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* === HEADER === */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--amber);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 120px;
  box-shadow: 0 2px 24px rgba(97,62,137,.1);
}
.h-logo img {
  height: 115px; width: auto;
  transition: opacity .2s, transform .2s;
}
.h-logo:hover img { opacity: .85; transform: scale(1.02); }

.h-nav { display: flex; align-items: center; gap: 2px; }
.h-nav a {
  font-size: 14px; font-weight: 600; color: var(--purple-dk);
  padding: 9px 16px; border-radius: 50px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.h-nav a:hover, .h-nav a.active {
  background: var(--soft); color: var(--purple);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: .55; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border-radius: 14px; min-width: 170px;
  box-shadow: 0 12px 40px rgba(97,62,137,.18);
  border: 1px solid var(--border); overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 13px 20px;
  font-size: 14px; font-weight: 600; color: var(--purple-dk);
  transition: background .15s;
}
.dropdown a:hover { background: var(--soft); color: var(--purple); }

/* Nav CTAs */
.btn-store {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 11px 24px !important; border-radius: 50px;
  font-weight: 700 !important; font-size: 14px;
  transition: background .2s, transform .15s;
  margin-left: 4px;
}
.btn-store:hover { background: var(--purple-dk) !important; transform: translateY(-1px); }

/* Tiendas — outlined secondary */
.btn-tiendas {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  padding: 10px 20px !important;
  background: transparent !important;
  border: 1.5px solid var(--purple) !important;
  color: var(--purple) !important;
  border-radius: 50px;
  font-size: 13px; font-weight: 700 !important;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
  margin-left: 4px; white-space: nowrap;
}
.btn-tiendas:hover {
  background: var(--soft) !important;
  border-color: var(--purple-dk) !important;
  color: var(--purple-dk) !important;
  transform: translateY(-1px);
}

/* Member — primary CTA */
.btn-member {
  display: inline-block !important;
  padding: 11px 22px !important;
  background: var(--amber) !important;
  color: var(--purple-dk) !important;
  border-radius: 50px;
  font-size: 13px; font-weight: 800 !important;
  letter-spacing: .3px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,184,0,.4) !important;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-left: 4px;
  line-height: 1;
}
.btn-member .laika-brand {
  font-family: 'VAGRounded', sans-serif;
  font-size: 13px;
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: 1px;
}
.btn-member .btn-member-text {
  font-size: 13px;
  vertical-align: middle;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.btn-member:hover {
  background: #e6a600 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(255,184,0,.5) !important;
}

/* Mobile nav overrides */
.mobile-nav .btn-tiendas {
  border-radius: 12px !important;
  justify-content: center;
}
.mobile-nav .btn-member {
  border-radius: 12px !important;
  justify-content: center;
  padding: 13px 22px !important;
}

/* === HAMBURGER / MOBILE NAV === */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--purple); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 199;
  padding: 28px 24px 48px; overflow-y: auto;
  flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 600; color: var(--purple-dk);
  padding: 14px 20px; border-radius: 12px; transition: background .15s;
}
.mobile-nav a:hover { background: var(--soft); color: var(--purple); }
.mobile-nav .m-divider { height: 1px; background: var(--border); margin: 10px 0; }
.mobile-nav .btn-store {
  background: var(--purple) !important; color: var(--white) !important;
  text-align: center; border-radius: 12px !important;
}
.mobile-nav .btn-member {
  background: var(--amber) !important; color: var(--purple-dk) !important;
  text-align: center; border-radius: 12px !important;
  font-weight: 800 !important;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--purple-dk);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
  padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255,184,0,.4);
}
.btn:hover {
  background: #e6a600; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,184,0,.5);
}
.btn-ghost {
  background: transparent; border: 2px solid rgba(255,255,255,.55);
  color: var(--white); box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1); box-shadow: none; transform: translateY(-2px);
}
.btn-ghost .laika-brand {
  vertical-align: middle; display: inline-block; position: relative; top: 1px;
}
.btn-purple {
  background: var(--purple); color: var(--white);
  box-shadow: 0 4px 16px rgba(97,62,137,.35);
}
.btn-purple:hover {
  background: var(--purple-dk); box-shadow: 0 8px 24px rgba(97,62,137,.45);
}

/* === CHIP / LABELS === */
.sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px; display: block;
}
.chip {
  display: inline-block; background: var(--soft); color: var(--purple);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dk) 100%);
  padding: 80px 64px 88px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,.14) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-inner { max-width: 680px; position: relative; z-index: 1; }
.page-hero .sec-label { color: rgba(255,184,0,.85); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p {
  font-size: 16px; color: rgba(255,255,255,.75);
  max-width: 520px; line-height: 1.75;
}

/* === ARTICLE CARD === */
.art-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(97,62,137,.08);
  transition: transform .25s, box-shadow .25s;
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(97,62,137,.16);
}
.art-card-img { height: 260px; overflow: hidden; }
.art-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; transition: transform .4s; }
.art-card:hover .art-card-img img { transform: scale(1.05); }
.art-card-body { padding: 24px; }
.art-card-body h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--purple-dk);
  margin: 10px 0 10px; line-height: 1.35;
}
.art-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.art-card-meta {
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.art-card-body a {
  display: inline-block; margin-top: 14px;
  font-size: 12.5px; font-weight: 700;
  color: var(--purple); text-decoration: none;
  transition: color .2s;
}
.art-card-body a:hover { color: var(--amber); }
.art-card.hidden { display: none; }

/* === MEMBER SECTION (shared) === */
.member-sec {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dk) 100%);
  padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.member-sec .sec-label { color: var(--amber); }
.member-sec h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 10px;
}
.member-sec h2 em { font-style: italic; color: var(--amber); }
.member-sec > div > p {
  font-size: 14px; color: rgba(255,255,255,.72);
  line-height: 1.6; margin-bottom: 14px;
}
.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 0; }
.perk { display: flex; gap: 12px; align-items: flex-start; }
.perk-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--amber); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.perk strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 1px; }
.perk span   { font-size: 12px; color: rgba(255,255,255,.55); }
.member-visual {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 480px;
}
.member-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 480px;
}
.member-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(74,45,107,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
}
.member-card img { height: 38px; width: auto; }
.member-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.member-card span  { font-size: 12px; color: var(--amber); font-weight: 600; }

/* === NEWSLETTER === */
.newsletter { background: var(--soft); padding: 72px 24px; text-align: center; }
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--purple); margin-bottom: 8px;
}
.newsletter p { color: var(--muted); margin-bottom: 32px; font-size: 15px; }
.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 14px 22px; border-radius: 50px;
  border: 2px solid var(--border);
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500;
  outline: none; background: var(--white); color: var(--purple-dk);
  transition: border .2s;
}
.nl-form input:focus { border-color: var(--purple); }
.nl-form input::placeholder { color: var(--purple-lt); }
.nl-form .btn { font-size: 14px; padding: 14px 30px; }

/* === FOOTER === */
footer { background: var(--purple-dk); padding: 72px 64px 36px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 42px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,.45);
  line-height: 1.75; max-width: 240px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  header { padding: 0 24px; height: 100px; }
  .h-logo img { height: 84px; }
  .mobile-nav { top: 100px; }
  .hamburger { display: flex; }
  .h-nav { display: none; }
  .member-sec { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
  .member-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 60px 32px 72px; }
  .articles-section { padding: 60px 24px 60px; }
}
@media (max-width: 640px) {
  header { padding: 0 16px; height: 84px; }
  .h-logo img { height: 68px; }
  .mobile-nav { top: 84px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nl-form { flex-direction: column; }
  .member-sec { padding: 40px 20px; }
  .page-hero { padding: 36px 20px 44px; height: auto !important; min-height: 0 !important; }
  .articles-section { padding: 40px 16px 48px; }
  .articles-grid { grid-template-columns: 1fr !important; }
  .related-grid { grid-template-columns: 1fr !important; }
  .tips-strip { padding: 40px 20px; gap: 24px; }
  .newsletter { padding: 40px 20px; }
  .newsletter h2 { font-size: 1.4rem; }
  .com-body { padding: 40px 16px 60px; }
}

/* ============================================================
   PRODUCT CAROUSEL — artículos (estilo tienda)
   ============================================================ */
.products-section {
  width: 100%; background: #faf8fc;
  border-top: 1px solid #ede8f5; border-bottom: 1px solid #ede8f5;
  padding: 36px 0 44px; margin: 0 0 56px;
}
.products-inner {
  max-width: 720px; margin: 0 auto; padding: 0 24px;
}
.products-head {
  text-align: center; margin-bottom: 24px;
}
.products-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: var(--purple);
  margin: 0 0 6px;
}
.products-store-label {
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: 1px;
}
.products-store-label span { color: var(--purple); font-family: 'VAGRounded', sans-serif; }
.products-scroll {
  display: flex; gap: 16px;
  overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.products-scroll::-webkit-scrollbar { display: none; }

/* Product card */
.pcard {
  flex: 0 0 185px;
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 16px;
  text-decoration: none;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 8px rgba(97,62,137,.07);
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(97,62,137,.15);
}

/* Image area */
.pcard-img {
  width: 100%; height: 150px;
  background: #f5f0fb;
  position: relative; flex-shrink: 0;
  overflow: hidden;
}
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 10px; box-sizing: border-box;
}
.pcard-badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 8px;
  border-radius: 50px; background: var(--purple); color: #fff;
  z-index: 1;
}
.pcard-badge-amber { background: var(--amber); color: #2a1800; }
.pcard-badge-green { background: #27ae60; }

/* Info area */
.pcard-info {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.pcard-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; color: #2d1f3d;
  line-height: 1.35; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-brand {
  font-size: 10px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px;
}
.pcard-cta {
  display: block; text-align: center; margin-top: 10px;
  font-size: 11px; font-weight: 800; font-family: 'Montserrat', sans-serif;
  color: var(--purple); background: #f0eaf8;
  padding: 7px 12px; border-radius: 50px;
  transition: background .2s, color .2s;
}
.pcard:hover .pcard-cta { background: var(--purple); color: #fff; }

@media (max-width: 640px) {
  .pcard { flex: 0 0 148px; }
  .pcard-img { height: 125px; }
  .pcard-name { font-size: 11.5px; }
}

/* ============================================================
   GUIDE CAPTURE — formulario de captura de email + etapa
   ============================================================ */
.guide-capture {
  margin: 40px 0 32px;
  background: linear-gradient(135deg, #f5f0fb 0%, #fdfbff 100%);
  border: 1.5px solid #ddd0f5;
  border-radius: 20px;
  padding: 32px 28px 24px;
  text-align: center;
}
.guide-capture-emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
.guide-capture-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900; color: var(--purple);
  margin: 0 0 6px;
}
.guide-capture-sub {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin: 0 0 20px;
}
.guide-pill-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: #a090c0; margin-bottom: 8px;
}
.guide-options {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.guide-pill {
  background: #fff; border: 1.5px solid #d5c5ee;
  border-radius: 50px; padding: 8px 20px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--purple); cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
  user-select: none;
}
.guide-pill:hover, .guide-pill.active {
  background: var(--purple); border-color: var(--purple); color: #fff;
}
.guide-stage-row { margin-top: 14px; }
.guide-email-row {
  display: flex; gap: 8px; margin-top: 18px;
}
.guide-email-input {
  flex: 1; border: 1.5px solid #d5c5ee; border-radius: 50px;
  padding: 11px 20px; font-family: 'Montserrat', sans-serif;
  font-size: 14px; color: #2d1f3d; outline: none;
  transition: border-color .18s; background: #fff;
}
.guide-email-input:focus { border-color: var(--purple); }
.guide-email-input::placeholder { color: #c0aedd; }
.guide-submit {
  background: var(--purple); color: #fff; border: none;
  border-radius: 50px; padding: 11px 22px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800;
  cursor: pointer; white-space: nowrap;
  transition: background .18s, transform .12s;
}
.guide-submit:hover { background: #4a2080; transform: translateY(-1px); }
.guide-success {
  display: none; font-size: 15px; font-weight: 700;
  color: #27ae60; padding: 14px 0 4px;
}
.guide-consent {
  margin-top: 12px; text-align: left;
}
.guide-consent label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #7a6895; line-height: 1.5; cursor: pointer;
}
.guide-consent input[type="checkbox"] {
  flex-shrink: 0; margin-top: 2px;
  width: 15px; height: 15px; accent-color: var(--purple); cursor: pointer;
}
.guide-consent a { color: var(--purple); text-decoration: underline; }
.guide-disclaimer {
  font-size: 10.5px; color: #c0aedd; margin-top: 10px;
}
@media (max-width: 640px) {
  .guide-email-row { flex-direction: column; }
  .guide-capture { padding: 24px 18px 18px; }
}

/* ============================================================
   VET SIGNATURE — "Revisado por Vet LAIKA"
   ============================================================ */
.vet-signature {
  margin: 40px 0 0;
}
.vet-signature-inner {
  display: flex; align-items: center; gap: 18px;
  background: #faf8fc; border: 1px solid #ede8f5;
  border-radius: 16px; padding: 20px 24px;
}
.vet-avatar {
  flex-shrink: 0; width: 54px; height: 54px;
  border-radius: 50%; background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 900; color: #fff;
  letter-spacing: -1px;
}
.vet-info { flex: 1; }
.vet-label {
  font-size: 10px; font-weight: 800; color: var(--purple);
  text-transform: uppercase; letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.vet-label::before {
  content: '✓'; display: inline-flex; align-items: center;
  justify-content: center; width: 16px; height: 16px;
  background: var(--purple); color: #fff;
  border-radius: 50%; font-size: 9px; font-weight: 900;
}
.vet-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800; color: #2d1f3d;
  margin: 0 0 2px;
}
.vet-meta {
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.vet-badge {
  flex-shrink: 0;
}
.vet-badge img {
  height: 40px; opacity: .85;
}
@media (max-width: 640px) {
  .vet-signature-inner { gap: 14px; padding: 16px 18px; }
  .vet-avatar { width: 46px; height: 46px; font-size: 15px; }
  .vet-name { font-size: 13px; }
  .vet-meta { font-size: 11px; }
}

/* ── BIBLIOGRAFÍA ── */
.art-bibliography {
  border-top: 1.5px solid #f0eaf8;
  margin-top: 48px; padding-top: 28px;
}
.art-bibliography h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 14px;
}
.art-bibliography ol {
  list-style: decimal; padding-left: 18px; margin: 0;
}
.art-bibliography li {
  font-size: 12px; color: var(--muted); line-height: 1.75;
  margin-bottom: 6px;
}
.art-bibliography li em { font-style: italic; }
