* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.top-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid #e5e5e5;
  color: #444;
}

.market-mini {
  font-family: Arial, sans-serif;
  font-size: 13px;
  border: 1px solid #111;
  padding: 5px 10px;
  border-radius: 20px;
  background: #fff;
}

.top-trend-box.up {
  color: #047a2c;
}

.top-trend-box.down {
  color: #b00020;
}

.masthead {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 18px 18px;
  text-align: center;
  border-bottom: 3px double #111;
}

.masthead h1 {
  font-size: clamp(40px, 7vw, 78px);
  letter-spacing: -2px;
  font-weight: 900;
  line-height: 1;
}

.masthead p {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  font-family: Arial, sans-serif;
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  border-bottom: 1px solid #111;
  text-align: center;
}

.nav button,
.nav a {
  background: transparent;
  border: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 7px 0;
  white-space: nowrap;
  color: #111;
}

.nav button:hover,
.nav a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .nav {
    justify-content: flex-start;
    gap: 18px;
  }
}

.breaking-bar {
  max-width: 1240px;
  margin: 12px auto 0;
  padding: 10px 18px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  display: flex;
  gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow: hidden;
}

.breaking-bar strong {
  text-transform: uppercase;
}

.breaking-bar span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ddd;
}

.news-card {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 16px;
  background: #fff;
}

.news-card a {
  display: block;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eee;
  margin-bottom: 10px;
}

.hero-grid #leadMain .news-card img {
  height: 360px;
}

.section-label {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-top: 2px solid #111;
  padding-top: 4px;
  margin-bottom: 8px;
}

.news-card h2 {
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.hero-grid #leadMain .news-card h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.news-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

.news-card small {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #777;
}

.read-more-btn {
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.news-card:hover h2 {
  text-decoration: underline;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 26px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 2px solid #111;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 28px;
}

.section-title span {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #666;
}
.main-feed {
  min-width: 0;
}

#newsFeed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-box {
  border: 1px solid #d9d9d9;
  padding: 18px;
  background: #fff;
}

.side-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #111;
}

.side-box p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.market-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.market-list a {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
  font-weight: 700;
  transition: .2s;
}

.market-list a:hover {
  background: #111;
  color: #fff;
}

#mostReadList {
  padding-left: 20px;
}

#mostReadList li {
  margin-bottom: 12px;
  line-height: 1.4;
}

#mostReadList a:hover {
  text-decoration: underline;
}

.latest-update-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.latest-update-link:last-child {
  border-bottom: none;
}

.latest-update-link:hover {
  color: #0056b3;
}

.ad-box {
  height: 280px;
  border: 2px dashed #cfcfcf;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-family: Arial, sans-serif;
  background: #fafafa;
}

.newsletter-input {
  width: 100%;
  padding: 11px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.newsletter-btn {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.newsletter-btn:hover {
  background: #333;
}

.visitor-box {
  text-align: center;
  padding: 14px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.loading {
  text-align: center;
  padding: 40px;
  font-size: 18px;
  color: #666;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.cookie-banner button {
  background: #fff;
  color: #111;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

.footer {
  margin-top: 40px;
  border-top: 2px solid #111;
  padding: 30px 18px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer a {
  margin: 0 14px;
  font-weight: bold;
}

.footer p {
  margin-top: 14px;
  color: #666;
  font-size: 13px;
}

.article-main-img {
  width: 100%;
  margin: 20px 0;
  border-radius: 2px;
}

.article-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
}

.article-intro {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.breadcrumb {
  font-family: Arial, sans-serif;
  color: #777;
  margin-bottom: 12px;
  font-size: 13px;
}

.source-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: bold;
}

#trendAnalysis p {
  margin-bottom: 10px;
}

.no-image-card {
  padding-top: 8px;
}

.no-image-card h2 {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid #leadMain .news-card img {
    height: 280px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .top-strip {
    flex-direction: column;
    gap: 8px;
  }

  .masthead h1 {
    font-size: 42px;
  }

  .masthead p {
    font-size: 11px;
  }

  .nav {
    padding: 10px;
  }

  .breaking-bar {
    margin-top: 8px;
    font-size: 12px;
  }

  .page {
    padding: 12px;
  }

  #newsFeed {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .news-card img {
    height: 220px;
  }

  .news-card h2 {
    font-size: 22px;
  }

  .hero-grid #leadMain .news-card h2 {
    font-size: 30px;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.market-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 18px;
}

.market-header {
  border-bottom: 3px double #111;
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.market-header h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
}

.market-header p {
  font-family: Arial, sans-serif;
  color: #666;
  margin-top: 10px;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}

.chart-box {
  border: 1px solid #ddd;
  min-height: 560px;
  background: #fff;
}

.market-stats {
  display: grid;
  gap: 14px;
}

.stat-card {
  border: 1px solid #ddd;
  padding: 18px;
  background: #fff;
}

.stat-card span {
  display: block;
  font-family: Arial, sans-serif;
  color: #666;
  font-size: 13px;
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 22px;
}

.analysis-box {
  margin-top: 24px;
  border-top: 2px solid #111;
  padding-top: 18px;
}

.analysis-box h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.related-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-family: Arial, sans-serif;
}

.related-table th,
.related-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.related-table th {
  background: #f5f5f5;
}

@media (max-width: 850px) {
  .market-grid {
    grid-template-columns: 1fr;
  }

  .chart-box {
    min-height: 420px;
  }
}

button,
a,
.news-card {
  transition: all 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
}

::selection {
  background: #111;
  color: #fff;
}
.chart-box {
  height: 560px;
  width: 100%;
  overflow: hidden;
}

#tradingview_chart {
  height: 100%;
  width: 100%;
}

