: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 */

.wrap{
  max-width:1100px;
  margin-inline:auto;
  padding:32px 20px 80px;
  padding-inline:min(10vw,80px);
}

/* HEADER */

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.h1--wrap{
  white-space:normal !important;
  text-wrap:balance;
  overflow-wrap:anywhere;
  line-height:1.15;
  letter-spacing:.2px;
  font-size:clamp(24px,5vw,48px);
  margin:12px 0 6px;
  color:var(--kp-orange);
  max-width:950px;
}

@media (min-width:700px){
  h1.h1--wrap{
    font-size:clamp(32px,3vw,52px);
  }
}

/* HERO */

.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;
}

.hero--fit img{
  width:100%;
  height:auto !important;
  object-fit:contain !important;
  max-height:700px;
  background-color:#000;
  border-radius:16px;
}

/* TEXT */

.section{
  margin:34px 0;
}

h2{
  color:var(--kp-orange);
  font-size:clamp(22px,2.4vw,30px);
  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:16px;
  color:#fff;
  opacity:.95;
}

strong{
  color:var(--kp-orange);
}

/* GRID */

.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 */

.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 */

.callout{
  background:rgba(242,109,33,.12);
  border-left:4px solid var(--kp-orange);
  padding:16px;
  border-radius:10px;
  margin:18px 0;
}

/* GALLERY */

.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;
  background:#000;
}

/* DESKTOP */

@media (min-width:768px){

  .gallery .span-12{
    grid-column:span 12;
  }

  .gallery .span-6{
    grid-column:span 6;
  }

}

/* MOBILE */

@media (max-width:767px){

  .gallery > *{
    grid-column:span 12;
  }

}

/* 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;
  transition:.2s ease;
}

.cta a:hover{
  transform:translateY(-2px);
}

/* MORE ARTICLES */

.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;
}

/* PRIMARY */

.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;
}

/* SECONDARY */

.more-btn.secondary{
  background:#fff;
  color:var(--kp-orange);
}

.more-btn.secondary:hover{
  transform:translateY(-2px);
}

/* FOOTER */

footer.small{
  margin-top:24px;
  color:var(--kp-muted);
  font-size:12px;
  text-align:center;
}