/* ================================================================
   The Denver Local — Main Stylesheet v2.0
   ================================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --dl-blue:         #007AF3;
  --dl-blue-dark:    #0057b3;
  --dl-blue-light:   #60a5fa;
  --dl-orange:       #FE6938;
  --dl-orange-dark:  #d94f22;

  --dl-bg-primary:   #0a0a0e;
  --dl-bg-secondary: #111116;
  --dl-bg-card:      #17171d;
  --dl-bg-card-hover:#1c1c24;
  --dl-bg-light:     #F5F4F0;
  --dl-bg-alt:       #0d0d14;

  --dl-text:         #ffffff;
  --dl-text-muted:   rgba(255,255,255,.55);
  --dl-text-subtle:  rgba(255,255,255,.3);

  --dl-border:       rgba(255,255,255,.07);
  --dl-border-light: rgba(255,255,255,.12);

  --dl-radius-sm:    6px;
  --dl-radius:       10px;
  --dl-radius-lg:    14px;

  --dl-nav-h:        60px;
  --dl-cats-h:       48px;
  --dl-container:    1200px;

  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dl-bg-primary);
  color: var(--dl-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--dl-text);
}
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -1px; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 18px; }
h5 { font-size: 15px; font-weight: 600; }
p  { color: var(--dl-text-muted); font-size: 15px; line-height: 1.7; }
em { font-style: normal; color: var(--dl-orange); }

/* ── LAYOUT ── */
.dl-container {
  max-width: var(--dl-container);
  margin: 0 auto;
  padding: 0 24px;
}
#dl-site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.dl-section { padding: 52px 0; }
.dl-section-alt { background: rgba(255,255,255,.015); }
.dl-section-dark { background: var(--dl-bg-alt); }
.dl-section-divider { height: 1px; background: linear-gradient(90deg,transparent,rgba(0,122,243,.3),rgba(254,105,56,.2),transparent); margin: 0 24px; }

/* Grid helpers */
.dl-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.dl-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.dl-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }

/* Section headers */
.dl-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.dl-section-title { color: var(--dl-text); }
.dl-section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--dl-blue);
  transition: color .15s;
  white-space: nowrap;
}
.dl-section-link:hover { color: var(--dl-blue-light); }

/* ── BUTTONS ── */
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--dl-radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .15s;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.dl-btn-lg { padding: 13px 26px; font-size: 15px; }
.dl-btn-full { width: 100%; justify-content: center; }
.dl-btn-primary { background: var(--dl-blue); color: #fff; }
.dl-btn-primary:hover { background: var(--dl-blue-dark); color: #fff; transform: translateY(-1px); }
.dl-btn-orange { background: var(--dl-orange); color: #fff; }
.dl-btn-orange:hover { background: var(--dl-orange-dark); color: #fff; transform: translateY(-1px); }
.dl-btn-outline { background: transparent; color: var(--dl-text); border: 1px solid var(--dl-border-light); }
.dl-btn-outline:hover { background: rgba(255,255,255,.06); color: #fff; }
.dl-btn-ghost { background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.12); }
.dl-btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.dl-btn-secondary { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.1); }
.dl-btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── NAVIGATION ── */
.dl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,12,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dl-border);
}
.dl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--dl-nav-h);
  max-width: var(--dl-container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}