#tradingview_chart iframe {
  height: 100% !important;
  width: 100% !important;
}
@media (max-width: 720px) {
  .chart-box {
    height: 420px;
  }
}
.symbol-search-box {
  position: relative;
  width: 260px;
}

#symbolSearch {
  width: 100%;
  padding: 11px;
  border: 1px solid #111;
  font-weight: 700;
}

.symbol-suggestions {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #111;
  z-index: 9999;
  display: none;
  max-height: 260px;
  overflow-y: auto;
}

.symbol-suggestions div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.symbol-suggestions div:hover {
  background: #111;
  color: #fff;
}

.symbol-suggestions small {
  color: #666;
}
/* ================================
   GLOBAL INTEL TIMES MEGA MENU
================================ */

.mega-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 11px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #111;
  position: relative;
  background: #fff;
  z-index: 1000;
}

.mega-item {
  position: relative;
}

.mega-item button {
  background: transparent;
  border: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  padding: 8px 0;
  white-space: nowrap;
}

.mega-item button:hover {
  text-decoration: underline;
}

.mega-menu-wrap {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #111;
  box-shadow: 0 18px 30px rgba(0,0,0,0.10);
  z-index: 999;
}

.mega-menu-wrap.active {
  display: block;
}

.mega-menu {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 18px 30px;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  animation: megaFade 0.18s ease;
}

.mega-menu.active {
  display: grid;
}

@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-col {
  border-right: 1px solid #e5e5e5;
  padding-right: 20px;
  min-height: 210px;
}

.mega-col:last-child {
  border-right: none;
}

.mega-col h4 {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
  color: #555;
}

.mega-col a {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  color: #111;
  margin-bottom: 9px;
  line-height: 1.25;
  cursor: pointer;
}

.mega-col a:hover {
  text-decoration: underline;
}

.mega-col a b {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.mega-col a span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.35;
}

.mega-col p {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* keep menu centered and not left aligned */
.nav.mega-nav {
  justify-content: center !important;
}

/* Mobile */
@media (max-width: 900px) {
  .mega-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
    padding: 10px 14px;
  }

  .mega-menu-wrap {
    position: static;
    box-shadow: none;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    padding: 18px 14px;
    gap: 12px;
  }

  .mega-col {
    border-right: none;
    border-bottom: 1px solid #eee;
    min-height: auto;
    padding-bottom: 12px;
  }

  .mega-col:last-child {
    border-bottom: none;
  }
}
.sticky-nav{

position:sticky;

top:0;

background:#fff;

z-index:9999;

box-shadow:0 4px 12px rgba(0,0,0,.08);

}
/* ===== NYT STYLE LONG HOMEPAGE SECTIONS ===== */

.nyt-alert-board,
.more-free-section,
.editorial-row,
.sports-live,
.video-home,
.more-news,
.athletic-section,
.well-section,
.culture-section,
.audio-section,
.games-section {
  max-width: 1240px;
  margin: 28px auto;
  padding: 18px 0;
  border-top: 1px solid #111;
}

