/**
 * 360DailyTrend Homepage Layout Styles v5.1.0
 * Editorial hierarchy: A.Hero → B.Top Stories → C.In Focus → D.Latest → E.Trending → F.Categories → G.Sidebar → H.Footer
 * Inter font, flat design, professional spacing
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   HOMEPAGE LAYOUT WRAPPER
   ============================================ */

.dt-homepage-layout {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.dt-homepage-layout *,
.dt-homepage-layout *::before,
.dt-homepage-layout *::after {
  box-sizing: border-box;
}

/* Hide tagDiv content blocks that leak BELOW our custom layout.
   IMPORTANT: Do NOT hide header/footer tdc_zones. */
.dt-homepage-layout ~ .tdc_zone,
.dt-homepage-layout ~ .vc_row,
.dt-homepage-layout ~ .wpb_row,
.dt-homepage-layout ~ .td-pb-row,
.dt-homepage-layout ~ [class*="tdi_"],
.dt-homepage-layout ~ [class*="tdb_module"],
.dt-homepage-layout ~ .td_block_wrap,
.dt-homepage-layout ~ .td-container {
  display: none !important;
}

body.home .td-main-content-wrap .tdc_zone .td_module_wrap,
body.home .td-main-content-wrap .tdc_zone .td-block-title-wrap {
  display: none !important;
}

.dt-homepage-layout {
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION TITLES - Green underline accent
   ============================================ */

.dt-section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #0a0a0a !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 3px solid #00b200 !important;
  display: inline-block !important;
}

/* ============================================
   BADGES
   ============================================ */

.dt-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dt-badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.dt-badge:hover { opacity: 0.85; }
.dt-badge-edition { background: #0066cc; color: #fff; }
.dt-badge-category { background: #00b200; color: #fff; }

/* ============================================
   BLOCK A: HERO — 1 dominant (70%) + 4-6 supporting (30%)
   ============================================ */

.dt-hero-block {
  display: grid !important;
  grid-template-columns: 7fr 3fr !important;
  gap: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 36px !important;
  border-bottom: 2px solid #eee !important;
}

/* Lead story (left 70%) */
.dt-hero-lead {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid #eee;
}

.dt-hero-lead-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.dt-hero-lead-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 18px;
}

.dt-hero-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dt-hero-lead:hover .dt-hero-lead-image img {
  transform: scale(1.03);
}

.dt-hero-lead .dt-badge {
  align-self: flex-start;
  margin-bottom: 10px;
}

.dt-hero-lead-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  margin: 0 0 14px 0 !important;
  letter-spacing: -0.5px !important;
}

.dt-hero-lead-title a {
  color: #0a0a0a !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.dt-hero-lead-title a:hover {
  color: #00b200 !important;
}

.dt-hero-lead-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #444;
  margin: 0 0 14px 0;
  font-weight: 400;
}

.dt-hero-lead-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Supporting headlines (right 30%) */
.dt-hero-supporting {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 28px;
}

.dt-hero-supporting-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.dt-hero-supporting-item:first-child { padding-top: 0; }
.dt-hero-supporting-item:last-child { border-bottom: none; }

.dt-hero-supporting-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  overflow: hidden;
  display: block;
}

.dt-hero-supporting-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-hero-supporting-item:hover .dt-hero-supporting-thumb img {
  transform: scale(1.05);
}

.dt-hero-supporting-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.dt-hero-supporting-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00b200;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.dt-hero-supporting-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 4px 0;
}

.dt-hero-supporting-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-hero-supporting-title a:hover { color: #00b200; }

.dt-hero-supporting-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
  font-weight: 500;
}

/* ============================================
   BLOCK B: TOP STORIES GRID — HuffPost-style 3x2
   ============================================ */

.dt-top-stories-grid {
  margin-bottom: 0;
  padding: 36px 0 32px;
  border-bottom: 2px solid #eee;
}

