/*
Theme Name: IntentSyndicate
Theme URI: https://intentsyndicate.com
Author: Abhishek Agarwal
Description: Custom B2B publishing theme for IntentSyndicate
Version: 1.0.0
Text Domain: intentsyndicate
*/

:root {
  --orange: #E8490C; --orange-dark: #C93D09; --orange-light: #FFF3EE;
  --navy: #0D1B35; --text: #222222; --text-mid: #555555;
  --text-light: #999999; --bg: #F2F2F2; --white: #FFFFFF;
  --border: #E0E0E0; --green: #059669; --purple: #7C3AED; --amber: #D97706;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); padding: 8px 0; }
.top-bar-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.top-bar-text { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; font-family: 'Inter', sans-serif; }
.top-bar-btn {
  background: var(--orange); color: white; border: none;
  padding: 5px 14px; border-radius: 4px; font-size: 11px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px; font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.top-bar-btn:hover { background: var(--orange-dark); }

/* ===== HEADER ===== */
header {
  background: var(--white); border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-top {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.site-logo img { height: 46px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 0; }
.main-nav ul li { list-style: none; position: relative; }
.main-nav a {
  font-size: 12.5px; font-weight: 700; color: var(--text);
  padding: 8px 15px; letter-spacing: 0.8px; text-transform: uppercase;
  position: relative; transition: color 0.2s; display: block;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.2s;
}
.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--orange); }
.main-nav a:hover::after,
.main-nav a.current-menu-item::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; }
.search-btn {
  width: 38px; height: 38px; border: 1.5px solid var(--border); border-radius: 5px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: white; transition: border-color 0.2s; color: var(--text-mid);
}
.search-btn:hover { border-color: var(--orange); }
.search-btn svg { width: 16px; height: 16px; }

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--navy); color: white;
  position: sticky; top: 72px; z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: stretch;
}
.ticker-label {
  background: var(--orange); color: white; font-size: 10px; font-weight: 800;
  padding: 10px 20px; text-transform: uppercase; letter-spacing: 2px;
  white-space: nowrap; display: flex; align-items: center; flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 28px;
}
.ticker-track { overflow: hidden; flex: 1; display: flex; align-items: center; padding: 0 24px; }
.ticker-content {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 12.5px; color: rgba(255,255,255,0.75);
}
.ticker-sep { color: var(--orange); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero-section { max-width: 1300px; margin: 28px auto 0; padding: 0 28px; }

/* Full-width featured hero */
.hero-featured-full {
  display: block; position: relative; border-radius: 10px; overflow: hidden;
  background: var(--navy); margin-bottom: 14px;
}
.hero-full-img {
  height: 500px; background: var(--navy) center/cover no-repeat;
}
.hero-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,10,25,0.92) 0%, rgba(5,10,25,0.35) 55%, transparent 100%);
}
.hero-full-content { position: absolute; bottom: 0; left: 0; padding: 36px; max-width: 760px; }
.hero-full-title {
  font-size: 30px; font-weight: 700; color: white; line-height: 1.3;
  margin: 12px 0 14px; font-family: 'Georgia', serif;
}
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.65); }
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.35); }