.dl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.dl-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dl-bg-secondary);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed',sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  letter-spacing: -.5px;
}
.dl-logo-text {
  font-family: 'Barlow Condensed',sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.dl-logo-text span { color: var(--dl-orange); }
.dl-nav-links { flex: 1; display: flex; justify-content: center; }
.dl-nav-menu  { display: flex; gap: 0; }
.dl-nav-item  { }
.dl-nav-link  {
  display: flex;
  align-items: center;
  height: var(--dl-nav-h);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.dl-nav-link:hover { color: #fff; }
.dl-nav-link.active { color: #fff; border-bottom-color: var(--dl-orange); }
.dl-nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.dl-nav-cta {
  background: var(--dl-orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--dl-radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .15s;
  text-decoration: none;
}
.dl-nav-cta:hover { background: var(--dl-orange-dark); color: #fff; }

/* Mobile toggle */
.dl-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  padding: 4px;
}
.dl-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all .2s;
}
.dl-mobile-menu {
  display: none;
  background: var(--dl-bg-secondary);
  border-top: 1px solid var(--dl-border);
  padding: 16px 24px;
}
.dl-mobile-nav-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.dl-mobile-cta { display: inline-block; }

/* ── CATEGORY TAB BAR ── */
.dl-cat-tabs-bar {
  background: var(--dl-bg-secondary);
  border-bottom: 1px solid var(--dl-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.dl-cat-tabs-bar::-webkit-scrollbar { display: none; }
.dl-cat-tabs-inner {
  display: flex;
  max-width: var(--dl-container);
  margin: 0 auto;
  padding: 0 24px;
}
.dl-cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: var(--dl-cats-h);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .15s;
  text-decoration: none;
}
.dl-cat-tab:hover { color: #fff; }
.dl-cat-tab.active { color: #fff; border-bottom-color: var(--dl-orange); }
.dl-cat-icon { width: 20px; height: 20px; border-radius: 5px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.dl-ci-food   { background: rgba(254,105,56,.2); }
.dl-ci-night  { background: rgba(167,139,250,.2); }
.dl-ci-act    { background: rgba(52,211,153,.2); }
.dl-ci-ev     { background: rgba(96,165,250,.2); }
.dl-ci-biz    { background: rgba(251,191,36,.2); }
.dl-ci-gov    { background: rgba(129,140,248,.2); }

/* ── HERO ── */
.dl-hero {
  position: relative;
  background: var(--dl-bg-primary);
  padding: 72px 0 60px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.dl-hero-small { min-height: 220px; padding: 40px 0 32px; }
.dl-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0e 0%, #0d1a2e 50%, #0a1520 100%);
  z-index: 0;
}
.dl-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,122,243,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(0,122,243,.05) 1px,transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.dl-hero-glow { position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; }
.dl-hero-glow-blue  { right: -80px; top: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,122,243,.12) 0%, transparent 70%); }
.dl-hero-glow-orange{ left: 30%; bottom: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(254,105,56,.07) 0%, transparent 70%); }
.dl-hero-inner {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,122,243,.15);
  border: 1px solid rgba(0,122,243,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dl-blue-light);
  margin-bottom: 18px;
}
.dl-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dl-orange);
  flex-shrink: 0;
}
.dl-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 80px);
  line-height: .93;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.dl-hero-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: .95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.dl-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}
.dl-hero-search {
  display: flex;
  max-width: 540px;
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--dl-radius-sm);
  overflow: hidden;
}
.dl-hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 15px;
  color: #fff;
}
.dl-hero-search input::placeholder { color: rgba(255,255,255,.3); }
.dl-hero-search button {
  background: var(--dl-blue);
  color: #fff;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: .3px;
  white-space: nowrap;
}
.dl-hero-search button:hover { background: var(--dl-blue-dark); }

/* ── EVENT CARDS ── */
.dl-events-grid { }
.dl-event-card {
  background: var(--dl-bg-card);
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.dl-event-card:hover { border-color: rgba(0,122,243,.4); transform: translateY(-2px); }
.dl-event-card--promoted { border-color: rgba(254,105,56,.3); }
.dl-event-card-link { display: block; }
.dl-event-img {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: var(--dl-bg-alt);
}
.dl-event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dl-event-card:hover .dl-event-img img { transform: scale(1.04); }
.dl-event-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dl-bg-alt), var(--dl-bg-card));
}
.dl-event-img-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.15);
}
.dl-event-date-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--dl-orange); color: #fff;
  border-radius: 5px; padding: 3px 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.dl-event-cat-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  border-radius: 20px; padding: 2px 9px;
  font-size: 10px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase;
}
.dl-sponsored-badge, .dl-featured-badge {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 3px;
  letter-spacing: .5px; text-transform: uppercase;
}
.dl-sponsored-badge { background: rgba(254,105,56,.3); color: #FE6938; border: 1px solid rgba(254,105,56,.4); }
.dl-featured-badge  { background: rgba(0,122,243,.3); color: var(--dl-blue-light); border: 1px solid rgba(0,122,243,.4); }
.dl-event-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.dl-event-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dl-event-time  { font-size: 11px; color: rgba(255,255,255,.35); }
.dl-event-price { font-size: 11px; font-weight: 600; color: #4ade80; background: rgba(74,222,128,.1); padding: 1px 6px; border-radius: 3px; }
.dl-event-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  flex: 1;
}
.dl-event-card-title a { color: #fff; text-decoration: none; }
.dl-event-card-title a:hover { color: var(--dl-blue-light); }
.dl-event-venue {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: rgba(255,255,255,.4);
}
.dl-event-venue svg { color: rgba(255,255,255,.3); flex-shrink: 0; }
.dl-event-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500; color: var(--dl-blue);
  margin-top: 2px;
  transition: color .15s;
}
.dl-event-link:hover { color: var(--dl-blue-light); }

/* ── LISTING CARDS ── */
.dl-listing-card {
  background: var(--dl-bg-card);
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.dl-listing-card:hover { border-color: rgba(0,122,243,.35); transform: translateY(-2px); }
.dl-listing-card.dl-listing-tier-premium { border-color: rgba(254,105,56,.3); }
.dl-listing-img-wrap {
  display: block;
  position: relative;
  height: 130px;
  overflow: hidden;
  background: var(--dl-bg-alt);
}
.dl-listing-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dl-listing-card:hover .dl-listing-img-wrap img { transform: scale(1.04); }
.dl-listing-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #111, #1a1a2e);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px;
  text-transform: uppercase; color: rgba(255,255,255,.15);
  text-decoration: none;
}
.dl-listing-cat-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.75);
  border-radius: 20px; padding: 2px 8px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px;
}
.dl-listing-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dl-tier-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-bottom: 2px; letter-spacing: .4px; }
.dl-tier-premium  { background: rgba(254,105,56,.2); color: var(--dl-orange); border: 1px solid rgba(254,105,56,.3); }
.dl-tier-enhanced { background: rgba(0,122,243,.15); color: var(--dl-blue-light); border: 1px solid rgba(0,122,243,.25); }
.dl-tier-featured { background: rgba(234,179,8,.15); color: #fbbf24; border: 1px solid rgba(234,179,8,.25); }
.dl-listing-title { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; text-transform: none; letter-spacing: 0; line-height: 1.3; }
.dl-listing-title a { color: #fff; }
.dl-listing-title a:hover { color: var(--dl-blue-light); }
.dl-listing-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: rgba(255,255,255,.4);
}
.dl-listing-location svg { color: rgba(255,255,255,.3); }
.dl-listing-excerpt { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; flex: 1; }
.dl-listing-cta { font-size: 12px; font-weight: 500; color: var(--dl-blue); margin-top: 2px; transition: color .15s; }
.dl-listing-cta:hover { color: var(--dl-blue-light); }

/* ── FEATURED BUSINESSES ── */
.dl-featured-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}
.dl-feat-main {
  background: var(--dl-bg-card);
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius-lg);
  overflow: hidden;
}
.dl-feat-main-img-wrap {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1e2e, #007AF3);
}
.dl-feat-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dl-feat-placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; padding: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 36px; text-transform: uppercase;
  color: rgba(255,255,255,.2); letter-spacing: 2px;
}
.dl-feat-main-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--dl-orange); color: #fff;
  border-radius: 5px; padding: 5px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.dl-feat-main-body { padding: 20px 22px; }
