: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));
}

.article-meta{
  color:#ccc;
  font-size:11px;
  margin-bottom:10px;
}

.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;
}

h1.h1--wrap{
  white-space:normal !important;
  text-wrap:balance;
  overflow-wrap:anywhere;
  line-height:1.15;
  letter-spacing:.2px;
  font-size:clamp(22px, 5.2vw, 44px);
  margin:12px 0 6px;
  color:var(--kp-orange);
}

@media (min-width:700px){
  h1.h1--wrap{
    white-space:normal !important;
    font-size:clamp(28px, 3.2vw, 48px);
  }
}

@media (min-width:900px){
  h1.h1--wrap{
    max-width:980px;
    margin-inline:auto;
  }
}

.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:620px;
}

.section{
  margin:34px 0;
}

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:13px;
}

li{
  font-size:13px;
}

strong{
  color:var(--kp-orange);
}

.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;
  font-size:13px;
}

.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;
}

.span-6{
  grid-column:span 6;
}

.span-12{
  grid-column:span 12;
}

@media(max-width:767px){
  .gallery > *{
    grid-column:span 12;
  }

  .gallery img{
    aspect-ratio:16 / 10;
  }
}

.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;
}


/* 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;
}
.more-articles{
  margin:50px 0 0;
  text-align:center;
  padding:28px 18px;
  border:1px solid var(--stroke);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
}

.more-articles p{
  font-size:20px;
  font-weight:700;
  margin-bottom:18px;
}

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

.more-btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

/* Botón principal */
.more-btn.primary{
  background:var(--kp-orange);
  color:#fff;
  box-shadow:0 8px 22px rgba(242,109,33,.35);
}

.more-btn.primary:hover{
  transform:translateY(-2px);
  background:#ff7c32;
}

/* Botón secundario */
.more-btn.secondary{
  background:#fff;
  color:var(--kp-orange);
}

.more-btn.secondary:hover{
  transform:translateY(-2px);
}