/*
Theme Name: KultaRulla
Theme URI: https://kultarulla.com/
Author: KultaRulla
Description: Custom classic-PHP theme for kultarulla.com — an independent Finnish casino & slots review site. Content is 100%% editable (CPTs + ACF + menus); no hardcoded data. Converted page-by-page from a Lovable design source.
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kultarulla
*/

/* ============================================================
   KultaRulla design tokens  (class prefix: kr-  |  fn prefix: kultarulla_)
   60 warm-white / 30 navy / 10 crimson
   ============================================================ */
:root {
  /* surfaces (60%) */
  --kr-page: #FAFAF7;
  --kr-surface: #FFFFFF;
  --kr-surface-alt: #F2F0EB;
  --kr-ink: #1C2333;
  --kr-ink-muted: #5C6370;
  --kr-border-light: rgba(28, 35, 51, 0.08);

  /* navy blocks (30%) */
  --kr-navy-nav: #111B27;
  --kr-navy-footer: #0D1620;
  --kr-navy-hero: #14202E;
  --kr-navy-card: #1A2B3D;
  --kr-on-dark: #E8E4DD;
  --kr-on-dark-muted: #8B9099;
  --kr-border-dark: rgba(255, 255, 255, 0.07);

  /* accent crimson (10%) */
  --kr-accent: #C03744;
  --kr-accent-hover: #A82F3B;
  --kr-accent-subtle: rgba(192, 55, 68, 0.06);

  /* semantic data pills (light) */
  --kr-pos: #238066;    --kr-pos-bg: rgba(43, 158, 124, 0.08);
  --kr-neu: #9A7230;    --kr-neu-bg: rgba(200, 148, 58, 0.08);
  --kr-cau: #B5513A;    --kr-cau-bg: rgba(212, 101, 74, 0.08);

  /* type */
  --kr-font-display: "Space Grotesk", system-ui, sans-serif;
  --kr-font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --kr-font-body: "Inter", system-ui, -apple-system, sans-serif;
  --kr-font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* shape + shadow */
  --kr-radius: 0.75rem;
  --kr-radius-sm: 0.5rem;
  --kr-radius-lg: 1rem;
  --kr-shadow-card: 0 1px 3px rgba(17, 27, 39, 0.06), 0 4px 12px rgba(17, 27, 39, 0.04);
  --kr-shadow-elevated: 0 2px 8px rgba(17, 27, 39, 0.08), 0 8px 24px rgba(17, 27, 39, 0.05);

  /* layout */
  --kr-container: 1400px;
  --kr-gutter: 1.5rem;
}