.dl-feat-main-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 24px; text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 8px;
}
.dl-feat-main-body p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 14px; }
.dl-feat-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.dl-feat-tag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 3px 10px;
  font-size: 11px; color: rgba(255,255,255,.5);
}
.dl-feat-main-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dl-blue); color: #fff;
  padding: 9px 18px; border-radius: var(--dl-radius-sm);
  font-size: 13px; font-weight: 600;
  transition: background .15s;
  text-decoration: none;
}
.dl-feat-main-link:hover { background: var(--dl-blue-dark); color: #fff; }
.dl-feat-list { display: flex; flex-direction: column; gap: 10px; }
.dl-feat-item {
  background: var(--dl-bg-card);
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color .2s;
  text-decoration: none;
}
.dl-feat-item:hover { border-color: rgba(0,122,243,.35); }
.dl-feat-item-icon {
  width: 48px; height: 48px;
  border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a0a2e, #4c1d95);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 12px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  overflow: hidden;
}
.dl-feat-item-icon img { width: 100%; height: 100%; object-fit: cover; }
.dl-feat-item-info { flex: 1; min-width: 0; }
.dl-feat-item-info h4 {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.dl-feat-item-info p { font-size: 12px; color: rgba(255,255,255,.4); }
.dl-feat-item-arrow { color: rgba(255,255,255,.2); font-size: 16px; }

/* ── GOVERNMENT STRIP ── */
.dl-gov-strip {
  background: #0d0f1a;
  border-top: 1px solid rgba(99,102,241,.2);
  border-bottom: 1px solid rgba(99,102,241,.2);
  padding: 28px 0;
}
.dl-gov-strip-inner {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.dl-gov-label {
  background: linear-gradient(135deg, rgba(30,27,75,.8), rgba(49,46,129,.6));
  border: 1px solid rgba(99,102,241,.3);
  border-radius: var(--dl-radius);
  padding: 16px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-width: 90px; text-align: center; flex-shrink: 0;
}
.dl-gov-label svg { color: #818cf8; }
.dl-gov-label p {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  color: #a5b4fc; margin-top: 8px;
}
.dl-gov-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.dl-gov-item {
  background: #111520;
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 8px; padding: 12px 14px;
  transition: border-color .2s;
  text-decoration: none; display: block;
}
.dl-gov-item:hover { border-color: rgba(99,102,241,.35); }
.dl-gov-item-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: #818cf8; display: block; margin-bottom: 5px;
}
.dl-gov-item h4 {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  text-transform: none; letter-spacing: 0; line-height: 1.4;
  color: rgba(255,255,255,.8); margin-bottom: 4px;
}
.dl-gov-item p { font-size: 11px; color: rgba(255,255,255,.35); }
.dl-gov-footer { text-align: right; margin-top: 12px; }
.dl-gov-footer a { font-size: 12px; color: #818cf8; }
.dl-gov-footer a:hover { color: #a5b4fc; }

/* ── BREADCRUMB ── */
.dl-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 0;
  font-size: 12px; color: rgba(255,255,255,.35);
  margin-bottom: 0;
}
.dl-breadcrumb a { color: rgba(255,255,255,.35); transition: color .15s; }
.dl-breadcrumb a:hover { color: rgba(255,255,255,.7); }
.dl-breadcrumb span { color: rgba(255,255,255,.2); }

/* ── SINGLE PAGE LAYOUTS ── */
.dl-single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  padding: 32px 0 48px;
}
.dl-archive-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  padding: 24px 0 48px;
}
.dl-single-content {}
.dl-single-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* ── EVENT SINGLE ── */
.dl-event-single-hero { padding: 0; min-height: auto; }
.dl-event-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
}
.dl-event-hero-left { flex: 1; }
.dl-event-single-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  color: #fff;
}
.dl-event-detail-strip { display: flex; flex-direction: column; gap: 8px; max-width: 480px; }
.dl-event-detail-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.dl-event-detail-item svg { color: rgba(255,255,255,.3); margin-top: 1px; flex-shrink: 0; }
.dl-event-ticket-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dl-radius);
  padding: 20px;
  min-width: 220px;
  flex-shrink: 0;
}
.dl-ticket-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 28px; text-transform: uppercase;
  color: var(--dl-orange); margin-bottom: 12px;
}
.dl-ticket-primary-btn {
  display: block; text-align: center;
  background: var(--dl-orange); color: #fff;
  padding: 12px; border-radius: var(--dl-radius-sm);
  font-size: 14px; font-weight: 600;
  margin-bottom: 8px; transition: background .15s;
  text-decoration: none;
}
.dl-ticket-primary-btn:hover { background: var(--dl-orange-dark); color: #fff; }
.dl-ticket-secondary-btn {
  display: block; text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  padding: 9px; border-radius: var(--dl-radius-sm);
  font-size: 13px; margin-bottom: 10px;
  transition: all .15s; text-decoration: none;
}
.dl-ticket-secondary-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.dl-ticket-source { font-size: 11px; color: rgba(255,255,255,.25); text-align: center; }
.dl-event-hero-img { max-height: 400px; overflow: hidden; }
.dl-event-hero-img img { width: 100%; height: 400px; object-fit: cover; }

/* ── LISTING SINGLE ── */
.dl-listing-single-hero { padding: 0; min-height: auto; }
.dl-listing-hero-inner {
  display: flex; align-items: center; gap: 20px; padding: 20px 0;
}
.dl-listing-hero-logo {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  background: rgba(255,255,255,.1); flex-shrink: 0;
}
.dl-listing-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.dl-listing-logo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px;
  color: rgba(255,255,255,.5); text-transform: uppercase;
}
.dl-listing-hero-info { flex: 1; }
.dl-listing-hero-cat { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.dl-listing-hero-actions { display: flex; flex-direction: column; gap: 6px; min-width: 160px; }

/* Photo gallery */
.dl-listing-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 160px 80px;
  gap: 4px;
}
.dl-listing-gallery-hero { grid-row: 1/3; }
.dl-listing-gallery img, .dl-listing-gallery-hero img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0;
}
.dl-listing-gallery > div:first-child { border-radius: var(--dl-radius) 0 0 var(--dl-radius); overflow: hidden; }