.dt-top-stories-inner {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.dt-top-story-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.dt-top-story-imglink {
  display: block;
  text-decoration: none;
  overflow: hidden;
  margin-bottom: 12px;
}

.dt-top-story-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dt-top-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dt-top-story-card:hover .dt-top-story-img img {
  transform: scale(1.04);
}

.dt-top-story-noimg {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.dt-top-story-card .dt-badge {
  margin-bottom: 8px;
  align-self: flex-start;
}

.dt-top-story-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.dt-top-story-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-top-story-title a:hover { color: #00b200; }

.dt-top-story-time {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* ============================================
   BLOCK C: IN FOCUS — 1 featured + 3 supporting
   ============================================ */

.dt-infocus-block {
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-infocus-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 28px !important;
}

.dt-infocus-featured {
  display: flex;
  flex-direction: column;
}

.dt-infocus-featured-imglink {
  display: block;
  text-decoration: none;
  overflow: hidden;
  margin-bottom: 14px;
}

.dt-infocus-featured-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dt-infocus-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dt-infocus-featured:hover .dt-infocus-featured-img img { transform: scale(1.03); }

.dt-infocus-featured-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.dt-infocus-featured-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-infocus-featured-title a:hover { color: #00b200; }

.dt-infocus-featured-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 8px 0;
}

.dt-infocus-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.dt-infocus-supporting {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dt-infocus-supporting-card {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.dt-infocus-supporting-card:first-child { padding-top: 0; }
.dt-infocus-supporting-card:last-child { border-bottom: none; }

.dt-infocus-supporting-imglink {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
}

.dt-infocus-supporting-img {
  width: 120px;
  height: 85px;
  overflow: hidden;
}

.dt-infocus-supporting-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-infocus-supporting-card:hover .dt-infocus-supporting-img img { transform: scale(1.05); }

.dt-infocus-supporting-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.dt-infocus-supporting-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-infocus-supporting-title a:hover { color: #00b200; }

/* ============================================
   MAIN CONTENT + SIDEBAR LAYOUT
   ============================================ */

.dt-main-with-sidebar {
  display: grid !important;
  grid-template-columns: 1fr 320px !important;
  gap: 40px !important;
  margin-top: 40px !important;
  padding-top: 32px !important;
  border-top: 2px solid #eee !important;
}

.dt-main-column {
  min-width: 0;
}

/* ============================================
   SIDEBAR (desktop only)
   ============================================ */

.dt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 20px;
  align-self: start;
}

.dt-sidebar-widget {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 24px;
}

.dt-sidebar-widget-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #0a0a0a !important;
  margin: 0 0 16px 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 3px solid #00b200 !important;
}

/* Newsletter Widget */
.dt-sidebar-newsletter-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 16px 0;
}

.dt-sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dt-sidebar-newsletter-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.dt-sidebar-newsletter-input:focus {
  border-color: #00b200;
}

.dt-sidebar-newsletter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  background: #00b200;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.dt-sidebar-newsletter-btn:hover {
  background: #009a00;
}

/* Mini Trending Widget */
.dt-sidebar-trending-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  counter-reset: sidebar-trending !important;
}

.dt-sidebar-trending-item {
  display: flex !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #eee !important;
  align-items: flex-start !important;
}

.dt-sidebar-trending-item:last-child { border-bottom: none !important; }

.dt-sidebar-trending-rank {
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #00b200 !important;
  line-height: 1 !important;
  min-width: 28px !important;
  flex-shrink: 0 !important;
}

.dt-sidebar-trending-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: #0a0a0a !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.dt-sidebar-trending-link:hover { color: #00b200 !important; }

/* Ad Placeholder Widget */
.dt-sidebar-ad-slot {
  background: #f0f0f0;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-sidebar-ad-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #bbb;
}

/* ============================================
   BLOCK E: TRENDING — Ranked numbered list
   ============================================ */

.dt-trending-ranked {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-trending-ranked-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.dt-trending-ranked-item {
  display: flex !important;
  gap: 16px !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  align-items: center !important;
}

.dt-trending-ranked-item:last-child { border-bottom: none !important; }

.dt-trending-ranked-num {
  font-family: 'Inter', sans-serif !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  color: #bbb !important;
  line-height: 1 !important;
  min-width: 48px !important;
  flex-shrink: 0 !important;
  text-align: center !important;
}

.dt-trending-ranked-item:nth-child(-n+3) .dt-trending-ranked-num {
  color: #00b200 !important;
}

.dt-trending-ranked-item:nth-child(n+4):nth-child(-n+6) .dt-trending-ranked-num {
  color: #666 !important;
}

.dt-trending-ranked-item:nth-child(n+7) .dt-trending-ranked-num {
  color: #888 !important;
}

.dt-trending-ranked-content {
  flex: 1 !important;
  min-width: 0 !important;
}

.dt-trending-ranked-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00b200;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.dt-trending-ranked-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 4px 0 !important;
}

.dt-trending-ranked-title a {
  color: #0a0a0a !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.dt-trending-ranked-title a:hover { color: #00b200 !important; }

.dt-trending-ranked-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
}

.dt-trending-ranked-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 65px;
  overflow: hidden;
  display: block;
}

.dt-trending-ranked-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-trending-ranked-item:hover .dt-trending-ranked-thumb img { transform: scale(1.05); }

/* ============================================
   BLOCK H: FOOTER BLOCKS
   ============================================ */

.dt-footer-blocks {
  margin-top: 48px;
  padding: 40px 0;
  border-top: 3px solid #0a0a0a;
  background: #fafafa;
}

.dt-footer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
}

.dt-footer-col-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #0a0a0a !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 3px solid #00b200 !important;
}

/* Footer Hero block */
.dt-footer-hero-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 8px 0 !important;
}

.dt-footer-hero-title a {
  color: #0a0a0a !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.dt-footer-hero-title a:hover { color: #00b200 !important; }

.dt-footer-hero-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 12px 0;
}

.dt-footer-supporting-item {
  padding: 8px 0;
  border-top: 1px solid #eee;
}

