:root {
  --ink: #071120;
  --muted: #586171;
  --soft: #f8f5ef;
  --white: #fffdf9;
  --line: #e9e1d5;
  --gold: #c48939;
  --gold-dark: #a76d24;
  --navy: #051424;
  --night: #020b14;
  --shadow: 0 20px 50px rgba(22, 29, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
  padding: 0 clamp(20px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo-mark {
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 3.1vw, 3.2rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.logo-text {
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  flex: 1 1 auto;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 28px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button,
.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-button span::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.subscribe-button,
.button,
.newsletter-form button,
.category-card button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subscribe-button,
.button.primary,
.newsletter-form button {
  background: linear-gradient(180deg, #d19a4a, #b97928);
  color: #fff;
  box-shadow: 0 10px 26px rgba(196, 137, 57, 0.25);
}

.subscribe-button {
  padding: 0 24px;
}

.menu-button {
  display: none;
  gap: 4px;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.mobile-menu,
.search-panel {
  display: none;
}

.search-panel.is-open {
  position: sticky;
  top: 84px;
  z-index: 25;
  display: block;
  padding: 16px clamp(20px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.search-box {
  display: flex;
  width: min(860px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 14px 16px;
  outline: none;
}

.search-box button {
  border: 0;
  padding: 0 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

main {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
}

.top-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 0.74fr);
  gap: 22px;
  padding-top: 22px;
}

.hero-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.2fr);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.95) 38%, rgba(255, 255, 255, 0.08) 64%),
    #d9e2e6;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 4vw, 58px);
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-copy h1,
.brand-story h2,
.business-box h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 4.8vw, 4.35rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-copy p:not(.kicker) {
  max-width: 455px;
  color: #101827;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  gap: 10px;
  padding: 0 24px;
}

.button.ghost {
  border-color: #9ca5b2;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.play-dot,
.round-play::before {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  content: "";
}

.hero-photo,
.news-image,
.side-thumb,
.podcast-feature,
.studio-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.city-leader {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 245, 223, 0.75), rgba(212, 157, 87, 0.2) 44%, rgba(5, 13, 23, 0.72)),
    linear-gradient(130deg, #eef6fa 0%, #d9e6eb 34%, #b97928 100%);
}

.city-leader::before,
.city-leader::after,
.skyline,
.leader,
.sun {
  position: absolute;
  content: "";
}

.sun {
  top: 82px;
  left: 70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 188, 0.82), rgba(255, 236, 188, 0));
}

.skyline {
  right: 0;
  bottom: 0;
  left: -30px;
  height: 42%;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(31, 45, 55, 0.72) 7% 10%, transparent 10% 14%, rgba(31, 45, 55, 0.62) 14% 17%, transparent 17% 25%, rgba(31, 45, 55, 0.8) 25% 31%, transparent 31% 39%, rgba(31, 45, 55, 0.64) 39% 44%, transparent 44% 52%, rgba(31, 45, 55, 0.82) 52% 57%, transparent 57% 68%, rgba(31, 45, 55, 0.66) 68% 74%, transparent 74%),
    repeating-linear-gradient(90deg, rgba(5, 17, 28, 0.42) 0 18px, rgba(255, 255, 255, 0.08) 18px 20px);
  clip-path: polygon(0 44%, 8% 30%, 13% 38%, 19% 21%, 26% 36%, 33% 4%, 39% 42%, 47% 18%, 52% 33%, 58% 9%, 64% 39%, 72% 27%, 81% 47%, 90% 22%, 100% 39%, 100% 100%, 0 100%);
}

.city-leader::before {
  right: 43%;
  bottom: 74px;
  width: 5px;
  height: 260px;
  background: rgba(12, 23, 32, 0.55);
  box-shadow: 0 -18px 0 -1px rgba(12, 23, 32, 0.48);
}

.leader {
  right: 16%;
  bottom: 0;
  width: 142px;
  height: 308px;
  background:
    radial-gradient(circle at 50% 15%, #1e211d 0 24px, transparent 25px),
    linear-gradient(86deg, transparent 0 17%, #08121d 18% 34%, #172033 35% 66%, #07111d 67% 83%, transparent 84%);
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.28));
}

.leader::before {
  position: absolute;
  top: 62px;
  left: 18px;
  width: 106px;
  height: 230px;
  border-radius: 48% 48% 2px 2px;
  background: linear-gradient(90deg, #050b13, #18243a, #060b12);
  content: "";
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title a {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-title a::after {
  content: " →";
}

.podcast-panel {
  padding: 18px 0 0;
}

.podcast-feature {
  min-height: 213px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.1)),
    radial-gradient(circle at 76% 34%, #c58a47 0 9%, transparent 10%),
    linear-gradient(125deg, #090b10, #111827 52%, #6a3a20);
}

.podcast-feature > * {
  position: relative;
  z-index: 1;
}

.podcast-portrait::after {
  position: absolute;
  right: 42px;
  bottom: -8px;
  width: 130px;
  height: 205px;
  border-radius: 70px 70px 0 0;
  background:
    radial-gradient(circle at 50% 18%, #c58c65 0 28px, transparent 29px),
    linear-gradient(88deg, transparent 0 13%, #06080b 14% 88%, transparent 89%);
  content: "";
  z-index: 0;
  opacity: 0.95;
}

.episode,
.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.podcast-feature h3 {
  max-width: 310px;
  margin: 26px 0 6px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.podcast-feature p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.media-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.round-play {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
}

.podcast-list article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.podcast-list h3,
.side-news h3 {
  margin-bottom: 3px;
  font-size: 0.86rem;
  line-height: 1.3;
}

.podcast-list p,
.side-news p,
.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.podcast-list time {
  font-weight: 700;
}

.mini-thumb,
.side-thumb {
  display: block;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 28%, #bd835d 0 14px, transparent 15px),
    linear-gradient(145deg, #05080d, #142337 62%, #9d642b);
}

.mini-thumb {
  height: 54px;
}

.mini-thumb.alt {
  background:
    radial-gradient(circle at 70% 20%, #d3a45f 0 14%, transparent 15%),
    linear-gradient(135deg, #101e2c, #5f321f);
}

.trending {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.compact {
  margin-bottom: 12px;
}

.tag-row {
  display: flex;
  gap: clamp(18px, 4vw, 58px);
  overflow-x: auto;
  padding-bottom: 4px;
  font-weight: 900;
  white-space: nowrap;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 26px 0 8px;
}

.headline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.95fr);
  gap: 18px;
}

.news-card,
.quote-card,
.newsletter-card,
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.featured-news {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 258px;
  overflow: hidden;
}

.news-image {
  min-height: 258px;
}

.port-scene {
  background:
    linear-gradient(180deg, rgba(251, 222, 163, 0.4), rgba(6, 21, 33, 0.28)),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(255, 255, 255, 0.24) 23px 25px),
    linear-gradient(150deg, #c7d6dd, #c48639 50%, #062334 100%);
}

.port-scene::before {
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 72%;
  height: 62%;
  background:
    linear-gradient(90deg, #1f3543 0 24%, transparent 24% 30%, #263f4e 30% 56%, transparent 56% 62%, #1b3140 62%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 18px, transparent 18px 34px);
  clip-path: polygon(0 38%, 25% 18%, 28% 0, 31% 18%, 100% 18%, 100% 100%, 0 100%);
  content: "";
}

.port-scene::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(10, 48, 59, 0), #062634);
  content: "";
}

.news-body {
  padding: 28px;
}

.news-body h3 {
  margin: 20px 0 16px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.news-body p {
  color: #3f4651;
}

.meta span::before {
  margin: 0 9px;
  content: "•";
}

.side-news-list {
  display: grid;
  gap: 16px;
}

.side-news {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: start;
}

.side-thumb {
  min-height: 86px;
}

.side-news span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mosque-scene {
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 229, 171, 0.9) 0 18%, transparent 19%),
    linear-gradient(150deg, #d6e2e5, #bc7e31 70%);
}

.desk-scene {
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.6) 0 8%, transparent 9%),
    repeating-linear-gradient(35deg, rgba(9, 18, 28, 0.18) 0 8px, transparent 8px 18px),
    linear-gradient(135deg, #d0b086, #584535);
}

.tech-scene {
  background:
    radial-gradient(circle at 70% 40%, #36b5ce 0 5%, transparent 6%),
    radial-gradient(circle at 35% 28%, #d59a4a 0 7%, transparent 8%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #06111e, #06304c);
}

.right-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.quote-card,
.newsletter-card,
.category-card {
  padding: 22px;
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
}

.quote-card h3,
.newsletter-card h3,
.category-card h3 {
  margin: 0 0 14px;
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card p,
.newsletter-card p {
  color: #424a56;
}

.quote-card a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfc395;
  border-radius: 5px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  outline: none;
}

.newsletter-form button {
  min-height: 40px;
  padding: 0 18px;
}

.category-card {
  display: grid;
  gap: 10px;
}

.category-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #293241;
  font-size: 0.86rem;
  font-weight: 700;
}

.category-card span {
  width: 18px;
  color: var(--ink);
  text-align: center;
}

.category-card button {
  min-height: 36px;
  margin-top: 8px;
  border-color: #dfc395;
  background: #fff;
  color: var(--gold-dark);
  cursor: pointer;
}

.brand-cta {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.82fr;
  min-height: 230px;
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  color: #fff;
}

.studio-visual {
  display: grid;
  place-items: center;
  min-height: 230px;
  background:
    radial-gradient(circle at 22% 26%, rgba(196, 137, 57, 0.3) 0 8%, transparent 9%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 62px),
    linear-gradient(135deg, #0c1722, #32231b 60%, #070b10);
}

.studio-visual span {
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
}

.brand-story,
.business-box {
  padding: clamp(28px, 3vw, 42px);
}

.brand-story h2,
.business-box h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 1.08;
}

.brand-story p,
.business-box p {
  color: rgba(255, 255, 255, 0.78);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.values span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.values strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
}

.business-box {
  border-left: 1px solid rgba(196, 137, 57, 0.48);
}

.business-box .button {
  margin: 8px 0 14px;
}

.business-box strong {
  display: block;
  color: var(--gold);
}

.site-footer {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 34px;
  padding: 32px 0 48px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #394150;
  font-size: 0.8rem;
}

.footer-brand p {
  margin: 22px 0 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.05rem;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.bottom-nav {
  display: none;
}

.article-shell {
  width: min(1180px, calc(100% - 56px));
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 26px 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb strong {
  color: var(--gold-dark);
}

.article-hero {
  display: grid;
  gap: 20px;
  padding: 34px 0 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.article-label-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.premium-label,
.topic-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-label {
  background: var(--ink);
  color: #fff;
}

.topic-label {
  border: 1px solid #dfc395;
  color: var(--gold-dark);
}

.article-hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.7rem, 6.2vw, 5.9rem);
  line-height: 1.02;
}

.article-deck {
  max-width: 820px;
  margin: 0;
  color: #303949;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.article-meta-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 12px;
}

.author-block {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.author-block strong,
.author-block span {
  display: block;
}

.author-block span {
  color: var(--muted);
  font-size: 0.82rem;
}

.article-tools {
  display: flex;
  gap: 10px;
}

.article-tools button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
  padding: 30px 0 10px;
}

.article-main {
  min-width: 0;
}

.article-cover {
  min-height: 440px;
  margin: 0 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-cover figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(5, 20, 36, 0), rgba(5, 20, 36, 0.88));
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.key-points {
  margin: 0 0 32px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fffaf0;
}

.key-points h2 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.key-points ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #303949;
}

.article-main > p {
  color: #17202e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.4vw, 1.28rem);
  line-height: 1.85;
}

.dropcap::first-letter {
  float: left;
  padding: 10px 10px 0 0;
  color: var(--gold-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 4.8rem;
  line-height: 0.82;
}

.article-main h2 {
  margin: 34px 0 14px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.pull-quote {
  margin: 34px 0;
  padding: 28px 0 28px 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 5px solid var(--gold);
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.3;
}

.premium-gate {
  margin: 40px 0;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.96), rgba(3, 10, 18, 0.78)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  color: #fff;
}

.premium-gate span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-gate h2 {
  margin-top: 10px;
  color: #fff;
}

.premium-gate p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-tags a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.article-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 16px;
}

.market-card,
.editor-note,
.related-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.market-card {
  background: var(--night);
  color: #fff;
}

.market-card h2,
.editor-note h2,
.related-card h2 {
  margin: 0 0 16px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-card div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.market-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.market-card strong {
  font-size: 1.04rem;
}

.market-card em {
  grid-column: 2;
  color: #79d68d;
  font-style: normal;
  font-weight: 900;
}

.market-card em.down {
  color: #ff8c77;
}

.editor-note p {
  margin: 0;
  color: #3c4554;
}

.related-card {
  display: grid;
  gap: 14px;
}

.related-card a {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .top-grid,
  .content-grid,
  .headline-grid,
  .brand-cta {
    grid-template-columns: 1fr;
  }

  .podcast-panel {
    padding-top: 0;
  }

  .right-column {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .business-box {
    border-left: 0;
    border-top: 1px solid rgba(196, 137, 57, 0.48);
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    height: 78px;
    padding-inline: 18px;
  }

  .desktop-nav,
  .subscribe-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu.is-open {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    font-weight: 900;
    text-transform: uppercase;
  }

  .search-panel.is-open {
    top: 78px;
  }

  main,
  .site-footer,
  .article-shell {
    width: min(100% - 28px, 1360px);
  }

  .top-grid {
    padding-top: 14px;
  }

  .hero-card {
    min-height: auto;
    display: block;
    color: #fff;
    background: #071120;
  }

  .hero-copy {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    padding: 28px 22px;
    background: linear-gradient(180deg, rgba(3, 10, 18, 0), rgba(3, 10, 18, 0.88) 24%, rgba(3, 10, 18, 0.96));
  }

  .hero-copy h1 {
    max-width: 390px;
    font-size: clamp(1.62rem, 8vw, 2.75rem);
  }

  .hero-copy p:not(.kicker) {
    display: none;
  }

  .hero-copy .kicker {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .button.ghost {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
  }

  .city-leader {
    min-height: 360px;
  }

  .leader {
    right: 10%;
    height: 250px;
    transform: scale(0.88);
    transform-origin: bottom center;
  }

  .trending {
    padding-block: 20px;
  }

  .content-grid {
    padding-top: 20px;
  }

  .featured-news {
    grid-template-columns: 1fr;
  }

  .news-image {
    min-height: 180px;
  }

  .right-column {
    grid-template-columns: 1fr;
  }

  .brand-cta {
    margin-bottom: 16px;
  }

  .studio-visual {
    min-height: 170px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 98px;
  }

  .article-hero {
    padding-top: 24px;
  }

  .article-meta-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-cover {
    min-height: 300px;
  }

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

  .footer-brand,
  .copyright {
    grid-column: 1 / -1;
  }

  .bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 68px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 -12px 28px rgba(9, 19, 32, 0.08);
  }

  .bottom-nav a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: #283241;
    font-size: 0.62rem;
    font-weight: 700;
  }

  .bottom-nav a span {
    color: inherit;
    font-size: 1.3rem;
    line-height: 1;
  }

  .bottom-nav a.active {
    color: var(--gold-dark);
  }
}

@media (max-width: 560px) {
  .logo-mark {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 0.62rem;
  }

  .header-actions {
    gap: 2px;
  }

  .icon-button,
  .menu-button {
    width: 38px;
  }

  .podcast-feature {
    min-height: 190px;
    padding: 18px;
  }

  .podcast-feature h3 {
    max-width: 240px;
    font-size: 1.22rem;
  }

  .podcast-list article {
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
  }

  .mini-thumb {
    height: 44px;
  }

  .headline-grid {
    gap: 18px;
  }

  .news-body {
    padding: 18px;
  }

  .news-body h3 {
    margin-top: 14px;
    font-size: 1.22rem;
  }

  .article-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .article-tools {
    width: 100%;
  }

  .article-tools button {
    flex: 1;
  }

  .article-cover {
    min-height: 240px;
  }

  .pull-quote {
    padding-left: 18px;
  }

  .side-news {
    grid-template-columns: 96px 1fr;
    gap: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
