/* ==========================================================================
   THE ABHINAV VATS EDITION — Dense Broadsheet Newspaper Components
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. MASTHEAD NAV — Top Links
   -------------------------------------------------------------------------- */
.masthead-nav-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 12px 0 8px;
}

.masthead-nav-top .nav-link {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-secondary);
  transition: color var(--duration-hover) ease;
}

.masthead-nav-top .nav-link:hover,
.masthead-nav-top .nav-link.active {
  color: var(--ink-black);
}

/* --------------------------------------------------------------------------
   2. EDITORIAL META BAR — Secondary Nav Strip
   -------------------------------------------------------------------------- */
.masthead-meta-bar {
  display: flex;
  align-items: center;
  padding: 8px var(--page-margin);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  position: relative;
}

.meta-page-num {
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-black);
  line-height: 1;
}

.meta-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex: 1;
}

.meta-links a,
.meta-links button {
  color: var(--ink-secondary);
  transition: color var(--duration-hover) ease;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-links a:hover,
.meta-links button:hover {
  color: var(--ink-black);
}

.meta-icon {
  font-size: 13px;
  font-weight: bold;
  color: #0077b5; /* LinkedIn blue logic based on reference */
}

/* --------------------------------------------------------------------------
   3. GIANT MASTHEAD — The Dominant Visual Element
   -------------------------------------------------------------------------- */
.hero-masthead-block {
  padding: 0 0 40px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--rule-heavy);
  background-color: var(--paper-white);
  overflow: visible;
}

.hero-masthead-name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-charcoal);
  letter-spacing: -0.01em;
  line-height: 0.8;
  padding-bottom: 12px;
  margin: 0 auto;
  z-index: 2;
  white-space: nowrap;
}

.hero-positioning {
  font-family: var(--font-body), sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-black);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  margin-top: 12px;
}

.hero-subtext {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--ink-muted);
  max-width: 100%;
  white-space: nowrap;
  margin: 0 auto 24px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-primary-btn,
.hero-secondary-btn {
  font-family: var(--font-body), sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease;
}

.hero-primary-btn {
  background-color: var(--ink-black);
  color: var(--paper-white);
  border: 2px solid var(--ink-black);
}

.hero-primary-btn:hover {
  background-color: var(--paper-white);
  color: var(--ink-black);
  transform: translateY(-2px);
}

.hero-secondary-btn {
  background-color: transparent;
  color: var(--ink-black);
  border: 2px solid var(--ink-black);
}

.hero-secondary-btn:hover {
  background-color: var(--ink-black);
  color: var(--paper-white);
  transform: translateY(-2px);
}

/* Left and Right Cutouts */
.hero-portrait-left,
.hero-portrait-right {
  position: absolute;
  bottom: 0;
  height: 220px;
  z-index: 5;
}

.hero-portrait-left {
  left: -50px; /* Shifted further left */
}

.hero-portrait-right {
  right: 20px;
}

.hero-portrait-left img,
.hero-portrait-right img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   4. HERO STRIP — Colored Blocks
   -------------------------------------------------------------------------- */
.hero-strip {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr;
  height: 90px;
  border-bottom: 1px solid var(--rule-light);
}

.strip-box {
  display: flex;
  align-items: center;
  padding: 12px 16px;
}

.strip-box p {
  font-family: var(--font-condensed);
  font-size: 13px;
  line-height: 1.3;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.strip-green {
  background-color: #2F8C3C;
}

.strip-beige {
  background-color: #E6D8C8;
}
.strip-beige p {
  color: var(--ink-charcoal);
}

.strip-photo {
  padding: 0;
  overflow: hidden;
}
.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-blue {
  background-color: #0077C8;
}

.strip-num {
  color: #D92318;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   5. BROADSHEET FRONT PAGE — Dense Multi-Column Grid
   -------------------------------------------------------------------------- */

.front-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  border-bottom: 1px solid var(--rule-light);
}

.front-page-main {
  border-right: 1px dashed var(--rule-light);
  padding-right: 28px;
}

.front-page-sidebar {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   6. EDITORIAL LEAD INTRODUCTION (Main Column)
   -------------------------------------------------------------------------- */
.editorial-lead {
  padding: 28px 0;
  border-bottom: 3px solid var(--rule-heavy);
}

.editorial-lead-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink-black);
  letter-spacing: -0.02em;
}

.editorial-lead-deck {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-charcoal);
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   7. TRAVEL PHOTO ESSAY (Sidebar Top)
   -------------------------------------------------------------------------- */
.travel-essay-sidebar {
  padding: 28px 0 16px;
  border-bottom: 1px dotted var(--rule-dotted);
}

.travel-essay-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink-black);
  letter-spacing: -0.01em;
}

.travel-essay-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-charcoal);
  line-height: 1.4;
  margin-top: 12px;
  margin-bottom: 16px;
}

.travel-essay-text strong {
  font-weight: 700;
}

.travel-photos-grid-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.travel-photo-sb {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.travel-photo-sb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-editorial);
}

.travel-photo-sb:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   8. FEATURE STORIES SECTION
   -------------------------------------------------------------------------- */
