:root{
  --rk-max: 1520px;
  --rk-gutter: 22px;

  --rk-bg: #f6f7f9;
  --rk-surface: #ffffff;
  --rk-surface-2: #f2f4f7;
  --rk-text: #0f172a;
  --rk-muted: #475569;
  --rk-border: #d6dbe3;

  --rk-primary: #0b5cab;
  --rk-navy-1: #0b2b55;
  --rk-navy-2: #0b4f8f;
  --rk-focus: #f59e0b;

  --rk-radius: 16px;
  --rk-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}

body{ background: var(--rk-bg); color: var(--rk-text); }

.rk-wrap{
  max-width: var(--rk-max);
  margin: 0 auto;
  padding: 0 var(--rk-gutter);
}

/* HERO */
.rk-hero{
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--rk-border);
}
.rk-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 26px 0;
  align-items: stretch;
}
.rk-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--rk-border);
  border-radius: 999px;
  background: #fff;
  color: var(--rk-muted);
  font-weight: 950;
}
.rk-kicker__logo{ width: 20px; height: 20px; object-fit: contain; }

.rk-title{
  margin: 12px 0 8px;
  font-size: clamp(1.85rem, 2.2vw, 2.55rem);
  font-weight: 950;
  letter-spacing: 0.2px;
}
.rk-lead{
  margin: 0 0 14px;
  color: var(--rk-muted);
  max-width: 100ch;
}

.rk-badges{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.rk-badge{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--rk-border);
  background: #fff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
}
.rk-badge img{ width: 44px; height: 44px; object-fit: contain; }
.rk-badge__t{ font-weight: 950; }
.rk-badge__s{ color: var(--rk-muted); font-weight: 850; font-size: 0.95rem; margin-top: 2px; }

.rk-ph{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  color: #64748b;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.62rem;
  text-align: center;
  padding: 6px;
}

.rk-note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--rk-border);
  background: var(--rk-surface-2);
  color: var(--rk-muted);
  line-height: 1.45;
}
.rk-note strong{ color: var(--rk-text); }

.rk-hero__media{
  border: 1px solid var(--rk-border);
  border-radius: var(--rk-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--rk-shadow);
  min-height: 320px;
}
.rk-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rk-media-ph{
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  color: #64748b;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* MAIN */
.rk-main{ padding: 26px 0 46px; }

.rk-section{ margin-top: 18px; }
.rk-section--compact{ margin-top: 22px; }

.rk-section__head{ margin-bottom: 12px; }
.rk-h2{
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0.2px;
}
.rk-sub{
  margin: 0;
  color: var(--rk-muted);
  max-width: 110ch;
}

/* Leadership (Single-Seat) */
.rk-leadership{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.rk-leader{
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--rk-border);
  border-radius: var(--rk-radius);
  background: var(--rk-surface);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
}

.rk-leader__img{
  position: relative;
  border: 1px solid var(--rk-border);
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  background: #fff;
}

.rk-leader__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rk-img-ph{
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  color: #64748b;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rk-seat{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 92, 171, 0.25);
  background: rgba(11, 92, 171, 0.10);
  color: var(--rk-navy-1);
  font-weight: 950;
}

.rk-leader__body{ padding: 2px 2px; }

.rk-rank{
  font-weight: 950;
  color: var(--rk-navy-1);
  letter-spacing: 0.2px;
}
.rk-title2{
  margin-top: 4px;
  font-weight: 950;
  font-size: 1.15rem;
  color: var(--rk-text);
}

.rk-person{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  margin: 10px 0 10px;
  padding: 10px 12px;
  border: 1px solid var(--rk-border);
  border-radius: 14px;
  background: #fbfdff;
}
.rk-person__k{
  font-weight: 950;
  color: var(--rk-text);
}
.rk-person__v{
  font-weight: 900;
  color: var(--rk-muted);
}

.rk-text{
  margin: 0;
  color: var(--rk-muted);
  line-height: 1.55;
}

/* Cards */
.rk-grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.rk-grid-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.rk-card{
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: var(--rk-radius);
  padding: 14px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
}
.rk-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.rk-card__rank{
  font-weight: 950;
  color: var(--rk-navy-1);
}
.rk-card__badge{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--rk-border);
  background: #fbfdff;
  color: var(--rk-muted);
  font-weight: 900;
}
.rk-card__title{
  font-weight: 950;
  color: var(--rk-text);
  margin-bottom: 6px;
}
.rk-card__text{
  margin: 0;
  color: var(--rk-muted);
  line-height: 1.55;
}

/* CTA */
.rk-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: var(--rk-radius);
  border: 1px solid var(--rk-border);
  background: #fff;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
}
.rk-cta__actions{ display: flex; gap: 10px; flex-wrap: wrap; }

.rk-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--rk-border);
  background: #fff;
  color: var(--rk-primary);
  font-weight: 950;
  text-decoration: none;
}
.rk-btn:hover{ text-decoration: none; filter: brightness(1.03); }

.rk-btn--primary{
  border-color: rgba(11, 43, 85, 0.55);
  background: linear-gradient(180deg, var(--rk-primary) 0%, var(--rk-navy-2) 55%, var(--rk-navy-1) 100%);
  color: #fff;
}

/* Responsive */
@media (max-width: 1040px){
  .rk-hero__grid{ grid-template-columns: 1fr; }
  .rk-hero__media{ min-height: 220px; }
  .rk-badges{ grid-template-columns: 1fr; }

  .rk-leader{ grid-template-columns: 1fr; }
  .rk-leader__img{ min-height: 220px; }

  .rk-grid-3{ grid-template-columns: 1fr; }
  .rk-grid-4{ grid-template-columns: 1fr; }
  .rk-person{ grid-template-columns: 1fr; }
}