/* ============================================================ base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--kr-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--kr-ink);
  background: var(--kr-page);
  -webkit-font-smoothing: antialiased;
}
/* Headings: serif display (Instrument Serif) like the Lovable design; sub-heads use Space Grotesk. */
h1, h2 { font-family: var(--kr-font-serif); font-weight: 400; line-height: 1.14; color: var(--kr-ink); margin: 0 0 0.5em; }
h3, h4 { font-family: var(--kr-font-display); font-weight: 600; line-height: 1.2; color: var(--kr-ink); margin: 0 0 0.5em; }
h1 { font-size: clamp(1.9rem, 1.1rem + 3.2vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.25rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
.kr-section > .kr-container > h2 { text-align: center; }
p { margin: 0 0 1rem; }
a { color: var(--kr-accent); text-decoration: none; }
a:hover { color: var(--kr-accent-hover); }
img { max-width: 100%; height: auto; display: block; }
.kr-eyebrow { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--kr-accent); }
.kr-mono { font-family: var(--kr-font-mono); }

/* ============================================================ layout */
.kr-container { max-width: var(--kr-container); margin-inline: auto; padding-inline: var(--kr-gutter); }
.kr-section { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.kr-section--alt { background: var(--kr-surface-alt); }
.kr-section--dark { background: var(--kr-navy-hero); color: var(--kr-on-dark); }
.kr-section--dark h1, .kr-section--dark h2, .kr-section--dark h3 { color: var(--kr-on-dark); }
.kr-grid { display: grid; gap: 1.25rem; }
.kr-grid--2 { grid-template-columns: repeat(2, 1fr); }
.kr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.kr-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .kr-grid--3, .kr-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kr-grid--2, .kr-grid--3, .kr-grid--4 { grid-template-columns: 1fr; } }

/* ============================================================ buttons */
.kr-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: var(--kr-font-display); font-weight: 600; font-size: 0.9375rem; line-height: 1;
  padding: 0.75rem 1.25rem; border-radius: var(--kr-radius-sm); border: 0; cursor: pointer;
  background: var(--kr-accent); color: #fff; transition: background 0.15s ease, transform 0.15s ease; }
.kr-btn:hover { background: var(--kr-accent-hover); color: #fff; transform: translateY(-1px); }
.kr-btn--ghost { background: transparent; color: var(--kr-ink); border: 1px solid var(--kr-border-light); }
.kr-btn--block { width: 100%; }

/* ============================================================ data pill */
.kr-pill { display: inline-flex; align-items: center; gap: 0.3rem; font-family: var(--kr-font-mono);
  font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.6rem; border-radius: 999px; }
.kr-pill--pos { color: var(--kr-pos); background: var(--kr-pos-bg); }
.kr-pill--neu { color: var(--kr-neu); background: var(--kr-neu-bg); }
.kr-pill--cau { color: var(--kr-cau); background: var(--kr-cau-bg); }

/* ============================================================ casino card (dark) — pixel-matched to Lovable CasinoCard */
.kr-casino { position: relative; display: flex; flex-direction: column; background: #14202E;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; box-shadow: var(--kr-shadow-card); overflow: hidden; }
.kr-casino__ribbon { position: absolute; top: 16px; left: -35px; width: 130px; transform: rotate(-45deg);
  background: #B83340; color: #fff; text-align: center; font-family: var(--kr-font-body); font-size: 9px;
  font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; padding: 4px 0; z-index: 10; }
.kr-casino__logo-area { height: 110px; display: flex; align-items: center; justify-content: center; }
.kr-casino__logo-area img { max-height: 100%; max-width: 92%; object-fit: contain; }
.kr-casino__logotext { color: #fff; font-family: var(--kr-font-display); font-weight: 700; font-size: 34px; letter-spacing: -0.02em; }
.kr-casino__name { margin-top: 10px; text-align: center; color: #fff; font-family: var(--kr-font-display); font-weight: 600; font-size: 18px; line-height: 1.2; }
.kr-casino__stars { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 6px; }
.kr-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.kr-casino__score { color: rgba(255,255,255,0.7); font-family: var(--kr-font-mono); font-size: 12px; font-weight: 500; }
.kr-casino__bonus { margin-top: 10px; color: #fff; font-weight: 500; font-size: 14px; line-height: 1.45; text-align: center; }
.kr-casino__info { margin-top: 12px; color: rgba(255,255,255,0.6); font-family: var(--kr-font-mono); font-size: 13px; text-align: center; line-height: 1.4; }
.kr-casino__pay { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; opacity: 0.85; }
.kr-pay { width: 24px; height: 24px; border-radius: 50%; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--kr-font-body); font-weight: 700; flex-shrink: 0; line-height: 1; }
.kr-casino__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 12px; }
.kr-tag { border: 1px solid #2E8B6E; color: #fff; border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 500; line-height: 1.2; }
.kr-casino__spacer { flex: 1 1 auto; min-height: 8px; }
.kr-casino__cta { margin-top: 16px; background: #fff; color: #14202E; font-family: var(--kr-font-body); font-weight: 600; font-size: 14px; padding: 12px 16px; border-radius: 8px; text-align: center; display: block; transition: background 0.15s ease; }
.kr-casino__cta:hover { background: #F0F0F0; color: #14202E; }
.kr-casino__disc { margin-top: 8px; text-align: center; font-size: 10px; color: rgba(255,255,255,0.4); }

/* ============================================================ slot / game card (light) */
.kr-slot { background: var(--kr-surface); border: 1px solid var(--kr-border-light); border-radius: var(--kr-radius);
  overflow: hidden; box-shadow: var(--kr-shadow-card); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.kr-slot:hover { transform: translateY(-2px); box-shadow: var(--kr-shadow-elevated); }
.kr-slot__img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--kr-surface-alt); }
.kr-slot__body { padding: 0.9rem; text-align: center; }
.kr-slot__name { font-family: var(--kr-font-display); font-weight: 600; font-size: 1rem; margin: 0 0 0.15rem; }
.kr-slot__prov { font-size: 0.8125rem; color: var(--kr-ink-muted); margin-bottom: 0.6rem; }
.kr-slot__pills { display: flex; gap: 0.4rem; justify-content: center; }

/* ============================================================ comparison table */
.kr-table { width: 100%; border-collapse: collapse; background: var(--kr-surface); border-radius: var(--kr-radius); overflow: hidden; box-shadow: var(--kr-shadow-card); }
.kr-table th { font-family: var(--kr-font-display); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
  text-align: left; padding: 0.85rem 1rem; background: var(--kr-navy-hero); color: var(--kr-on-dark); }
.kr-table td { padding: 0.85rem 1rem; border-top: 1px solid var(--kr-border-light); font-size: 0.9rem; }
.kr-table td.kr-num { font-family: var(--kr-font-mono); }
@media (max-width: 700px) { .kr-table thead { display: none; } .kr-table tr { display: block; border-top: 1px solid var(--kr-border-light); padding: 0.5rem 0; } .kr-table td { display: flex; justify-content: space-between; border: 0; } .kr-table td::before { content: attr(data-label); font-weight: 600; color: var(--kr-ink-muted); } }

/* ============================================================ FAQ (native details) */
.kr-faq { display: grid; gap: 0.75rem; }
.kr-faq details { background: var(--kr-navy-card); color: var(--kr-on-dark); border-radius: var(--kr-radius); border: 1px solid var(--kr-border-dark); }
.kr-faq summary { cursor: pointer; list-style: none; padding: 1rem 1.15rem; font-family: var(--kr-font-display); font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.kr-faq summary::-webkit-details-marker { display: none; }
.kr-faq summary::after { content: "+"; color: var(--kr-accent); font-size: 1.3rem; line-height: 1; transition: transform 0.2s ease; }
.kr-faq details[open] summary::after { transform: rotate(45deg); }
.kr-faq__a { padding: 0 1.15rem 1.15rem; color: var(--kr-on-dark-muted); }

/* ============================================================ header / nav */
.kr-header { position: sticky; top: 0; z-index: 50; background: var(--kr-navy-nav); color: var(--kr-on-dark); border-bottom: 1px solid var(--kr-border-dark); }
.kr-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.kr-logo { font-family: var(--kr-font-display); font-weight: 700; font-size: 1.25rem; color: var(--kr-on-dark); }
.kr-logo b { color: var(--kr-accent); }
/* nav markup = wp_nav_menu (ul.kr-nav > li.menu-item > a  + .sub-menu) */
.kr-nav { display: flex; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.kr-nav > li { position: relative; }
.kr-nav a { display: block; padding: 0.6rem 0.85rem; color: var(--kr-on-dark); font-size: 0.9rem; font-weight: 500; border-radius: var(--kr-radius-sm); }
.kr-nav > li > a:hover, .kr-nav > li:hover > a { background: rgba(255, 255, 255, 0.06); color: #fff; }
.kr-nav .sub-menu { position: absolute; top: 100%; left: 0; min-width: 230px; list-style: none; margin: 0; padding: 0.4rem;
  background: var(--kr-surface); border-radius: var(--kr-radius); box-shadow: var(--kr-shadow-elevated); display: none; z-index: 30; }
.kr-nav > li:hover .sub-menu { display: block; }
.kr-nav .sub-menu a { color: var(--kr-ink); font-size: 0.875rem; padding: 0.5rem 0.7rem; }
.kr-nav .sub-menu a:hover { background: var(--kr-surface-alt); color: var(--kr-accent); }
.kr-nav-toggle { display: none; background: none; border: 0; color: var(--kr-on-dark); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 1024px) {
  .kr-nav { position: fixed; inset: 96px 0 auto 0; flex-direction: column; background: var(--kr-navy-nav); padding: 0.5rem var(--kr-gutter) 1rem; display: none; max-height: calc(100vh - 96px); overflow-y: auto; }
  .kr-nav.is-open { display: flex; }
  .kr-nav .sub-menu { position: static; display: block; box-shadow: none; background: transparent; padding-left: 0.75rem; }
  .kr-nav .sub-menu a { color: var(--kr-on-dark-muted); }
  .kr-nav-toggle { display: block; }
}

/* ============================================================ hero */
.kr-hero { background: var(--kr-navy-hero); color: var(--kr-on-dark); padding-block: clamp(2.5rem, 1.5rem + 5vw, 5rem); }
.kr-hero h1 { color: var(--kr-on-dark); max-width: 22ch; }
.kr-hero__sub { color: var(--kr-on-dark-muted); font-size: 1.05rem; max-width: 60ch; }

/* ============================================================ footer */
.kr-footer { background: var(--kr-navy-footer); color: var(--kr-on-dark-muted); padding-block: 3rem 1.5rem; }
.kr-footer h4 { color: var(--kr-on-dark); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.kr-footer a { color: var(--kr-on-dark-muted); font-size: 0.875rem; display: block; padding: 0.2rem 0; }
.kr-footer a:hover { color: var(--kr-on-dark); }
.kr-footer__cols { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .kr-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kr-footer__cols { grid-template-columns: 1fr; } }
.kr-footer__bottom { border-top: 1px solid var(--kr-border-dark); margin-top: 2rem; padding-top: 1.25rem; font-size: 0.8125rem; }

/* ============================================================ RG notice */
.kr-rg { background: var(--kr-navy-footer); color: var(--kr-on-dark-muted); font-size: 0.8125rem; text-align: center; padding: 0.5rem var(--kr-gutter); }
.kr-rg a { color: var(--kr-on-dark); }

/* ============================================================ article prose */
.kr-prose { max-width: 72ch; }
.kr-prose h2 { margin-top: 1.6em; }
.kr-prose ul, .kr-prose ol { padding-left: 1.25rem; }
.kr-prose li { margin-bottom: 0.4rem; }

/* ============================================================ author byline */
.kr-byline { background: var(--kr-surface-alt); border-radius: var(--kr-radius); padding: 1.15rem; display: flex; gap: 1rem; align-items: flex-start; }
.kr-byline__photo { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; flex: 0 0 auto; }
.kr-byline__name { font-family: var(--kr-font-display); font-weight: 600; }
.kr-byline__role { font-size: 0.8125rem; color: var(--kr-ink-muted); }

/* ============================================================ quick facts */
.kr-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.kr-facts__box { background: var(--kr-surface); border: 1px solid var(--kr-border-light); border-radius: var(--kr-radius); padding: 0.9rem; text-align: center; }
.kr-facts__top { font-family: var(--kr-font-mono); font-weight: 600; color: var(--kr-accent); font-size: 1.15rem; }
.kr-facts__bottom { font-size: 0.75rem; color: var(--kr-ink-muted); }

/* ============================================================ hub grid card */
.kr-hub { background: var(--kr-surface); border: 1px solid var(--kr-border-light); border-radius: var(--kr-radius); overflow: hidden; box-shadow: var(--kr-shadow-card); transition: transform 0.15s ease; }
.kr-hub:hover { transform: translateY(-2px); }
.kr-hub__img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.kr-hub__body { padding: 1rem; }

/* ============================================================ card extras + misc */
.kr-casino__features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.kr-casino__features li { font-size: 0.8125rem; color: var(--kr-on-dark-muted); padding-left: 1.1rem; position: relative; }
.kr-casino__features li::before { content: "✓"; color: var(--kr-accent); position: absolute; left: 0; }
.kr-casino__foot { display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; }
.kr-byline__bio { font-size: 0.875rem; color: var(--kr-ink-muted); margin: 0.3rem 0 0; }
.kr-empty { color: var(--kr-ink-muted); font-style: italic; padding: 1rem 0; }
.kr-breadcrumbs { font-size: 0.8125rem; color: var(--kr-ink-muted); padding-block: 0.75rem; }
.kr-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; }
.kr-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; color: var(--kr-border-light); }
.kr-breadcrumbs a { color: var(--kr-ink-muted); }
.kr-breadcrumbs a:hover { color: var(--kr-accent); }

/* ============================================================ homepage (Lovable-matched) */
.kr-hero--home { text-align: center; padding-block: clamp(1.5rem, 1rem + 2vw, 2.5rem) 1rem; }
.kr-hero--home h1 { margin-inline: auto; max-width: 24ch; color: var(--kr-on-dark); text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.kr-statstrip { background: var(--kr-navy-hero); padding-bottom: clamp(1.5rem, 1rem + 2vw, 2rem); }
.kr-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
@media (max-width: 800px) { .kr-stats { grid-template-columns: repeat(2, 1fr); } }
.kr-stat { display: block; text-align: center; padding: 20px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; transition: background 0.15s, border-color 0.15s; }
.kr-stat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.kr-stat__icon { font-size: 40px; line-height: 1; display: block; filter: grayscale(0.1); }
.kr-stat__num { color: #fff; font-family: var(--kr-font-mono); font-weight: 700; font-size: clamp(1.4rem, 1rem + 1.2vw, 2rem); line-height: 1.1; margin-top: 0.5rem; }
.kr-stat__lbl { color: #7B8A98; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; margin-top: 0.25rem; }

.kr-cat { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #14202E; border-radius: 12px; background: #fff; box-shadow: var(--kr-shadow-card); transition: box-shadow 0.15s; }
.kr-cat:hover { box-shadow: var(--kr-shadow-elevated); }
.kr-cat__img { aspect-ratio: 3 / 4; background: #1A2B3D; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.kr-cat__img img { width: 100%; height: 100%; object-fit: cover; }
.kr-cat__ph { color: #7B8A98; font-family: var(--kr-font-display); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.kr-cat__body { padding: 1rem; text-align: center; }
.kr-cat__title { font-family: var(--kr-font-display); font-weight: 500; font-size: 15px; color: var(--kr-ink); text-transform: capitalize; }
.kr-cat__desc { margin-top: 0.5rem; font-size: 13px; color: var(--kr-ink-muted); }
.kr-cat__more { margin-top: 0.75rem; display: inline-block; font-size: 13px; font-weight: 500; color: var(--kr-accent); }

.kr-provs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.75rem; }
@media (max-width: 900px) { .kr-provs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .kr-provs { grid-template-columns: repeat(2, 1fr); } }
.kr-prov { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 0.75rem; border: 1px solid #14202E; border-radius: 12px; background: #fff; transition: box-shadow 0.15s; }
.kr-prov:hover { box-shadow: var(--kr-shadow-elevated); }
.kr-prov img { max-height: 48px; max-width: 100%; object-fit: contain; }
.kr-prov span { font-size: 12px; font-weight: 500; color: var(--kr-ink-muted); text-align: center; }

.kr-trust { background: #1A2B3D; border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: clamp(1.5rem, 1rem + 3vw, 2.5rem); }
.kr-trust h2 { color: #fff; text-align: center; }
.kr-trust p { color: #E8E4DD; max-width: 720px; margin: 0 auto 1rem; }

/* Lovable-mirrored nav interactions (dropdown on hover; mobile via JS) */
.kr-dropdown { display: none; }
.kr-navitem:hover .kr-dropdown { display: block; }
.kr-mobmenu.is-open { display: flex !important; }
.kr-mobsub.is-open { display: block !important; }

.kr-skip-link { position: absolute; left: -999px; }
.kr-skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: 0.5rem 1rem; z-index: 100; }

/* Article prose (the_content) — mirrors the Lovable <Article> component */
.kr-article > h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-family: var(--kr-font-serif); font-size: 28px; font-weight: 400; line-height: 1.15; color: #1C2333; letter-spacing: -0.005em; }
.kr-article > h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; font-family: var(--kr-font-display); font-size: 20px; font-weight: 600; line-height: 1.3; color: #1C2333; }
.kr-article p { margin: 0 0 1rem; }
.kr-article > p + p { margin-top: 1rem; }
.kr-article a { color: #C03744; text-decoration: none; }
.kr-article a:hover { text-decoration: underline; }
.kr-article ul, .kr-article ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.kr-article li { margin-bottom: 0.4rem; }
.kr-article strong { font-weight: 600; color: #1C2333; }
.kr-article > h2:first-child, .kr-article > h3:first-child { margin-top: 0; }

/* Provider spec sheet grid */
.kr-specsheet { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 32px; }
@media (min-width: 768px) { .kr-specsheet { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.kr-specsheet .kr-spec-full { grid-column: 1 / -1; }