.stories-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--rule-light);
  padding: 8px 0;
  margin-bottom: 24px;
}

.stories-section-title {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-black);
}

.stories-section-count {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   9. LEAD STORY
   -------------------------------------------------------------------------- */
.lead-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 24px;
}

.lead-story-visual {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background-color: #0B0B0F;
  cursor: pointer;
}

.lead-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-editorial);
}

.lead-story-visual:hover img {
  transform: scale(1.03);
}

.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-hover) ease;
}

.lead-story-visual:hover .hover-overlay,
.secondary-story-visual:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper-white);
  border: 1.5px solid var(--paper-white);
  padding: 7px 16px;
  transform: translateY(5px);
  transition: transform var(--duration-hover) ease;
}

.lead-story-visual:hover .hover-overlay-label,
.secondary-story-visual:hover .hover-overlay-label {
  transform: translateY(0);
}

/* Story Typography */
.story-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-number {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink-black);
}

.story-title a {
  transition: color var(--duration-hover) ease;
}
.story-title a:hover {
  color: var(--accent-red);
}

.story-deck {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-secondary);
}

.story-cta {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap var(--duration-hover) var(--ease-editorial);
}

.story-cta:hover {
  gap: 12px;
  color: var(--ink-black);
}

/* Prototype link */
.prototype-link-box {
  background-color: var(--paper-muted);
  border: 1px solid var(--rule-hairline);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prototype-link-label {
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.prototype-link-url {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: var(--accent-red);
  word-break: break-all;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prototype-link-url:hover {
  color: var(--ink-black);
}

/* --------------------------------------------------------------------------
   10. SECONDARY STORIES
   -------------------------------------------------------------------------- */
.secondary-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.secondary-story {
  padding-right: 20px;
  border-right: 1px dashed var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.secondary-story:last-child {
  padding-right: 0;
  padding-left: 20px;
  border-right: none;
}

.secondary-story-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--paper-muted);
  cursor: pointer;
}

.secondary-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-editorial);
}

.secondary-story-visual:hover img {
  transform: scale(1.03);
}

.secondary-story .story-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

/* --------------------------------------------------------------------------
   11. SIDEBAR MODULES
   -------------------------------------------------------------------------- */
.sidebar-module {
  border-bottom: 1px dotted var(--rule-dotted);
  padding-bottom: 16px;
}

.sidebar-module:last-child {
  border-bottom: none;
}

.sidebar-module-title {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-black);
  border-bottom: 2px solid var(--rule-heavy);
  padding-bottom: 4px;
  margin-bottom: 12px;
}

/* Map Clipping */
.map-clipping {
  position: relative;
  background: var(--paper-white);
  border: 1px solid var(--rule-light);
  padding: 8px;
  transform: rotate(-1.5deg);
}

.map-clipping img {
  width: 100%;
  display: block;
}

.map-annotation {
  position: absolute;
  bottom: -6px;
  right: -4px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: rotate(3deg);
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-secondary);
  margin-top: 6px;
  text-align: center;
  transform: rotate(-1.5deg);
}

/* Career Timeline */
.sidebar-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-entry {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 12px;
}

.timeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-black);
  margin-top: 5px;
  flex-shrink: 0;
}

.timeline-dot.active {
  background: var(--accent-red);
}

.timeline-label {
  font-weight: 600;
  color: var(--ink-black);
}

.timeline-sub {
  font-size: 11px;
  color: var(--ink-muted);
  display: block;
}

/* Open to Work Promo */
.open-to-work-promo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.otw-box {
  border: 4px solid #5DC235; /* Matching reference green */
  display: flex;
  flex-direction: column;
}

.otw-header {
  background-color: #5DC235;
  color: white;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  line-height: 1;
}

.otw-content {
  padding: 8px;
  background-color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.otw-content p {
  font-family: var(--font-condensed);
  font-size: 13px;
  line-height: 1.15;
  color: var(--ink-black);
  margin-bottom: 8px;
}

.otw-download-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  color: #5DC235;
}

.otw-square {
  width: 10px;
  height: 10px;
  background-color: #5DC235;
  display: inline-block;
  flex-shrink: 0;
}

.otw-article-title {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink-black);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.otw-article p {
  font-family: var(--font-condensed);
  font-size: 13px;
  line-height: 1.15;
  color: var(--ink-charcoal);
}

/* --------------------------------------------------------------------------
   12. ABOUT / PROFILE ARTICLE
   -------------------------------------------------------------------------- */
.profile-hero-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 28px;
  margin-bottom: 24px;
}

.profile-hero-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-light);
}

.profile-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-narrative {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--ink-black);
}

.profile-lead-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink-black);
}

.profile-continued-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-body-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-body);
  margin-bottom: 8px;
}

.profile-body-columns {
  column-count: 2;
  column-gap: 24px;
  column-rule: 1px solid var(--rule-light);
}

.profile-extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.profile-extras-grid img {
  width: 100%;
  display: block;
}

.profile-extras-grid .designer-card img {

}

.profile-extras-grid .skills-card img {
  border: 1px solid var(--rule-light);
}

/* Comics */
.comics-section {
  margin: 16px 0;
}