/* ── ARTICLE HERO ── */
.dl-article-hero { position: relative; min-height: 200px; display: flex; align-items: flex-end; }
.dl-article-hero-img {
  position: absolute; inset: 0;
  img { width: 100%; height: 100%; object-fit: cover; }
}
.dl-article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,14,.95) 0%, rgba(10,10,14,.4) 100%); }
.dl-article-hero-content { position: relative; z-index: 2; padding-bottom: 28px; }
.dl-article-cat-badge {
  display: inline-block;
  background: var(--dl-orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 3px; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.dl-article-hero-content h1 { font-size: clamp(28px, 4vw, 48px); }
.dl-article-byline { font-size: 13px; color: rgba(255,255,255,.4); display: flex; gap: 8px; align-items: center; margin-top: 8px; }

/* ── PROSE (body copy) ── */
.dl-prose p    { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; margin-bottom: 1.2em; }
.dl-prose h2   { font-size: 26px; margin: 1.6em 0 .6em; color: #fff; }
.dl-prose h3   { font-size: 20px; margin: 1.4em 0 .5em; color: #fff; }
.dl-prose ul, .dl-prose ol { padding-left: 24px; margin-bottom: 1.2em; }
.dl-prose ul   { list-style: disc; }
.dl-prose ol   { list-style: decimal; }
.dl-prose li   { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; margin-bottom: .4em; }
.dl-prose a    { color: var(--dl-blue-light); text-decoration: underline; }
.dl-prose blockquote { border-left: 3px solid var(--dl-orange); padding-left: 16px; margin: 1.4em 0; }
.dl-prose blockquote p { color: rgba(255,255,255,.8); font-style: italic; }
.dl-prose img  { border-radius: var(--dl-radius); margin: 1.4em 0; }

/* ── SIDEBAR COMPONENTS ── */
.dl-sidebar-card {
  background: var(--dl-bg-card);
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  overflow: hidden;
}
.dl-sidebar-card-title {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  color: rgba(255,255,255,.5); padding: 12px 14px;
  border-bottom: 1px solid var(--dl-border);
  background: rgba(255,255,255,.02);
  margin: 0;
}
.dl-sidebar-event-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px;
  border-bottom: 1px solid var(--dl-border);
  text-decoration: none;
  transition: background .12s;
}
.dl-sidebar-event-item:last-child { border-bottom: none; }
.dl-sidebar-event-item:hover { background: rgba(255,255,255,.03); }
.dl-sidebar-event-date {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; color: var(--dl-orange); min-width: 36px; flex-shrink: 0;
}
.dl-sidebar-event-title { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.4; }
.dl-sidebar-newsletter {
  background: rgba(0,122,243,.1);
  border: 1px solid rgba(0,122,243,.2);
  border-radius: var(--dl-radius);
  padding: 16px;
}
.dl-sidebar-newsletter h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px;
  margin-bottom: 6px; color: #fff;
}
.dl-sidebar-newsletter p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.dl-sidebar-promote-cta {
  background: rgba(254,105,56,.08);
  border: 1px solid rgba(254,105,56,.2);
  border-radius: var(--dl-radius);
  padding: 16px;
}
.dl-sidebar-promote-cta h3 { font-size: 16px; margin-bottom: 6px; }
.dl-sidebar-promote-cta p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.dl-sidebar-listing-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--dl-border);
  text-decoration: none; transition: background .12s;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.dl-sidebar-listing-item:last-child { border-bottom: none; }
.dl-sidebar-listing-item:hover { background: rgba(255,255,255,.03); }

/* ── AD UNITS ── */
.dl-ad-unit {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: var(--dl-radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100px;
  padding: 16px;
}
.dl-ad-sidebar { min-height: 260px; }
.dl-ad-in-article { min-height: 100px; margin: 24px 0; }
.dl-ad-in-content { min-height: 100px; margin: 20px 0; }
.dl-ad-label { font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .5px; text-transform: uppercase; }

/* ── FILTERS ── */
.dl-filters-bar {
  padding: 12px 0;
  border-bottom: 1px solid var(--dl-border);
  margin-bottom: 0;
}
.dl-filters-form {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 1;
}
.dl-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.dl-filter-group { display: flex; align-items: center; gap: 6px; }
.dl-filter-label { font-size: 12px; color: rgba(255,255,255,.4); white-space: nowrap; }
.dl-filter-btns { display: flex; gap: 4px; }
.dl-filter-btn {
  padding: 6px 14px;
  border-radius: var(--dl-radius-sm);
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .15s;
}
.dl-filter-btn:hover { color: #fff; background: rgba(255,255,255,.08); }
.dl-filter-btn.active { background: rgba(0,122,243,.2); border-color: rgba(0,122,243,.4); color: var(--dl-blue-light); }
.dl-filter-select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dl-radius-sm);
  color: rgba(255,255,255,.7);
  font-size: 13px; padding: 6px 10px;
}
.dl-filter-select:focus { outline: none; border-color: var(--dl-blue); }
.dl-filter-clear { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: underline; }
.dl-filter-clear:hover { color: rgba(255,255,255,.6); }
.dl-submit-event-btn { white-space: nowrap; }

/* ── PAGINATION ── */
.dl-pagination { display: flex; justify-content: center; gap: 6px; padding: 24px 0; }
.dl-page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dl-radius-sm);
  font-size: 13px; color: rgba(255,255,255,.5);
  text-decoration: none; transition: all .15s;
}
.dl-page-btn:hover { background: rgba(255,255,255,.05); color: #fff; }
.dl-page-btn.active { background: var(--dl-blue); border-color: var(--dl-blue); color: #fff; }

/* ── PRICING PAGE ── */
.dl-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.dl-pricing-card {
  background: var(--dl-bg-card);
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius-lg);
  padding: 24px;
  position: relative;
}
.dl-pricing-card--featured { border: 2px solid var(--dl-blue); }
.dl-pricing-popular-badge {
  background: var(--dl-blue); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--dl-radius-sm); display: inline-block;
  margin-bottom: 12px; letter-spacing: .3px;
}
.dl-pricing-tier { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.dl-pricing-price { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: #fff; line-height: 1; margin: 10px 0; }
.dl-pricing-price span { font-size: 18px; font-weight: 400; color: rgba(255,255,255,.4); }
.dl-pricing-desc { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; line-height: 1.5; }
.dl-pricing-features { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.dl-pricing-features li {
  font-size: 13px; color: rgba(255,255,255,.6); padding-left: 18px; position: relative;
}
.dl-pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: #4ade80; font-size: 12px; font-weight: 700;
}

/* ── FORMS ── */
.dl-form-wrapper { max-width: 640px; margin: 0 auto; }
.dl-form { display: flex; flex-direction: column; gap: 0; }
.dl-form-row { margin-bottom: 16px; }
.dl-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dl-form-field { display: flex; flex-direction: column; gap: 5px; }
.dl-form-field label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); }
.dl-form-field input, .dl-form-field textarea, .dl-form-field select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--dl-radius-sm);
  color: #fff; font-size: 14px; padding: 10px 14px;
  transition: border-color .15s;
}
.dl-form-field input:focus, .dl-form-field textarea:focus {
  outline: none; border-color: var(--dl-blue);
  background: rgba(255,255,255,.07);
}
.dl-form-field input::placeholder { color: rgba(255,255,255,.25); }
.dl-form-field textarea { resize: vertical; min-height: 80px; }
.dl-radio-group { display: flex; gap: 12px; flex-direction: column; padding: 4px 0; }
.dl-radio-label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.7); cursor: pointer; }
.dl-radio-label input { width: 16px; height: 16px; accent-color: var(--dl-blue); }