.section-kicker {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.section-kicker span {
  font-weight: 400;
  font-style: italic;
  margin-left: 8px;
}

.nyt-alert-board {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 22px;
  border: 1px solid #111;
  padding: 18px;
}

.live-dot {
  color: #d0021b;
  font-weight: 900;
  font-size: 12px;
  margin-right: 8px;
}

.alert-left h2,
.split-feature h2,
.sports-feature h2,
.athletic-left h2,
.culture-layout h2 {
  font-size: 30px;
  line-height: 1.05;
  margin: 10px 0;
}

.alert-left ul {
  margin-left: 18px;
  color: #333;
}

.alert-media img,
.split-feature img,
.sports-feature img,
.athletic-center img,
.culture-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alert-side {
  border-left: 1px solid #ddd;
  padding-left: 16px;
}

.mini-map-card {
  border: 1px solid #ddd;
  padding: 16px;
  margin-top: 12px;
  background: #f6f6f6;
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.free-grid article {
  border-right: 1px solid #ddd;
  padding-right: 14px;
}

.free-grid img {
  width: 100%;
  height: 85px;
  object-fit: cover;
  margin-bottom: 8px;
}

.free-grid h3 {
  font-size: 19px;
  line-height: 1.15;
}

.free-grid span,
.split-feature span,
.video-card span {
  text-transform: uppercase;
  font-size: 11px;
  color: #666;
}

.row-tabs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 14px;
}

.row-tabs a {
  color: #111;
}

.split-feature,
.sports-feature,
.culture-layout,
.athletic-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: stretch;
}

.split-feature img,
.sports-feature img {
  min-height: 300px;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 18px;
}

.score-strip div {
  padding: 12px;
  border-right: 1px solid #ddd;
}

.score-strip span {
  display: block;
  margin-top: 6px;
}

.video-grid,
.well-grid,
.audio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.video-card {
  position: relative;
  border-right: 1px solid #ddd;
  padding-right: 14px;
}

.video-card img,
.well-grid img,
.audio-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.video-card h3,
.well-grid h3,
.audio-grid h3 {
  font-size: 18px;
  line-height: 1.15;
  margin-top: 10px;
}

.play-btn {
  position: absolute;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.75);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

#moreNewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ddd;
}

.more-news-card {
  padding: 16px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.more-news-card h3 {
  font-size: 20px;
  line-height: 1.15;
}

.more-news-card span {
  font-size: 11px;
  text-transform: uppercase;
  color: #666;
}

.athletic-layout {
  grid-template-columns: 280px 1fr 300px;
}

.athletic-right h3 {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.culture-layout {
  grid-template-columns: 280px 1fr 300px;
}

.culture-layout h3 {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
}

.game-box {
  padding: 22px;
  border-right: 1px solid #ddd;
  min-height: 120px;
}

.game-box h3 {
  font-size: 22px;
}

.homepage-ad {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 36px 0;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-logo {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .nyt-alert-board,
  .split-feature,
  .sports-feature,
  .athletic-layout,
  .culture-layout {
    grid-template-columns: 1fr;
  }

  .free-grid,
  .video-grid,
  .well-grid,
  .audio-grid,
  .score-strip,
  .games-grid,
  #moreNewsGrid {
    grid-template-columns: 1fr;
  }

  .alert-side {
    border-left: none;
    padding-left: 0;
  }

  .video-card img,
  .well-grid img,
  .audio-grid img {
    height: 240px;
  }
}
/* ================= NYT STYLE MEGA MENU ================= */

#mainNav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  min-height: 45px;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.nyt-nav-item {
  position: static;
}

.nyt-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 0;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nyt-nav-link:hover {
  border-bottom-color: #111;
}

.nyt-mega-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  padding: 28px 6%;
  z-index: 9999;
}

.nyt-nav-item:hover .nyt-mega-panel {
  display: block;
}

.nyt-mega-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 35px;
}

.nyt-mega-intro h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.nyt-mega-intro p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.nyt-mega-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: #777;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.nyt-mega-col a {
  display: block;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  margin-bottom: 13px;
}

.nyt-mega-col a:hover {
  text-decoration: underline;
}

.strict-category-head {
  max-width: 1100px;
  margin: 35px auto 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #111;
}

.strict-category-head .eyebrow {
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
}

.strict-category-head h1 {
  font-family: Georgia, serif;
  font-size: 48px;
  margin: 8px 0;
}

.strict-category-head p {
  color: #555;
}

.empty-topic {
  max-width: 900px;
  margin: 40px auto;
  padding: 35px;
  border: 1px solid #ddd;
  background: #fafafa;
}

@media (max-width: 768px) {
  #mainNav {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .nyt-mega-panel {
    position: fixed;
    top: 110px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .nyt-mega-inner {
    grid-template-columns: 1fr;
  }
}
#megaMenuWrap {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 355px;
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
  z-index: 99999;
  padding: 26px 6%;
}

#megaMenuWrap.active {
  display: block;
}

.nyt-panel {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 35px;
}

.nyt-panel-title h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin: 0 0 10px;
}

.nyt-panel-title p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.nyt-panel-col h4 {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 18px;
}

.nyt-panel-col a {
  display: block;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 13px;
}

.nyt-panel-col a:hover {
  text-decoration: underline;
}

#megaNav {
  position: relative;
  z-index: 100000;
}