.comics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.comics-title {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comics-section img {
  width: 100%;
  border: 1px solid var(--rule-heavy);
  display: block;
}

/* Blue CTA Banner */
.cta-banner {
  background-color: var(--accent-blue);
  color: var(--paper-white);
  padding: 18px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.cta-banner-links {
  display: flex;
  gap: 16px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-banner-links a,
.cta-banner-links button {
  color: var(--paper-white);
  transition: opacity var(--duration-hover) ease;
}
.cta-banner-links a:hover,
.cta-banner-links button:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   13. CAREER STORIES / RESUME
   -------------------------------------------------------------------------- */
.career-stories {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 0;
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 3px solid var(--rule-heavy);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.career-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.career-role {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.career-print-btn {
  background-color: var(--accent-red);
  color: var(--paper-white);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color var(--duration-hover) ease;
}

.career-print-btn:hover {
  background-color: var(--ink-black);
}

.career-section {
  margin-bottom: 22px;
}

.career-section-title {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule-heavy);
  padding-bottom: 3px;
  margin-bottom: 12px;
}

.career-entry {
  margin-bottom: 14px;
}

.career-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.career-entry-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
}

.career-entry-date {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.career-entry-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.career-entry-list {
  padding-left: 18px;
  list-style: disc;
}

.career-entry-list li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-body);
  margin-bottom: 3px;
}

.career-entry-desc {
  font-size: 12px;
  color: var(--ink-secondary);
  margin-top: 3px;
  line-height: 1.45;
}

.career-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.career-skill-col {
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-body);
}

.career-skill-col strong {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 3px;
}

/* --------------------------------------------------------------------------
   14. CONTACT / FINAL EDITION
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 48px 0;
  text-align: center;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink-black);
  line-height: 0.92;
  margin-bottom: 10px;
}

.contact-subtext {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto 24px;
}

.contact-links-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link-item {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-black);
  padding: 8px 18px;
  border: 1.5px solid var(--ink-black);
  transition: all var(--duration-hover) ease;
}

.contact-link-item:hover {
  background-color: var(--ink-black);
  color: var(--paper-white);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.newspaper-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule-heavy);
  padding: 10px 0;
  margin-top: 20px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--ink-muted);
}

.footer-page-turn {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: gap var(--duration-hover) ease, color var(--duration-hover) ease;
}

.footer-page-turn:hover {
  gap: 8px;
}

/* Category badge */
.category-badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper-white);
  background-color: var(--accent-red);
  padding: 2px 6px 1px;
  line-height: 1;
}

/* Page number */
.page-number {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
/* Vertical Marquee Sidebar */
.sidebar-marquee-container {
  border-bottom: none;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  padding-left: 24px;
  padding-top: 100px;
  padding-bottom: 0;
  margin-top: 0;
}

.vertical-scroll-group {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 50s linear infinite;
  will-change: transform;
}

.vertical-scroll-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  padding-bottom: 8px; /* Space between the loop instances */
}

.scroll-line {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink-black);
  white-space: nowrap;
}

.scroll-line-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

@keyframes scrollVertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.newspaper-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--paper-white);
  border-bottom: 2px solid var(--rule-heavy);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.newspaper-navbar.is-visible {
  transform: translateY(0);
}

.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.navbar-right {
  justify-content: flex-end;
}

.navbar-center {
  flex: 1;
  text-align: center;
}

.navbar-masthead {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink-black);
}

.navbar-link {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar-link:hover {
  color: var(--accent-red);
}

.navbar-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-subscribe-btn {
  background-color: var(--accent-red);
  color: var(--paper-white);
  border: none;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.navbar-subscribe-btn:hover {
  background-color: var(--ink-black);
}

/* Responsive */
@media (max-width: 768px) {
  .newspaper-navbar {
    padding: 10px 16px;
  }
  .navbar-left .navbar-link, .navbar-right .navbar-link {
    display: none;
  }
  .navbar-masthead {
    font-size: 20px;
  }
}

/* ==========================================================================
   FULL-SCREEN EDITORIAL MENU
   ========================================================================== */
.editorial-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--paper-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.editorial-nav-menu.open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--rule-light);
}

.menu-header .navbar-masthead {
  color: var(--ink-black) !important;
}

.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-black);
  padding: 0;
}

.menu-content {
  flex: 1;
  padding: 60px 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--grid-max);
  margin: 0 auto;
}

.menu-section-title {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--rule-heavy);
  padding-bottom: 8px;
}

.menu-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink-black);
  text-align: left;
  line-height: 1.1;
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-link:hover {
  color: var(--accent-red);
}

.menu-link-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-secondary);
  text-transform: none;
}

.menu-footer {
  padding: 24px 40px;
  border-top: 1px solid var(--rule-light);
  font-family: var(--font-condensed);
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-header, .menu-content, .menu-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .menu-link {
    font-size: 28px;
  }
}
.credit-line {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
  background: linear-gradient(180deg, #111111 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
  line-height: 1.2;
}
.credit-line:hover {
  background: none;
  -webkit-text-fill-color: initial;
  color: #111111;
}
