@charset "UTF-8";
/* דקה 99 - page 4294. Lifted out of the Elementor custom-HTML
   widget, where it was inline on every request. Brand primaries now
   resolve to tokens.css; neutrals were left as authored.
   Loaded only on this page. */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       var(--dk-brand);
  --red-dark:  var(--dk-brand-dark);
  --red-soft:  var(--dk-brand-soft);
  --red-mid:   #fee2e2;
  --blue:      var(--dk-trust-dark);
  --blue-dark: var(--dk-trust-dark);
  --blue-soft: #eff6ff;
  --dark:      #0f172a;
  --dark2:     #1e293b;
  --text:      #334155;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --bg:        #f8fafc;
  --white:     #ffffff;
  /* Surface gold. Star glyphs below use --dk-gold-text instead: this
     cut is 2.80:1 on white and is for fills and borders only. */
  --gold:      var(--dk-gold);
  --green:     #16a34a;
  --green-soft:#f0fdf4;

  --font: var(--dk-font);
  --radius: 14px;
  --shadow: 0 4px 20px rgba(15,23,42,.08);
  --shadow-lg: 0 10px 40px rgba(15,23,42,.12);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  direction: rtl;
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }

/* ===== HERO ===== */
.dk-hero {
  background: linear-gradient(135deg, #003d6b 0%, var(--dk-trust-dark) 50%, #0074c1 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 24px 50px;
  text-align: center;
}

.dk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(172,17,18,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(0,100,200,.3) 0%, transparent 60%);
  pointer-events: none;
}

.dk-hero__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.dk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 6px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.dk-hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.dk-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.dk-hero h1 span { color: #fbbf24; }

.dk-hero__sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.dk-hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.dk-hero__stat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
}

.dk-hero__stat-val { font-size: 22px; font-weight: 900; display: block; }
.dk-hero__stat-lbl { font-size: 12px; opacity: .8; display: block; margin-top: 2px; }

.dk-hero__widget-wrap {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.dk-hero__widget-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* ===== WRAP ===== */
.dk-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.dk-wrap--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ===== BREADCRUMB ===== */
.dk-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}
.dk-breadcrumb a { color: var(--muted); }
.dk-breadcrumb a:hover { color: var(--red); }
.dk-breadcrumb span { color: var(--text); font-weight: 600; }

