:root{
  --kp-orange:#F26D21;
  --kp-bg1:#0A0A0A;
  --kp-bg2:#1B1F3B;
  --kp-text:#EDEDED;
  --kp-muted:#9aa0a6;
  --card:#0f1224;
  --stroke:rgba(255,255,255,.12);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--kp-text);
  background:linear-gradient(180deg,var(--kp-bg1),var(--kp-bg2));
  line-height:1.6;
}
.wrap{
  max-width:1100px;
  margin-inline:auto;
  padding:32px 20px 80px;
  padding-inline:min(10vw, 80px);
}
header.article-header{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;margin-bottom:22px}
.logos{display:flex;gap:18px;flex-wrap:wrap;align-items:center;justify-content:center}
.logos img{height: 60px;filter:drop-shadow(0 2px 10px rgba(0,0,0,.25))}
.badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.06);border:1px solid var(--stroke);padding:6px 12px;border-radius:999px;font-size:10px;color:var(--kp-muted)}

h1{
  font-size: clamp(22px, 6vw, 44px);
  line-height: 1.15;
  margin: 12px 0 6px;
  color: var(--kp-orange);
  letter-spacing: .2px;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
@media (min-width: 700px){
  h1{ white-space: normal !important; font-size: clamp(28px, 3vw, 48px); }
}
@media (min-width: 900px){
  h1{ max-width: 980px; margin-inline:auto; }
}

.meta{font-size:13px;color:var(--kp-muted)}
.hero{
  margin:26px 0 18px;
  background:radial-gradient(1200px 500px at 80% -50%, rgba(242,109,33,.15), transparent 60%),
             linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  overflow:hidden;
}
.hero img{width:100%;display:block;object-fit:cover;max-height:520px}
.section{margin:34px 0}

.hero--square { aspect-ratio: 1 / 1; }
.hero--square img { height: 100% !important; width: 100%; object-fit: cover; max-height: none !important; }
@media (min-width: 900px){
  .hero--square{ aspect-ratio: auto; }
  .hero--square img{ height: auto; }
}

.hero--fit img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  max-height: 700px;
  background-color: #000;
  border-radius: 16px;
}

h2{
  color:var(--kp-orange);
  font-size:clamp(20px,2.4vw,28px);
  margin:0 0 12px;
  padding-bottom:6px;
  border-bottom:2px solid var(--kp-orange);
}
h3{color:var(--kp-orange);margin:18px 0 8px;font-size:18px}
p{margin:10px 0;color:var(--kp-text);font-size:14px}
li{font-size:14px}
.lead{font-size:15px;color:#fff;opacity:.95}

.grid{ display:grid; gap:16px; grid-template-columns:repeat(12,1fr) }
.col-6{grid-column:span 6}
.col-12{grid-column:span 12}
@media(max-width:900px){.col-6{grid-column:span 12}}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:18px
}
.list{padding-left:18px;margin:10px 0}
.list li{margin:6px 0;color:var(--kp-text)}
.callout{
  background:rgba(242,109,33,.12);
  border-left:4px solid var(--kp-orange);
  padding:16px;border-radius:10px;margin:18px 0
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}
.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  background: #000;
}
@media (min-width: 768px) {
  .gallery > .span-7, .gallery > .span-5 { grid-column: span 6; }
  .gallery > .span-12 { grid-column: span 12; }
}
@media (max-width: 767px) {
  .gallery > * { grid-column: span 12; }
  .gallery img { aspect-ratio: 16 / 10; }
}

/* Video */
.video-card{ background:var(--card); border:1px solid var(--stroke); border-radius:18px; padding:12px; box-shadow:0 8px 26px rgba(7,8,32,.25) }
.video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9; /* ✅ proporción estándar para YouTube */
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.v-caption{ display:flex; align-items:center; justify-content:space-between; margin-top:10px }
.v-caption--header{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:nowrap }
.v-logo{ width:28px; height:28px; flex:0 0 28px; object-fit:contain; filter:drop-shadow(0 1px 6px rgba(0,0,0,.25)) }
.v-info{ flex:1 1 auto; min-width:0 }
.v-name{ font-size:14px; line-height:1.2; font-weight:700 }
.v-role{ font-size:12px; color:var(--kp-muted); margin-top:2px; line-height:1.2 }
.v-ig{ flex:0 0 auto; display:inline-flex; align-items:center }
.v-ig img{ width:22px; height:22px; display:block; transition:transform .25s ease }
.v-ig:hover img{ transform:scale(1.08) }

/* CTA */
.cta{
  margin:46px 0 0;
  text-align:center;
  padding:28px 18px;
  background:linear-gradient(135deg, var(--kp-orange), #ff8846);
  border-radius:20px
}
.cta p{color:#fff;margin:0 0 14px;font-weight:700;font-size:20px}
.cta a{
  display:inline-block;background:#fff;color:var(--kp-orange);
  padding:12px 22px;border-radius:999px;font-weight:800;text-decoration:none
}
footer.small{margin-top:24px;color:var(--kp-muted);font-size:12px;text-align:center}
.article-meta { color: #ccc; font-size: 11px; margin-bottom: 10px }
strong { color: #F26D21 }


/* CTA final */
.article-final-cta {
  max-width: 100%;
  margin: 55px auto 0;
}

.article-final-cta .cta {
  margin: 0 auto 50px;
  text-align: center;
  padding: 34px 20px;
  background: linear-gradient(135deg, #F26D21, #ff8846);
  border-radius: 20px;
}

.article-final-cta .cta p {
  color: #fff;
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.article-final-cta .cta a {
  display: inline-block;
  background: #fff;
  color: #F26D21;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.article-final-cta .more-articles {
  margin: 0 auto;
  text-align: center;
  padding: 42px 20px 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
}

.article-final-cta .more-articles p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}

.article-final-cta .more-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.article-final-cta .more-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.article-final-cta .more-btn.primary {
  background: #F26D21;
  color: #fff;
  box-shadow: 0 8px 22px rgba(242,109,33,.35);
}

.article-final-cta .more-btn.secondary {
  background: #fff;
  color: #F26D21;
}

.article-final-cta footer.small {
  margin-top: 24px;
  color: #9aa0a6;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 620px) {
  body {
    padding: 16px;
  }

  h1 {
    font-size: 1.8em;
  }

  .article-final-cta .more-buttons {
    flex-direction: column;
    align-items: center;
  }
}