.dt-footer-supporting-item a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.dt-footer-supporting-item a:hover { color: #00b200; }

/* Footer Latest block */
.dt-footer-latest-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dt-footer-latest-item:last-child { border-bottom: none; }

.dt-footer-latest-item a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.dt-footer-latest-item a:hover { color: #00b200; }

.dt-footer-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
}

/* Footer Trending block */
.dt-footer-trending-item {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.dt-footer-trending-item:last-child { border-bottom: none; }

.dt-footer-trending-rank {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #00b200;
  min-width: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}

.dt-footer-trending-item a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.dt-footer-trending-item a:hover { color: #00b200; }

/* Footer Categories block */
.dt-footer-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.dt-footer-cat-item:last-child { border-bottom: none; }

.dt-footer-cat-item a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.2s;
}

.dt-footer-cat-item a:hover { color: #00b200; }

.dt-footer-cat-count {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
  font-weight: 500;
}

/* Legacy hero styles — kept for shortcode backward compat */
.dt-hero-featured {
  display: grid !important;
  grid-template-columns: 7fr 3fr !important;
  gap: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 36px !important;
  border-bottom: 2px solid #eee !important;
}

.dt-hero-main {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid #eee;
}

.dt-hero-main-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.dt-hero-main-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 18px;
}

.dt-hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dt-hero-main:hover .dt-hero-main-image img {
  transform: scale(1.03);
}

.dt-hero-main .dt-badge {
  align-self: flex-start;
  margin-bottom: 10px;
}

.dt-hero-main-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  margin: 0 0 14px 0 !important;
  letter-spacing: -0.5px !important;
}

.dt-hero-main-title a {
  color: #0a0a0a !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.dt-hero-main-title a:hover {
  color: #00b200 !important;
}

.dt-hero-main-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #444;
  margin: 0 0 14px 0;
  font-weight: 400;
}

.dt-hero-main-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Hero sidebar */
.dt-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 28px;
}

.dt-hero-sidebar-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dt-hero-sidebar-link {
  display: block;
  text-decoration: none;
}

.dt-hero-sidebar-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 10px;
}

.dt-hero-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dt-hero-sidebar-card:hover .dt-hero-sidebar-image img {
  transform: scale(1.03);
}

.dt-hero-sidebar-card .dt-badge {
  align-self: flex-start;
  margin-bottom: 6px;
}