/* ── STATS PROOF BAR ── */
.dl-stats-proof-bar { background: var(--dl-bg-secondary); border-bottom: 1px solid var(--dl-border); padding: 16px 0; }
.dl-stats-proof-inner { display: flex; justify-content: space-around; }
.dl-stat-proof { text-align: center; }
.dl-stat-proof-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: #fff; }
.dl-stat-proof span { font-size: 13px; color: rgba(255,255,255,.4); }

/* ── NEWSLETTER PAGE ── */
.dl-nl-hero-form input { color: #fff; }
.dl-nl-sponsor-grid { display: grid; grid-template-columns: 1fr 280px; gap: 28px; }
.dl-nl-tier-card {
  background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius-sm); padding: 14px; text-align: center;
}
.dl-nl-tier-price { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: #fff; }
.dl-nl-tier-period { font-size: 12px; color: var(--dl-orange); font-weight: 600; margin-bottom: 4px; }
.dl-nl-tier-desc { font-size: 12px; color: rgba(255,255,255,.4); }
.dl-benefit-card {
  background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius); padding: 20px; text-align: center;
}
.dl-benefit-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.dl-benefit-card h3 { font-size: 16px; margin-bottom: 6px; }
.dl-benefit-card p { font-size: 13px; color: rgba(255,255,255,.45); }