/* ===== TOC ===== */
.dk-toc {
  background: var(--blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 40px 0;
}
.dk-toc__title { font-size: 15px; font-weight: 900; color: var(--blue-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.dk-toc__list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px; }
.dk-toc__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--blue-dark);
  font-weight: 600;
  transition: background .2s;
}
.dk-toc__list li a:hover { background: rgba(0,89,148,.1); color: var(--red); }
.dk-toc__list li a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ===== SECTION ===== */
.dk-section { padding: 56px 0; }
.dk-section--alt { background: var(--bg); }
.dk-section--dark { background: var(--dark); color: #e2e8f0; }
.dk-section--red { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); color: #fff; }

.dk-section__head { text-align: center; margin-bottom: 40px; }

.dk-section-label {
  display: inline-block;
  background: var(--red-mid);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.dk-section-label--blue { background: #dbeafe; color: var(--blue-dark); }
.dk-section-label--green { background: #dcfce7; color: #166534; }

h2.dk-h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.dk-section--dark h2.dk-h2,
.dk-section--red h2.dk-h2 { color: #fff; }

h3.dk-h3 {
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--dark2);
  margin-bottom: 14px;
  line-height: 1.3;
}

.dk-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== TOOLS GRID ===== */
.dk-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.dk-tool-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.dk-tool-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 18px 0 80px;
  opacity: .07;
}

.dk-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.dk-tool-card--top { border-color: var(--dk-gold); }
.dk-tool-card--top::after {
  content: '⭐ מומלץ';
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
}

.dk-tool-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.dk-tool-card__name { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.dk-tool-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.dk-tool-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.dk-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid;
}
.dk-tag--green { background: var(--green-soft); color: #166534; border-color: #bbf7d0; }
.dk-tag--blue { background: var(--blue-soft); color: var(--blue-dark); border-color: #bfdbfe; }
.dk-tag--red { background: var(--red-soft); color: var(--red); border-color: var(--red-mid); }
.dk-tag--gray { background: #f1f5f9; color: var(--muted); border-color: var(--border); }

.dk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}

.dk-btn--red { background: var(--red); color: #fff; }
.dk-btn--red:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(172,17,18,.25); }
.dk-btn--blue { background: var(--blue); color: #fff; }
.dk-btn--blue:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.dk-btn--outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.dk-btn--outline:hover { background: var(--red); color: #fff; }
.dk-btn--full { width: 100%; justify-content: center; }

.dk-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; flex-shrink: 0; }

/* ===== TIPS GRID ===== */
.dk-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.dk-tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  transition: box-shadow .2s, border-color .2s;
}
.dk-tip-card:hover { box-shadow: var(--shadow); border-color: #cbd5e1; }

.dk-tip-card__num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dk-tip-card__title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.dk-tip-card__text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== PROSE ===== */
.dk-prose { font-size: 17px; line-height: 1.9; color: var(--text); }
.dk-prose h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--dark); margin: 44px 0 16px; padding-top: 12px; border-top: 3px solid var(--red-mid); }
.dk-prose h3 { font-size: clamp(19px, 2.5vw, 24px); font-weight: 800; color: var(--dark2); margin: 32px 0 12px; }
.dk-prose h4 { font-size: 18px; font-weight: 700; color: var(--dark2); margin: 24px 0 10px; }
.dk-prose p { margin-bottom: 18px; }
.dk-prose strong { color: var(--dark); font-weight: 700; }
.dk-prose ul, .dk-prose ol { padding-right: 24px; margin-bottom: 18px; }
.dk-prose li { margin-bottom: 8px; }
.dk-prose a { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(0,89,148,.3); transition: color .2s; }
.dk-prose a:hover { color: var(--red); border-color: var(--red); }

/* ===== HIGHLIGHT BOXES ===== */
.dk-box {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
}
.dk-box--blue { background: var(--blue-soft); border: 1px solid #bfdbfe; }
.dk-box--green { background: var(--green-soft); border: 1px solid #bbf7d0; }
.dk-box--red { background: var(--red-soft); border: 1px solid var(--red-mid); }
.dk-box--gold { background: #fffbeb; border: 1px solid #fde68a; }

.dk-box__icon { font-size: 22px; flex-shrink: 0; }
.dk-box__text { font-size: 15px; line-height: 1.75; }
.dk-box__text strong { display: block; font-size: 16px; margin-bottom: 4px; }

/* ===== TABLE ===== */
.dk-table-wrap { overflow-x: auto; margin: 24px 0; }
table.dk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.dk-table th {
  background: var(--dark);
  color: #fff;
  padding: 13px 16px;
  text-align: right;
  font-weight: 700;
  font-size: 13px;
}
.dk-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.dk-table tr:nth-child(even) td { background: var(--bg); }
.dk-table tr:hover td { background: var(--red-soft); }

.dk-check { color: var(--green); font-weight: 800; }
.dk-cross { color: var(--dk-brand); font-weight: 800; }

/* ===== FAQ ===== */
.dk-faq-list { display: flex; flex-direction: column; gap: 10px; }

.dk-faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.dk-faq-item:hover { border-color: var(--red); }
.dk-faq-item.open { border-color: var(--red); }

.dk-faq-q {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.dk-faq-q:hover { color: var(--red); }
.dk-faq-q__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.dk-faq-item.open .dk-faq-q__icon { transform: rotate(45deg); background: var(--red); color: #fff; }

.dk-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.dk-faq-item.open .dk-faq-a { display: block; }

/* ===== CTA BAND ===== */
.dk-cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  border-radius: 22px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dk-cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(172,17,18,.12);
  pointer-events: none;
}
.dk-cta-band h2 { color: #fff; font-size: clamp(22px, 3vw, 34px); font-weight: 900; margin-bottom: 12px; }
.dk-cta-band p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 28px; }

.dk-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== MONTHS GRID ===== */
.dk-months-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.dk-month {
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}
.dk-month--cheap { background: #dcfce7; border-color: #bbf7d0; color: #166534; }
.dk-month--mid { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.dk-month--exp { background: #fee2e2; border-color: #fca5a5; color: #991b1b; }
.dk-month__name { display: block; font-size: 15px; margin-bottom: 4px; }
.dk-month__label { font-size: 12px; opacity: .8; }

/* ===== STEPS ===== */
.dk-steps { display: flex; flex-direction: column; gap: 0; }
.dk-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.dk-step:last-child { border-bottom: none; }
.dk-step__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.dk-step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dk-step__line {
  width: 2px;
  flex: 1;
  background: var(--red-mid);
  min-height: 30px;
  margin: 8px 0;
}
.dk-step:last-child .dk-step__line { display: none; }
.dk-step__content { flex: 1; padding-top: 10px; }
.dk-step__title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.dk-step__text { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ===== RATING ===== */
.dk-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dk-gold-text);
}

/* ===== FEATURED DEAL ===== */
.dk-deals {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.dk-deal-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .2s;
}
.dk-deal-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.dk-deal-card__route { font-size: 18px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.dk-deal-card__info { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.dk-deal-card__price { font-size: 28px; font-weight: 900; color: var(--red); }
.dk-deal-card__price span { font-size: 14px; font-weight: 400; color: var(--muted); }

/* ===== COMPARISON BAR ===== */
.dk-compare {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.dk-compare-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all .2s;
}
.dk-compare-item:hover { border-color: var(--red); box-shadow: var(--shadow); }
.dk-compare-item__logo { font-size: 28px; margin-bottom: 6px; }
.dk-compare-item__name { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.dk-compare-item__stars { color: var(--dk-gold-text); font-size: 13px; margin-bottom: 10px; }
.dk-compare-item a { font-size: 13px; font-weight: 700; color: var(--blue); }
.dk-compare-item a:hover { color: var(--red); }

/* ===== WIDGET CALLOUT ===== */
.dk-widget-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.dk-widget-box::before {
  content: '✈';
  position: absolute;
  font-size: 140px;
  opacity: .05;
  top: -20px;
  left: -20px;
  line-height: 1;
}
.dk-widget-box h3 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.dk-widget-box p { opacity: .88; margin-bottom: 20px; font-size: 15px; }

/* ===== SOCIAL PROOF ===== */
.dk-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.dk-review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.dk-review__stars { color: var(--dk-gold-text); font-size: 18px; margin-bottom: 10px; }
.dk-review__text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.dk-review__name { font-size: 13px; font-weight: 700; color: var(--dark); }
.dk-review__meta { font-size: 12px; color: var(--muted); }

/* ===== CHECKLIST ===== */
.dk-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.dk-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.65;
}
.dk-checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ===== PROGRESS BARS ===== */
.dk-progress-item { margin-bottom: 14px; }
.dk-progress-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.dk-progress-bar { height: 10px; background: var(--border); border-radius: 999px; overflow: hidden; }
.dk-progress-fill { height: 100%; border-radius: 999px; background: var(--red); }

/* ===== ICON LIST ===== */
.dk-icon-list { display: flex; flex-direction: column; gap: 12px; }
.dk-icon-item { display: flex; align-items: flex-start; gap: 14px; }
.dk-icon-item__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--red-soft);
}
.dk-icon-item__text { font-size: 15px; line-height: 1.7; }
.dk-icon-item__title { font-weight: 700; color: var(--dark); display: block; margin-bottom: 3px; }

/* ===== TWO COL ===== */
.dk-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) { .dk-two-col { grid-template-columns: 1fr; } }

/* ===== STICKY SIDEBAR ===== */
.dk-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .dk-layout { grid-template-columns: 1fr; } }

.dk-sidebar { position: sticky; top: 24px; }
.dk-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}
.dk-sidebar-card__title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 14px; border-bottom: 2px solid var(--red); padding-bottom: 10px; }

/* ===== DIVIDER ===== */
.dk-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dk-months-grid { grid-template-columns: repeat(3, 1fr); }
  .dk-section { padding: 40px 0; }
  .dk-hero { padding: 40px 16px 36px; }
  .dk-cta-band { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .dk-months-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== AFFILIATE DISCLOSURE ===== */
.dk-disclosure {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #92400e;
  margin-bottom: 24px;
}