.dt-hero-sidebar-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.dt-hero-sidebar-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-hero-sidebar-title a:hover { color: #00b200; }

.dt-hero-sidebar-meta {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* ============================================
   BREAKING / TRENDING TICKER
   ============================================ */

.dt-breaking-ticker {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-top: 3px solid #00b200;
  border-bottom: 1px solid #eee;
  margin-bottom: 36px;
  overflow: hidden;
}

.dt-ticker-label {
  display: flex;
  align-items: center;
  background: #00b200;
  padding: 0 18px;
  flex-shrink: 0;
}

.dt-ticker-label span {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.dt-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.dt-ticker-items {
  display: flex;
  animation: dt-ticker-scroll 35s linear infinite;
  width: max-content;
}

.dt-ticker-items:hover { animation-play-state: paused; }

@keyframes dt-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.dt-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid #eee;
  transition: background 0.2s;
}

.dt-ticker-item:hover { background: #f5f5f5; }

.dt-ticker-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00b200;
  letter-spacing: 0.5px;
}

.dt-ticker-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.dt-ticker-item:hover .dt-ticker-title { color: #00b200; }

/* ============================================
   SECONDARY STORIES GRID (3-column)
   ============================================ */

.dt-secondary-stories {
  margin-bottom: 40px;
  padding-top: 36px;
}

.dt-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dt-story-card {
  display: flex;
  flex-direction: column;
}

.dt-story-image {
  margin-bottom: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.dt-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dt-story-card:hover .dt-story-image img { transform: scale(1.04); }

.dt-story-card .dt-badge {
  margin-bottom: 8px;
  align-self: flex-start;
}

.dt-story-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.dt-story-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-story-title a:hover { color: #00b200; }

.dt-story-time {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* ============================================
   IN FOCUS SECTION (tag pills)
   ============================================ */

.dt-in-focus {
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.dt-in-focus .dt-section-title {
  border-bottom: none !important;
  margin-bottom: 16px !important;
  padding-bottom: 0 !important;
}

.dt-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dt-focus-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #f0f0f0;
  color: #333;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 24px;
  transition: all 0.2s;
}

.dt-focus-tag:hover {
  background: #00b200;
  color: #fff;
}

/* ============================================
   LATEST + TRENDING TWO COLUMNS
   ============================================ */

.dt-latest-trending-wrapper {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 48px !important;
  margin-bottom: 48px !important;
  padding-top: 36px !important;
  border-top: 2px solid #eee !important;
}

.dt-latest-section { margin-bottom: 0; }

.dt-latest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dt-latest-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.dt-latest-item:first-child { padding-top: 0; }
.dt-latest-item:last-child { border-bottom: none; }

.dt-latest-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 64px;
  overflow: hidden;
}

.dt-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-latest-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dt-latest-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.dt-latest-title:hover { color: #00b200; }

.dt-latest-time {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* Trending Section */
.dt-trending-section {
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.dt-trending-section .dt-section-title {
  display: inline-block !important;
  background: transparent !important;
  color: #0a0a0a !important;
  padding: 0 0 12px 0 !important;
  border-bottom: 3px solid #00b200 !important;
  margin-bottom: 20px !important;
  font-size: 15px !important;
}

.dt-trending-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
}

.dt-trending-card {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: opacity 0.2s !important;
}

.dt-trending-card:hover { opacity: 0.9 !important; }

.dt-trending-card-image {
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  overflow: hidden !important;
  margin-bottom: 8px !important;
}

.dt-trending-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.dt-trending-card-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #0a0a0a !important;
  margin: 0 !important;
}

.dt-trending-card:hover .dt-trending-card-title { color: #00b200 !important; }

.dt-trending-card-meta {
  font-size: 11px !important;
  color: #999 !important;
  margin-top: 4px !important;
}

/* Legacy numbered list fallback */
.dt-trending-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  counter-reset: trending !important;
}

.dt-trending-item {
  padding: 10px 16px !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  background: #fafafa !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-left: 3px solid #00b200 !important;
}

.dt-trending-item:last-child { border-bottom: none !important; }

.dt-trending-item::before {
  counter-increment: trending !important;
  content: counter(trending) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #00b200 !important;
  margin-right: 12px !important;
  min-width: 24px !important;
  line-height: 1 !important;
}

.dt-trending-item a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0a0a0a !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
  transition: color 0.2s !important;
}

.dt-trending-item a:hover { color: #00b200 !important; }

@media (min-width: 769px) {
  .dt-trending-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* See All Links */
.dt-see-all {
  display: inline-block;
  margin-top: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00b200;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.dt-see-all:hover { color: #008a00; }

/* ============================================
   CATEGORY SECTIONS (legacy)
   ============================================ */

.dt-category-section {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dt-category-header .dt-section-title {
  margin-bottom: 0 !important;
  padding-bottom: 12px !important;
}

.dt-category-header .dt-see-all { margin-top: 0; }

/* ============================================
   CATEGORY BLOCKS — Editorial Hierarchy
   1 featured (large) + 3 smaller grid + View All
   ============================================ */

.dt-catblock {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-catblock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dt-catblock-header .dt-section-title {
  margin-bottom: 0 !important;
  padding-bottom: 12px !important;
}

.dt-catblock-viewall {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00b200;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.dt-catblock-viewall:hover { color: #008a00; }

/* Grid: featured left (60%) + 3 small right (40%) */
.dt-catblock-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 28px !important;
}

/* Featured post (large) */
.dt-catblock-featured {
  display: flex;
  flex-direction: column;
}

.dt-catblock-featured-imglink {
  display: block;
  text-decoration: none;
  overflow: hidden;
  margin-bottom: 14px;
}

.dt-catblock-featured-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dt-catblock-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dt-catblock-featured:hover .dt-catblock-featured-img img { transform: scale(1.03); }

.dt-catblock-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.dt-catblock-placeholder span {
  color: rgba(255,255,255,0.15);
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}

.dt-catblock-featured-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.dt-catblock-featured-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-catblock-featured-title a:hover { color: #00b200; }

.dt-catblock-featured-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 8px 0;
}

.dt-catblock-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* 3 smaller posts (stacked vertically) */
.dt-catblock-small {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dt-catblock-small-card {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.dt-catblock-small-card:first-child { padding-top: 0; }
.dt-catblock-small-card:last-child { border-bottom: none; }

.dt-catblock-small-imglink {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
}

.dt-catblock-small-img {
  width: 120px;
  height: 85px;
  overflow: hidden;
}

.dt-catblock-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-catblock-small-card:hover .dt-catblock-small-img img { transform: scale(1.05); }

.dt-catblock-small-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dt-catblock-small-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.dt-catblock-small-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-catblock-small-title a:hover { color: #00b200; }

/* ============================================
   CATEGORY FEATURED (L-shape: 1 big + 2 small)
   ============================================ */

.dt-cat-featured-section {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-cat-featured-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 28px !important;
}

.dt-cat-featured-main {
  display: flex;
  flex-direction: column;
}

.dt-cat-featured-main-image {
  display: block;
  text-decoration: none;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 14px;
}

.dt-cat-featured-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dt-cat-featured-main:hover .dt-cat-featured-main-image img { transform: scale(1.03); }

.dt-cat-featured-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.dt-cat-featured-main-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-cat-featured-main-title a:hover { color: #00b200; }

.dt-cat-featured-main-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

.dt-cat-featured-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dt-cat-featured-side-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dt-cat-featured-side-image {
  display: block;
  text-decoration: none;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 8px;
}

.dt-cat-featured-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-cat-featured-side-card:hover .dt-cat-featured-side-image img { transform: scale(1.03); }

.dt-cat-featured-side-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.dt-cat-featured-side-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-cat-featured-side-title a:hover { color: #00b200; }

/* ============================================
   CATEGORY HORIZONTAL SCROLL
   ============================================ */

.dt-cat-scroll-section {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-cat-scroll-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  padding-bottom: 8px;
}

.dt-cat-scroll-track::-webkit-scrollbar { height: 4px; }
.dt-cat-scroll-track::-webkit-scrollbar-track { background: transparent; }
.dt-cat-scroll-track::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.dt-cat-scroll-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s;
}

.dt-cat-scroll-card:hover { transform: translateY(-3px); }

.dt-cat-scroll-card-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 10px;
}

.dt-cat-scroll-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-cat-scroll-card:hover .dt-cat-scroll-card-image img { transform: scale(1.05); }

.dt-cat-scroll-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #0a0a0a;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dt-cat-scroll-card:hover .dt-cat-scroll-card-title { color: #00b200; }

.dt-cat-scroll-card-time { font-size: 11px; color: #999; }

/* ============================================
   EDITION CLUSTERS
   ============================================ */

.dt-edition-clusters {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-edition-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #eee;
}

.dt-edition-tab {
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -2px;
}

.dt-edition-tab:hover { color: #333; }
.dt-edition-tab.dt-tab-active { color: #00b200; border-bottom-color: #00b200; }

.dt-edition-panel { display: none; }
.dt-edition-panel.dt-panel-active { display: block; }

.dt-edition-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.dt-edition-card { display: flex; flex-direction: column; }

.dt-edition-card-image {
  display: block;
  text-decoration: none;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 10px;
}

.dt-edition-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-edition-card:hover .dt-edition-card-image img { transform: scale(1.03); }

.dt-edition-card .dt-badge { align-self: flex-start; margin-bottom: 6px; }

.dt-edition-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 4px 0;
}

.dt-edition-card-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-edition-card-title a:hover { color: #00b200; }
.dt-edition-card-time { font-size: 12px; color: #999; }

/* ============================================
   ANALYSIS & INSIGHTS
   ============================================ */

.dt-analysis-section {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-analysis-header { margin-bottom: 24px; }

.dt-analysis-header .dt-section-title {
  border-bottom-color: #1a237e !important;
  color: #1a237e !important;
}

.dt-analysis-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 28px !important;
}

.dt-analysis-featured { display: flex; flex-direction: column; }
.dt-analysis-featured a { text-decoration: none; }

.dt-analysis-featured-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 14px;
}

.dt-analysis-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-analysis-featured:hover .dt-analysis-featured-image img { transform: scale(1.03); }

.dt-analysis-featured .dt-badge { align-self: flex-start; margin-bottom: 8px; }

.dt-analysis-featured-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.dt-analysis-featured-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-analysis-featured-title a:hover { color: #1a237e; }

.dt-analysis-featured-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 8px 0;
}

.dt-analysis-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.dt-analysis-list { display: flex; flex-direction: column; gap: 0; }

.dt-analysis-list-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  align-items: center;
  transition: background 0.2s;
}

.dt-analysis-list-item:first-child { padding-top: 0; }
.dt-analysis-list-item:last-child { border-bottom: none; }
.dt-analysis-list-item:hover { background: #fafafa; }

.dt-analysis-list-content { flex: 1; min-width: 0; }

.dt-analysis-list-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #0a0a0a;
  margin: 0 0 4px 0;
  transition: color 0.2s;
}

.dt-analysis-list-item:hover .dt-analysis-list-title { color: #1a237e; }

.dt-analysis-list-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 65px;
  overflow: hidden;
}

.dt-analysis-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   MARKETS & FINANCE
   ============================================ */

.dt-markets-section {
  margin-bottom: 48px;
  padding: 32px;
  background: #0d1117;
  border-radius: 0;
}

.dt-markets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dt-markets-title {
  color: #00d4aa !important;
  border-bottom-color: #00d4aa !important;
  margin-bottom: 0 !important;
  padding-bottom: 10px !important;
}

.dt-markets-header .dt-see-all { color: #00d4aa; margin-top: 0; }
.dt-markets-header .dt-see-all:hover { color: #fff; }

.dt-markets-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.dt-market-card {
  display: flex;
  flex-direction: column;
  background: #161b22;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dt-market-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,212,170,0.12);
}

.dt-market-card-image {
  display: block;
  text-decoration: none;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dt-market-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.dt-market-card:hover .dt-market-card-image img { transform: scale(1.05); }

.dt-market-card-body { padding: 12px 14px 14px; }

.dt-market-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #00d4aa;
  margin-bottom: 6px;
}

.dt-market-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px 0;
}

.dt-market-card-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-market-card-title a:hover { color: #00d4aa; }
.dt-market-card-time { font-size: 11px; color: #8b949e; }

/* ============================================
   YOUTUBE VIDEO SECTION
   ============================================ */

.dt-youtube-section {
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 2px solid #eee;
}

.dt-youtube-player-wrapper {
  display: flex !important;
  flex-direction: row !important;
  background: #111 !important;
  overflow: hidden !important;
  min-height: 400px !important;
}

.dt-youtube-main-player { flex: 1; min-width: 0; }

.dt-youtube-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.dt-youtube-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.dt-youtube-playlist {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
}

.dt-youtube-playlist-header {
  padding: 14px 16px;
  background: #00b200;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.dt-youtube-now-playing {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dt-youtube-playlist-items { flex: 1; overflow-y: auto; overflow-x: hidden; }
.dt-youtube-playlist-items::-webkit-scrollbar { width: 4px; }
.dt-youtube-playlist-items::-webkit-scrollbar-track { background: #333; }
.dt-youtube-playlist-items::-webkit-scrollbar-thumb { background: #666; border-radius: 2px; }

.dt-youtube-playlist-item {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  border-left: 3px solid transparent;
}

.dt-youtube-playlist-item:hover { background: #333; }
.dt-youtube-playlist-item.dt-yt-active { background: #404040; border-left-color: #00b200; }

.dt-yt-thumb { flex-shrink: 0; width: 80px; height: 45px; overflow: hidden; }
.dt-yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dt-yt-info { display: flex; flex-direction: column; min-width: 0; gap: 2px; }

.dt-yt-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dt-youtube-playlist-item:hover .dt-yt-item-title { color: #00b200; }
.dt-yt-item-channel { font-size: 11px; color: #aaa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dt-yt-item-duration { font-size: 10px; color: #888; }

.dt-youtube-notice { background: #fff3cd; border: 1px solid #ffc107; padding: 12px 16px; margin-bottom: 20px; }
.dt-youtube-notice p { margin: 0; font-size: 14px; color: #856404; }
.dt-youtube-notice a { color: #0066cc; font-weight: 600; }

/* ============================================
   SINGLE POST META
   ============================================ */

.dt-post-meta { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.dt-post-meta .dt-badge { font-size: 11px; padding: 4px 12px; }

.dt-post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.dt-post-byline .dt-author { font-weight: 700; color: #333; }
.dt-post-byline .dt-separator { color: #ccc; }
.dt-post-byline .dt-date, .dt-post-byline .dt-read-time { color: #888; }

/* Fallback */
.dt-fallback-img { display: flex; align-items: center; justify-content: center; }

/* ============================================
   HUFFPOST-STYLE SEARCH OVERLAY
   ============================================ */

.dt-search-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(10, 10, 10, 0.97) !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding-top: 12vh !important;
  overflow-y: auto !important;
}

.dt-search-overlay.dt-search-active {
  display: flex !important;
}

.dt-search-overlay-inner {
  width: 90% !important;
  max-width: 680px !important;
  text-align: center !important;
  position: relative !important;
}

.dt-search-close {
  position: absolute !important;
  top: -60px !important;
  right: 0 !important;
  background: none !important;
  border: none !important;
  color: #aaa !important;
  font-size: 36px !important;
  cursor: pointer !important;
  line-height: 1 !important;
  padding: 8px !important;
  transition: color 0.2s !important;
}

.dt-search-close:hover {
  color: #fff !important;
}

.dt-search-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin: 0 0 40px 0 !important;
  letter-spacing: -1px !important;
}

.dt-search-form {
  margin-bottom: 24px !important;
}

.dt-search-input-wrap {
  display: flex !important;
  align-items: center !important;
  background: #222 !important;
  border: 1px solid #444 !important;
  border-radius: 6px !important;
  padding: 0 16px !important;
  transition: border-color 0.2s !important;
}

.dt-search-input-wrap:focus-within {
  border-color: #00b200 !important;
}

.dt-search-icon {
  color: #888 !important;
  flex-shrink: 0 !important;
  margin-right: 12px !important;
}

.dt-search-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  padding: 14px 0 !important;
  width: 100% !important;
}

.dt-search-input::placeholder {
  color: #777 !important;
}

.dt-search-trending {
  margin-top: 32px !important;
}

.dt-search-trending-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 16px 0 !important;
}

.dt-search-trending-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
}

.dt-search-pill {
  display: inline-block !important;
  padding: 8px 16px !important;
  border: 1px solid #4a6a4a !important;
  border-radius: 4px !important;
  color: #8fc98f !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  text-transform: uppercase !important;
}

.dt-search-pill:hover {
  background: #00b200 !important;
  color: #fff !important;
  border-color: #00b200 !important;
}

@media (max-width: 480px) {
  .dt-search-overlay { padding-top: 8vh !important; }
  .dt-search-heading { font-size: 28px !important; margin-bottom: 28px !important; }
  .dt-search-close { top: -44px !important; font-size: 28px !important; }
  .dt-search-pill { font-size: 11px !important; padding: 6px 12px !important; }
}

/* ============================================
   RESPONSIVE - 1024px
   ============================================ */

@media (max-width: 1024px) {
  .dt-homepage-layout .dt-markets-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .dt-homepage-layout .dt-main-with-sidebar { grid-template-columns: 1fr 280px !important; gap: 28px !important; }
}

/* ============================================
   RESPONSIVE - 768px (tablet)
   ============================================ */

@media (max-width: 768px) {
  .dt-homepage-layout { padding: 0 16px !important; }

  /* Hero Block — stack vertically on tablet */
  .dt-homepage-layout .dt-hero-block { grid-template-columns: 1fr !important; gap: 24px !important; }
  .dt-homepage-layout .dt-hero-lead { padding-right: 0 !important; border-right: none !important; }
  .dt-homepage-layout .dt-hero-lead-title { font-size: 28px !important; line-height: 1.12 !important; }
  .dt-homepage-layout .dt-hero-lead-excerpt { font-size: 16px !important; }
  .dt-homepage-layout .dt-hero-supporting { padding-left: 0 !important; border-top: 1px solid #eee !important; padding-top: 16px !important; }
  .dt-homepage-layout .dt-hero-supporting-title { font-size: 14px !important; }

  /* Legacy hero compat */
  .dt-homepage-layout .dt-hero-featured { grid-template-columns: 1fr !important; gap: 24px !important; }
  .dt-homepage-layout .dt-hero-main { padding-right: 0 !important; border-right: none !important; }
  .dt-homepage-layout .dt-hero-main-title { font-size: 28px !important; line-height: 1.12 !important; }
  .dt-homepage-layout .dt-hero-main-excerpt { font-size: 16px !important; }
  .dt-homepage-layout .dt-hero-sidebar { padding-left: 0 !important; flex-direction: row !important; gap: 16px !important; }
  .dt-homepage-layout .dt-hero-sidebar-card { flex: 1 !important; }
  .dt-homepage-layout .dt-hero-sidebar-title { font-size: 15px !important; }

  /* Top Stories — tablet: 2 columns */
  .dt-homepage-layout .dt-top-stories-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .dt-homepage-layout .dt-top-story-title { font-size: 15px !important; }

  /* In Focus — stack */
  .dt-homepage-layout .dt-infocus-grid{ grid-template-columns: 1fr !important; gap: 24px !important; }
  .dt-homepage-layout .dt-infocus-featured-title { font-size: 18px !important; }
  .dt-homepage-layout .dt-infocus-supporting-card { gap: 12px !important; }
  .dt-homepage-layout .dt-infocus-supporting-img { width: 100px !important; height: 70px !important; }
  .dt-homepage-layout .dt-infocus-supporting-title { font-size: 14px !important; }

  /* Main + Sidebar — hide sidebar on tablet */
  .dt-homepage-layout .dt-main-with-sidebar { grid-template-columns: 1fr !important; gap: 0 !important; }
  .dt-homepage-layout .dt-sidebar { display: none !important; }

  .dt-homepage-layout .dt-ticker-label { padding: 0 10px !important; }
  .dt-homepage-layout .dt-ticker-label span { font-size: 10px !important; letter-spacing: 1px !important; }
  .dt-homepage-layout .dt-ticker-item { padding: 10px 16px !important; }
  .dt-homepage-layout .dt-ticker-title { font-size: 12px !important; }

  .dt-homepage-layout .dt-stories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .dt-homepage-layout .dt-story-title { font-size: 15px !important; }
  .dt-homepage-layout .dt-story-card .dt-badge { font-size: 9px !important; padding: 2px 6px !important; }

  .dt-homepage-layout .dt-latest-trending-wrapper { grid-template-columns: 1fr !important; gap: 32px !important; padding-top: 28px !important; }

  .dt-homepage-layout .dt-trending-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .dt-homepage-layout .dt-trending-card-title { font-size: 13px !important; }

  .dt-homepage-layout .dt-analysis-grid { grid-template-columns: 1fr !important; }
  .dt-homepage-layout .dt-analysis-featured-title { font-size: 18px !important; }
  .dt-homepage-layout .dt-analysis-list-title { font-size: 14px !important; }

  .dt-homepage-layout .dt-edition-tabs { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
  .dt-homepage-layout .dt-edition-tab { padding: 8px 16px !important; font-size: 11px !important; white-space: nowrap !important; }
  .dt-homepage-layout .dt-edition-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .dt-homepage-layout .dt-edition-card { flex-direction: row !important; gap: 12px !important; }
  .dt-homepage-layout .dt-edition-card-image { width: 120px !important; flex-shrink: 0 !important; aspect-ratio: 4/3 !important; margin-bottom: 0 !important; }
  .dt-homepage-layout .dt-edition-card-title { font-size: 14px !important; }

  .dt-homepage-layout .dt-markets-section { padding: 20px 16px !important; margin-left: -16px !important; margin-right: -16px !important; }
  .dt-homepage-layout .dt-markets-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .dt-homepage-layout .dt-market-card-title { font-size: 13px !important; }

  .dt-homepage-layout .dt-cat-featured-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .dt-homepage-layout .dt-cat-featured-main-title { font-size: 18px !important; }
  .dt-homepage-layout .dt-cat-featured-side { flex-direction: row !important; gap: 12px !important; }
  .dt-homepage-layout .dt-cat-featured-side-card { flex: 1 !important; }
  .dt-homepage-layout .dt-cat-featured-side-title { font-size: 14px !important; }

  .dt-homepage-layout .dt-cat-scroll-card { flex: 0 0 180px !important; }
  .dt-homepage-layout .dt-cat-scroll-card-title { font-size: 13px !important; }

  /* Category Blocks responsive — tablet */
  .dt-homepage-layout .dt-catblock-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .dt-homepage-layout .dt-catblock-featured-title { font-size: 18px !important; }
  .dt-homepage-layout .dt-catblock-featured-excerpt { font-size: 14px !important; }
  .dt-homepage-layout .dt-catblock-small-card { gap: 12px !important; }
  .dt-homepage-layout .dt-catblock-small-img { width: 100px !important; height: 70px !important; }
  .dt-homepage-layout .dt-catblock-small-title { font-size: 14px !important; }

  .dt-homepage-layout .dt-youtube-player-wrapper { flex-direction: column !important; min-height: auto !important; }
  .dt-homepage-layout .dt-youtube-playlist { width: 100% !important; max-height: 300px !important; }

  /* Trending ranked — tablet */
  .dt-homepage-layout .dt-trending-ranked-num { font-size: 24px !important; min-width: 36px !important; }
  .dt-homepage-layout .dt-trending-ranked-title { font-size: 14px !important; }
  .dt-homepage-layout .dt-trending-ranked-thumb { width: 70px !important; height: 50px !important; }

  /* Footer — tablet: 2 columns */
  .dt-homepage-layout .dt-footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }

  .dt-hero-title { font-size: 32px !important; }
  .dt-hero-excerpt { font-size: 16px !important; }
}

/* ============================================
   RESPONSIVE - 480px (phone)
   ============================================ */

@media (max-width: 480px) {
  /* Hero Block — phone */
  .dt-homepage-layout .dt-hero-lead-title { font-size: 24px !important; letter-spacing: -0.3px !important; }
  .dt-homepage-layout .dt-hero-lead-excerpt { font-size: 15px !important; }
  .dt-homepage-layout .dt-hero-supporting-thumb { width: 60px !important; height: 42px !important; }
  .dt-homepage-layout .dt-hero-supporting-title { font-size: 13px !important; }

  /* Legacy hero compat — phone */
  .dt-homepage-layout .dt-hero-main-title { font-size: 24px !important; letter-spacing: -0.3px !important; }
  .dt-homepage-layout .dt-hero-main-excerpt { font-size: 15px !important; }
  .dt-homepage-layout .dt-hero-sidebar { flex-direction: column !important; gap: 16px !important; }
  .dt-homepage-layout .dt-hero-sidebar-title { font-size: 16px !important; }

  /* In Focus — phone */
  .dt-homepage-layout .dt-infocus-featured-title { font-size: 17px !important; }
  .dt-homepage-layout .dt-infocus-supporting-img { width: 90px !important; height: 65px !important; }
  .dt-homepage-layout .dt-infocus-supporting-title { font-size: 13px !important; }

  /* Top Stories — phone: 1 column */
  .dt-homepage-layout .dt-top-stories-inner { grid-template-columns: 1fr !important; gap: 20px !important; }
  .dt-homepage-layout .dt-top-story-title { font-size: 16px !important; }

  .dt-homepage-layout .dt-stories-grid { grid-template-columns: 1fr !important; }
  .dt-homepage-layout .dt-story-title { font-size: 16px !important; }

  .dt-homepage-layout .dt-markets-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  .dt-homepage-layout .dt-cat-featured-side { flex-direction: column !important; gap: 16px !important; }
  .dt-homepage-layout .dt-cat-scroll-card { flex: 0 0 160px !important; }
  .dt-homepage-layout .dt-cat-scroll-card-title { font-size: 12px !important; }

  /* Category Blocks responsive — phone */
  .dt-homepage-layout .dt-catblock { margin-bottom: 32px !important; padding-top: 24px !important; }
  .dt-homepage-layout .dt-catblock-featured-title { font-size: 17px !important; }
  .dt-homepage-layout .dt-catblock-small-img { width: 90px !important; height: 65px !important; }
  .dt-homepage-layout .dt-catblock-small-title { font-size: 13px !important; }
  .dt-homepage-layout .dt-catblock-viewall { font-size: 12px !important; }

  .dt-homepage-layout .dt-trending-card-title { font-size: 12px !important; }
  .dt-homepage-layout .dt-trending-card-image { aspect-ratio: 1/1 !important; }

  .dt-homepage-layout .dt-youtube-playlist { max-height: 250px !important; }
  .dt-homepage-layout .dt-yt-thumb { width: 70px !important; height: 40px !important; }
  .dt-homepage-layout .dt-yt-item-title { font-size: 11px !important; }

  .dt-hero-title { font-size: 26px !important; }
  .dt-hero-excerpt { font-size: 16px !important; }

  /* Trending ranked — phone */
  .dt-homepage-layout .dt-trending-ranked-num { font-size: 20px !important; min-width: 30px !important; }
  .dt-homepage-layout .dt-trending-ranked-title { font-size: 13px !important; }
  .dt-homepage-layout .dt-trending-ranked-thumb { display: none !important; }

  /* Footer — phone: 1 column */
  .dt-homepage-layout .dt-footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  .dt-homepage-layout .dt-focus-tag { padding: 8px 14px !important; font-size: 12px !important; }
  .dt-homepage-layout .dt-latest-thumb { width: 70px !important; height: 50px !important; }
}