/* Hero sub cards row */
.hero-sub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hero-sub-card {
  background: var(--white); border-radius: 8px; overflow: hidden; display: block;
  border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s;
}
.hero-sub-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }
.hero-sub-img {
  height: 130px; background: var(--bg) center/cover no-repeat;
}
.hero-sub-img.it { background-color: #FFF3EE; }
.hero-sub-img.finance { background-color: #ECFDF5; }
.hero-sub-img.hr { background-color: #F5F3FF; }
.hero-sub-img.ai { background-color: #FFFBEB; }
.hero-sub-body { padding: 12px 14px; }
.sub-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.sub-tag.it { color: var(--orange); }
.sub-tag.finance { color: var(--green); }
.sub-tag.hr { color: var(--purple); }
.sub-tag.ai { color: var(--amber); }
.sub-title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 6px; transition: color 0.2s; }
.hero-sub-card:hover .sub-title { color: var(--orange); }
.sub-date { font-size: 11px; color: var(--text-light); }

/* ===== SECTION HEADER ===== */
.sec-div {
  max-width: 1300px; margin: 36px auto 0; padding: 0 28px;
  display: flex; align-items: center; gap: 12px;
}
.sec-bar { width: 4px; height: 22px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.sec-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); white-space: nowrap; }
.sec-line { flex: 1; height: 1px; background: var(--border); }
.sec-more { font-size: 12px; font-weight: 600; color: var(--orange); white-space: nowrap; }
.sec-more:hover { text-decoration: underline; }

/* ===== TRENDING GRID ===== */
.trending-section { max-width: 1300px; margin: 16px auto 0; padding: 0 28px; }
.trending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.t-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.t-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.t-card-img { height: 170px; position: relative; background: var(--bg) center/cover no-repeat; }
.t-card-img.it { background-color: #FFF3EE; }
.t-card-img.finance { background-color: #ECFDF5; }
.t-card-img.hr { background-color: #F5F3FF; }
.t-card-img.ai { background-color: #FFFBEB; }
.t-card-num {
  position: absolute; top: 10px; left: 10px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--orange);
  color: white; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.t-card-body { padding: 14px; }
.t-card-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.t-card-title { font-size: 13.5px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 10px; }
.t-card-foot { display: flex; justify-content: space-between; align-items: center; }
.t-card-date { font-size: 11px; color: var(--text-light); }
.t-card-read { font-size: 11px; font-weight: 700; }

/* ===== AD LEADERBOARD ===== */
.ad-leaderboard {
  max-width: 1300px; margin: 32px auto 0; padding: 0 28px;
}
.ad-leaderboard img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* ===== CONTENT WRAP (Editor's Pick + Sidebar) ===== */
.content-wrap {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 280px; gap: 32px;
}
.main-col { min-width: 0; }

/* Editor's Pick Big */
.ep-big {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; margin-bottom: 20px;
}
.ep-big:hover .ep-big-title { color: var(--orange); }
.ep-big-img { height: 280px; background: var(--navy) center/cover no-repeat; position: relative; }
.ep-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.ep-big-body { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.ep-big-tag { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.ep-big-title { font-size: 20px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 10px; transition: color 0.2s; }
.ep-big-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.ep-big-foot { display: flex; justify-content: space-between; align-items: center; }
.ep-foot-date { font-size: 11px; color: var(--text-light); }
.ep-foot-read { font-size: 12px; font-weight: 700; color: var(--orange); }

/* Editor's Pick List */
.ep-list { display: flex; flex-direction: column; gap: 0; }
.ep-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.ep-item:last-child { border-bottom: none; }
.ep-item:hover .ep-item-title { color: var(--orange); }
.ep-item-num {
  font-size: 24px; font-weight: 800; color: rgba(0,0,0,0.07);
  line-height: 1; flex-shrink: 0; width: 36px; padding-top: 2px;
}
.ep-item-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ep-item-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 4px; transition: color 0.2s; }
.ep-item-date { font-size: 11px; color: var(--text-light); }

/* Latest Articles */
.latest-section { display: flex; flex-direction: column; gap: 0; }
.l-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center;
}
.l-item:last-child { border-bottom: none; }
.l-item:hover .l-title { color: var(--orange); }
.l-img { height: 75px; border-radius: 3px; background: var(--bg) center/cover no-repeat; }
.l-img.it { background-color: #FFF3EE; }
.l-img.finance { background-color: #ECFDF5; }
.l-img.hr { background-color: #F5F3FF; }
.l-img.ai { background-color: #FFFBEB; }
.l-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.l-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 6px; transition: color 0.2s; }
.l-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-light); }
.l-read { font-weight: 700; }
.load-more-btn {
  margin-top: 20px; width: 100%; padding: 12px; border: 2px solid var(--orange);
  background: transparent; color: var(--orange); font-size: 13px; font-weight: 700;
  cursor: pointer; border-radius: 3px; text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.2s;
}
.load-more-btn:hover { background: var(--orange); color: white; }

/* ===== SIDEBAR ===== */
.sidebar-col { position: sticky; top: 148px; align-self: start; }
.sidebar-ad { margin-bottom: 24px; }
.sidebar-ad img { width: 100%; height: auto; display: block; border-radius: 4px; }
.sb-newsletter { background: var(--white); border: 1px solid var(--border); padding: 20px; border-radius: 4px; }
.sb-newsletter h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.sb-newsletter p { font-size: 12px; color: var(--text-mid); margin-bottom: 12px; line-height: 1.5; }
.sb-newsletter input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: 3px;
  font-size: 13px; margin-bottom: 8px; outline: none;
}
.sb-newsletter input:focus { border-color: var(--orange); }
.sb-newsletter button {
  width: 100%; padding: 9px; background: var(--orange); color: white;
  border: none; border-radius: 3px; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.sb-newsletter button:hover { background: var(--orange-dark); }

/* ===== CAT TAGS ===== */
.cat-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 2px;
}
.cat-it { background: var(--orange-light); color: var(--orange); }
.cat-finance { background: #ECFDF5; color: var(--green); }
.cat-hr { background: #F5F3FF; color: var(--purple); }
.cat-ai { background: #FFFBEB; color: var(--amber); }

/* ===== TEXT COLORS ===== */
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-purple { color: var(--purple); }
.text-amber { color: var(--amber); }

/* ===== SINGLE POST ===== */
.single-wrap {
  max-width: 1300px; margin: 32px auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 280px; gap: 32px;
}
.single-main { min-width: 0; }
.single-hero { height: 420px; background: var(--navy) center/cover no-repeat; border-radius: 4px; margin-bottom: 28px; }
.single-cat { margin-bottom: 14px; }
.single-title { font-size: 32px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 16px; font-family: 'Georgia', serif; }
.single-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-mid); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.single-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.single-content h2 { font-size: 22px; margin: 28px 0 12px; }
.single-content h3 { font-size: 18px; margin: 22px 0 10px; }
.single-content p { margin-bottom: 18px; }
.single-content img { border-radius: 4px; margin: 20px 0; }
.single-header { margin-bottom: 24px; }
.single-thumb { width: 100%; height: auto; border-radius: 4px; margin-bottom: 28px; display: block; }
.single-tags { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; }
.single-tag { display: inline-block; padding: 4px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--text-mid); transition: all 0.2s; }
.single-tag:hover { border-color: var(--orange); color: var(--orange); }
.related-posts { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.related-title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; color: var(--text); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: block; }
.related-card:hover .related-card-title { color: var(--orange); }
.related-card-img { height: 130px; background: var(--bg) center/cover no-repeat; }
.related-card-body { padding: 12px; }
.related-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 4px; }
.related-card-title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--text); transition: color 0.2s; }

/* ===== ARCHIVE ===== */
.archive-wrap {
  max-width: 1300px; margin: 32px auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 280px; gap: 32px;
}
.archive-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.archive-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.archive-desc { font-size: 14px; color: var(--text-mid); }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.archive-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: block; transition: box-shadow 0.2s; }
.archive-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.archive-card:hover .archive-card-title { color: var(--orange); }
.archive-card-img { height: 180px; background: var(--bg) center/cover no-repeat; }
.archive-card-img.it { background-color: #FFF3EE; }
.archive-card-img.finance { background-color: #ECFDF5; }
.archive-card-img.hr { background-color: #F5F3FF; }
.archive-card-img.ai { background-color: #FFFBEB; }
.archive-card-body { padding: 16px; }
.archive-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; transition: color 0.2s; }
.archive-card-meta { font-size: 12px; color: var(--text-light); }
.pagination { display: flex; gap: 8px; margin-top: 24px; }
.pagination a, .pagination span {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 3px;
  font-size: 13px; font-weight: 600; color: var(--text);
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); color: white; border-color: var(--orange); }

/* ===== NEWSLETTER FULL WIDTH ===== */
.nl-full {
  background: var(--navy); padding: 56px 28px; margin-top: 48px;
  text-align: center;
}
.nl-full h2 { font-size: 28px; color: white; font-weight: 700; margin-bottom: 8px; }
.nl-full p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.nl-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 13px 18px; border: none; font-size: 14px;
  border-radius: 3px 0 0 3px; outline: none;
}
.nl-form button {
  padding: 13px 24px; background: var(--orange); color: white; border: none;
  font-size: 14px; font-weight: 700; cursor: pointer; border-radius: 0 3px 3px 0;
  transition: background 0.2s; white-space: nowrap;
}
.nl-form button:hover { background: var(--orange-dark); }
.nl-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--orange); padding: 48px 28px 24px; margin-top: 0; }
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 0; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.85); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li a::before { content: '>'; font-size: 11px; opacity: 0.5; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.footer-contact-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 2px; }
.footer-bottom {
  max-width: 1300px; margin: 0 auto; padding-top: 20px;
  display: flex; justify-content: center; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ===== SUBSCRIBE POPUP ===== */
.subscribe-popup {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9999; align-items: center; justify-content: center;
}
.subscribe-popup.active { display: flex; }
.popup-box {
  background: white; border-radius: 6px; padding: 40px; max-width: 440px;
  width: 90%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.popup-close {
  position: absolute; top: 14px; right: 18px; font-size: 24px; cursor: pointer;
  color: var(--text-light); line-height: 1; background: none; border: none;
}
.popup-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.popup-box p { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }
.popup-box input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 3px;
  font-size: 14px; margin-bottom: 10px; outline: none;
}
.popup-box input:focus { border-color: var(--orange); }
.btn-primary {
  width: 100%; padding: 12px; background: var(--orange); color: white; border: none;
  border-radius: 3px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-dark); }
#subMsg { display: none; font-size: 13px; margin-top: 10px; }
.popup-note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 260px; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-featured-img { height: 360px; }
  .hero-featured-title { font-size: 22px; }
  .hero-sidebar { display: none; }
  .trending-grid { grid-template-columns: 1fr; }
  .content-wrap, .single-wrap, .archive-wrap { grid-template-columns: 1fr; }
  .sidebar-col { display: none; }
  .ep-big { grid-template-columns: 1fr; }
  .ep-big-img { height: 200px; }
  .related-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-radius: 3px; }
  .nl-form button { border-radius: 3px; }
  .header-top { padding: 0 16px; }
}