/* ── NEIGHBORHOOD ── */
.dl-hood-stats-bar { background: var(--dl-bg-secondary); border-bottom: 1px solid var(--dl-border); padding: 14px 0; }
.dl-hood-stats-inner { display: flex; justify-content: space-around; }
.dl-hood-stat { text-align: center; }
.dl-hood-stat-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: #fff; }
.dl-hood-stat span { font-size: 12px; color: rgba(255,255,255,.4); }
.dl-hood-tabs-bar { background: rgba(255,255,255,.02); border-bottom: 1px solid var(--dl-border); overflow-x: auto; scrollbar-width: none; }
.dl-hood-tabs { display: flex; max-width: var(--dl-container); margin: 0 auto; padding: 0 24px; }
.dl-hood-tab {
  padding: 12px 16px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.4); border-bottom: 2px solid transparent;
  white-space: nowrap; transition: all .15s; text-decoration: none;
}
.dl-hood-tab:hover { color: #fff; }
.dl-hood-tab.active { color: #fff; border-bottom-color: var(--dl-orange); }
.dl-hood-section { margin-bottom: 8px; }
.dl-hood-pill {
  display: inline-block;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; color: rgba(255,255,255,.5);
  transition: all .15s; text-decoration: none;
}
.dl-hood-pill:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ── LISTING SINGLE ── */
.dl-listing-section { margin-bottom: 24px; }
.dl-listing-section h2 { font-size: 20px; margin-bottom: 12px; }
.dl-listing-section h3 { font-size: 16px; margin-bottom: 10px; }
.dl-listing-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.dl-listing-tag { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 4px 12px; font-size: 12px; color: rgba(255,255,255,.5); }
.dl-hours-table { display: flex; flex-direction: column; gap: 1px; }
.dl-hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.dl-hours-day { font-size: 13px; color: rgba(255,255,255,.5); }
.dl-hours-time { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); }
.dl-listing-info-card {}
.dl-listing-info-list { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.dl-info-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.65); }
.dl-info-icon { flex-shrink: 0; font-size: 14px; }
.dl-info-row a { color: var(--dl-blue-light); }
.dl-upgrade-cta {
  background: rgba(254,105,56,.08); border: 1px solid rgba(254,105,56,.2);
  border-radius: var(--dl-radius); padding: 16px;
}
.dl-upgrade-cta h4 { font-size: 15px; margin-bottom: 6px; }
.dl-upgrade-cta p { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.dl-venue-card {
  background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius); padding: 16px; margin: 20px 0;
}
.dl-venue-card h3 { font-size: 14px; margin-bottom: 12px; }
.dl-venue-card-inner { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.dl-venue-info h4 { font-size: 15px; color: #fff; margin-bottom: 4px; }
.dl-venue-info p { font-size: 13px; color: rgba(255,255,255,.4); }
.dl-promoted-notice {
  border-radius: var(--dl-radius); padding: 12px 14px;
}
.dl-promoted-sponsored { background: rgba(254,105,56,.1); border: 1px solid rgba(254,105,56,.25); }
.dl-promoted-featured  { background: rgba(0,122,243,.1); border: 1px solid rgba(0,122,243,.25); }
.dl-promoted-notice strong { display: block; font-size: 13px; color: #fff; margin-bottom: 3px; }
.dl-promoted-notice p { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── BLOG ── */
.dl-blog-card {
  background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius); overflow: hidden;
  transition: border-color .2s; display: flex; flex-direction: column;
}
.dl-blog-card:hover { border-color: rgba(0,122,243,.3); }
.dl-blog-card-img { display: block; overflow: hidden; height: 160px; position: relative; background: var(--dl-bg-alt); }
.dl-blog-card-img img, .dl-blog-card-img-el { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dl-blog-card:hover .dl-blog-card-img img { transform: scale(1.04); }
.dl-blog-cat-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--dl-orange); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 3px; letter-spacing: .3px; text-transform: uppercase;
}
.dl-blog-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.dl-blog-card-body h3 { font-size: 16px; color: #fff; text-transform: none; letter-spacing: 0; line-height: 1.3; }
.dl-blog-card-body h3 a { color: #fff; }
.dl-blog-card-body h3 a:hover { color: var(--dl-blue-light); }
.dl-blog-card-body p { font-size: 13px; flex: 1; }
.dl-blog-read-more { font-size: 13px; font-weight: 500; color: var(--dl-blue); margin-top: 4px; }
.dl-author-box {
  display: flex; align-items: center; gap: 16px;
  background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius); padding: 16px; margin: 28px 0;
}
.dl-author-avatar { border-radius: 50%; flex-shrink: 0; }
.dl-author-box h4 { font-size: 15px; margin-bottom: 4px; }
.dl-author-box p { font-size: 13px; color: rgba(255,255,255,.5); }
.dl-related-posts { margin-top: 28px; }
.dl-related-posts h3 { font-size: 20px; margin-bottom: 14px; }
.dl-related-card {
  display: block; background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius); overflow: hidden; transition: border-color .15s;
  text-decoration: none;
}
.dl-related-card:hover { border-color: rgba(0,122,243,.3); }
.dl-related-card img { width: 100%; height: 100px; object-fit: cover; }
.dl-related-card h4 {
  padding: 10px 12px; font-size: 13px; font-weight: 500;
  text-transform: none; letter-spacing: 0; color: rgba(255,255,255,.7);
}
.dl-toc { background: var(--dl-bg-card); border: 1px solid var(--dl-border); border-radius: var(--dl-radius); padding: 14px; }
.dl-toc-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.dl-toc-list { display: flex; flex-direction: column; gap: 6px; list-style: none; }
.dl-toc-list li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; }
.dl-toc-list li a:hover { color: var(--dl-blue-light); }
.dl-post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.dl-post-tags a { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 3px 10px; font-size: 12px; color: rgba(255,255,255,.5); }

/* ── MISC ── */
.dl-no-results, .dl-no-results-box {
  text-align: center; padding: 48px 24px;
  background: var(--dl-bg-card); border: 1px solid var(--dl-border); border-radius: var(--dl-radius);
}
.dl-no-results-box h3 { font-size: 22px; margin-bottom: 8px; }
.dl-no-results-box p { color: rgba(255,255,255,.5); margin-bottom: 16px; }
.dl-no-results a, .dl-no-results-box a { color: var(--dl-blue-light); }
.dl-standard-page { padding: 40px 0 60px; max-width: 800px; }
.dl-page-hero { padding: 36px 0; border-bottom: 1px solid var(--dl-border); margin-bottom: 0; }
.dl-page-hero h1 { font-size: clamp(28px, 4vw, 48px); }
.dl-404-card {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--dl-bg-card); border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius); padding: 20px;
  transition: border-color .2s; text-decoration: none;
}
.dl-404-card:hover { border-color: rgba(0,122,243,.3); }
.dl-404-card strong { font-size: 16px; color: #fff; }
.dl-404-card span { font-size: 13px; color: rgba(255,255,255,.4); }
.dl-submit-strip {
  background: var(--dl-bg-secondary);
  border-top: 1px solid var(--dl-border); padding: 28px 0;
}
.dl-submit-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dl-submit-strip h3 { font-size: 20px; margin-bottom: 4px; }
.dl-submit-strip p { font-size: 13px; color: rgba(255,255,255,.45); }

/* ── NEWSLETTER STRIP (footer above footer) ── */
.dl-newsletter-strip {
  background: var(--dl-bg-secondary);
  border-top: 1px solid var(--dl-border);
  padding: 28px 0;
}
.dl-newsletter-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.dl-newsletter-text h3 { font-size: 22px; margin-bottom: 4px; }
.dl-newsletter-text p { font-size: 14px; color: rgba(255,255,255,.5); }
.dl-newsletter-inline { display: flex; gap: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--dl-radius-sm); overflow: hidden; min-width: 340px; }
.dl-newsletter-inline input { flex: 1; background: transparent; border: none; outline: none; padding: 12px 16px; font-size: 14px; color: #fff; }
.dl-newsletter-inline input::placeholder { color: rgba(255,255,255,.3); }
.dl-newsletter-inline button { background: var(--dl-orange); color: #fff; padding: 0 20px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; white-space: nowrap; }
.dl-newsletter-inline button:hover { background: var(--dl-orange-dark); }

/* ── FOOTER ── */
.dl-footer { background: #08080b; border-top: 1px solid rgba(255,255,255,.05); padding: 48px 0 28px; }
.dl-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.dl-footer-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 22px; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; display: block; margin-bottom: 10px; text-decoration: none;
}
.dl-footer-logo span { color: var(--dl-orange); }
.dl-footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.dl-footer-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dl-orange); color: #fff;
  padding: 10px 18px; border-radius: var(--dl-radius-sm);
  font-size: 13px; font-weight: 600; transition: background .15s;
  text-decoration: none;
}
.dl-footer-cta:hover { background: var(--dl-orange-dark); color: #fff; }
.dl-footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,.25);
  margin-bottom: 14px; font-family: 'DM Sans', sans-serif;
}
.dl-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.dl-footer-col li a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .15s; }
.dl-footer-col li a:hover { color: #fff; }
.dl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.dl-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.2); }
.dl-footer-bottom p a { color: rgba(255,255,255,.2); }
.dl-footer-legal { display: flex; gap: 20px; }
.dl-footer-legal a { font-size: 12px; color: rgba(255,255,255,.2); transition: color .15s; }
.dl-footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dl-featured-grid    { grid-template-columns: 1fr; }
  .dl-feat-list        { display: grid; grid-template-columns: 1fr 1fr; }
  .dl-footer-grid      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .dl-single-layout,
  .dl-archive-layout   { grid-template-columns: 1fr; }
  .dl-single-sidebar,
  .dl-archive-sidebar  { display: grid; grid-template-columns: 1fr 1fr; }
  .dl-gov-items        { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .dl-nav-links        { display: none; }
  .dl-nav-cta          { display: none; }
  .dl-mobile-toggle    { display: flex; }
  .dl-mobile-menu.open { display: block; }
  .dl-grid-3           { grid-template-columns: 1fr 1fr; }
  .dl-grid-4           { grid-template-columns: 1fr 1fr; }
  .dl-events-grid.dl-grid-3 { grid-template-columns: 1fr 1fr; }
  .dl-listings-grid.dl-grid-3 { grid-template-columns: 1fr 1fr; }
  .dl-hero-h1          { font-size: 52px; }
  .dl-footer-grid      { grid-template-columns: 1fr; gap: 24px; }
  .dl-pricing-grid     { grid-template-columns: 1fr; max-width: 400px; }
  .dl-nl-sponsor-grid  { grid-template-columns: 1fr; }
  .dl-gov-items        { grid-template-columns: 1fr; }
  .dl-form-2col        { grid-template-columns: 1fr; }
  .dl-event-hero-inner { flex-direction: column; }
  .dl-listing-hero-inner { flex-wrap: wrap; }
  .dl-listing-gallery  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dl-listing-gallery-hero { grid-row: auto; }
  .dl-submit-strip-inner { flex-direction: column; text-align: center; }
  .dl-newsletter-strip-inner { flex-direction: column; text-align: center; }
  .dl-nl-hero-form, .dl-newsletter-inline { min-width: auto; width: 100%; }
}

@media (max-width: 480px) {
  .dl-grid-3, .dl-grid-4, .dl-events-grid.dl-grid-3 { grid-template-columns: 1fr; }
  .dl-hero-h1 { font-size: 44px; }
  .dl-container { padding: 0 16px; }
  .dl-cat-tabs-inner { padding: 0 16px; }
  .dl-filters-form { flex-direction: column; align-items: flex-start; }
}

/* ── WP ADMIN BAR OFFSET ── */
.admin-bar .dl-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .dl-header { top: 46px; }
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--dl-blue);
  outline-offset: 2px;
}
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute; overflow: hidden;
  height: 1px; width: 1px; padding: 0; border: 0;
}
