/* ============================================================================
   SINGLE ARTICLE — Editorial Dark Luxury
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Theme: Deep navy / gold / teal accent
============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ============================================================================
   VARIABLES
============================================================================ */

:root {
  /* Canvas */
  --canvas-0:   #05080f;
  --canvas-1:   #080d18;
  --canvas-2:   #0b1220;
  --canvas-3:   #0e1628;

  /* Surfaces */
  --surface-1:  rgba(255,255,255,0.055);
  --surface-2:  rgba(255,255,255,0.085);
  --surface-3:  rgba(255,255,255,0.11);

  /* Borders */
  --border-dim: rgba(255,255,255,0.07);
  --border-glow: rgba(94,234,212,0.18);

  /* Text */
  --text-primary:   #f0ece4;
  --text-secondary: rgba(240,236,228,0.62);
  --text-muted:     rgba(240,236,228,0.38);

  /* Accent — teal */
  --accent:      #5eead4;
  --accent-dim:  rgba(94,234,212,0.14);
  --accent-glow: rgba(94,234,212,0.32);

  /* Gold */
  --gold:      #d4a853;
  --gold-dim:  rgba(212,168,83,0.15);

  /* Danger (likes) */
  --like: #ff4d72;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --header-h:  72px;
  --gap:        28px;
  --radius-lg:  20px;
  --radius-md:  12px;
  --radius-sm:   8px;

  /* Timing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================================================
   RESET
============================================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img, picture, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================================
   BODY BACKGROUND — Deep starfield gradient
============================================================================ */

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--canvas-0);
  background-image:
    radial-gradient(ellipse 1400px 600px at 15% -5%, rgba(20,184,166,0.22) 0%, transparent 58%),
    radial-gradient(ellipse 900px 500px at 88% 5%,  rgba(212,168,83,0.18)  0%, transparent 55%),
    radial-gradient(ellipse 700px 400px at 50% 100%, rgba(20,184,166,0.1) 0%, transparent 60%),
    linear-gradient(180deg,
      var(--canvas-0) 0%,
      var(--canvas-1) 30%,
      var(--canvas-2) 65%,
      var(--canvas-3) 100%
    );
  background-attachment: fixed;
}

/* ============================================================================
   ARTICLE PAGE GRID
   Layout: [empty 1fr] [article 3fr] [sidebar 1fr]
============================================================================ */

.article {
  background: transparent;
}

.article-page {
  max-width: 1360px;
  margin: calc(var(--header-h) + 32px) auto 60px;
  padding-inline: clamp(14px, 4vw, 40px);

  display: grid;
  grid-template-columns:
    clamp(0px, 12vw, 180px)     /* left spacer */
    minmax(0, 1fr)               /* center — article */
    clamp(200px, 22vw, 300px);  /* right sidebar */
  gap: var(--gap);
  align-items: start;
}

.article-page > * { min-width: 0; }

/* ============================================================================
   ARTICLE CENTER — Glass card
============================================================================ */

.article-center {
  --pad: clamp(24px, 4vw, 48px);

  background: linear-gradient(160deg, var(--surface-2), var(--surface-1));
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: var(--pad);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 2px 0 0 var(--border-dim) inset,
    0 0 0 1px rgba(255,255,255,0.035),
    0 24px 64px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

/* Subtle top-edge glow line */
.article-center::before {
  content: '';
  position: absolute;
  inset-inline: 20%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  border-radius: 0 0 50% 50%;
}

/* ============================================================================
   ARTICLE HEADER
============================================================================ */

.article-header {
  margin-bottom: 28px;
}

/* Breadcrumbs */
.article-header .rank-math-breadcrumb,
.article-header nav[aria-label="breadcrumb"],
.article-header .breadcrumb {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-header .rank-math-breadcrumb a,
.article-header .breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.article-header .rank-math-breadcrumb a:hover,
.article-header .breadcrumb a:hover {
  color: #a7fff1;
}

/* Title — editorial serif */
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-wrap: balance;
  margin: 0;

  background: linear-gradient(135deg, #f0ece4 0%, #d4c9b8 60%, #a89880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================================
   ARTICLE MAIN — cover + body
============================================================================ */

.article-main {
  display: flow-root;
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
}

/* Cover — floated right, editorial oversized */
.article-cover {
  float: right;
  width: min(clamp(280px, 42%, 520px), 100%);
  margin: 4px 0 24px 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;

  box-shadow:
    0 0 0 1px var(--border-dim),
    0 20px 50px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.4);
}

/* Gold frame accent */
.article-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(212,168,83,0.22);
  pointer-events: none;
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-out);
}

.article-cover:hover img {
  transform: scale(1.025);
}

/* ============================================================================
   ARTICLE BODY
============================================================================ */

.article-text {
  /* no extra padding needed — handled by .article-main */
}

.article-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.78;
  color: var(--text-primary);
  font-weight: 300;
}

.article-body::after {
  content: '';
  display: table;
  clear: both;
}

/* Paragraphs */
.article-body p {
  margin: 0 0 1.35em;
}

/* Drop cap on first paragraph */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.2em;
  font-weight: 600;
  line-height: 0.78;
  float: left;
  margin: 4px 10px -4px 0;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(94,234,212,0.4);
}

/* Headings */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 2.4em 0 0.75em;
  letter-spacing: -0.01em;

  background: linear-gradient(135deg, #f0ece4 0%, #c8bfb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-body h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
  border-radius: 2px;
  opacity: 0.7;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: rgba(240,236,228,0.88);
  margin: 1.9em 0 0.6em;
  font-style: italic;
}

/* Links */
.article-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(94,234,212,0.35);
  transition: color 0.2s, border-color 0.2s;
}

.article-body a:hover {
  color: #a7fff1;
  border-bottom-color: rgba(167,255,241,0.6);
}

/* Blockquote */
.article-body blockquote {
  margin: 2.2em 0;
  padding: 1.4em 1.8em 1.4em 2.2em;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(212,168,83,0.08), rgba(212,168,83,0.02));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.18em;
  font-style: italic;
  color: rgba(240,236,228,0.9);
  position: relative;
}

.article-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 4em;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}

/* HR */
.article-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  margin: 3em 0;
}

/* Lists */
.article-body ul,
.article-body ol {
  margin: 1.5em 0;
  padding-left: 0;
  list-style: none;
}

.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
  line-height: 1.7;
}

.article-body ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.5em;
  color: var(--accent);
  opacity: 0.8;
}

.article-body ol {
  counter-reset: ol-counter;
}

.article-body ol li {
  counter-increment: ol-counter;
}

.article-body ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-display);
  font-size: 0.85em;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.7;
}

/* Nested lists */
.article-body ul ul,
.article-body ol ol {
  margin: 0.5em 0 0.5em 0.5em;
}

/* ============================================================================
   BODY IMAGES
============================================================================ */

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 2em auto;
  cursor: zoom-in;
  box-shadow:
    0 0 0 1px var(--border-dim),
    0 12px 36px rgba(0,0,0,0.5);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.article-body img:hover {
  box-shadow:
    0 0 0 1px var(--border-glow),
    0 20px 50px rgba(0,0,0,0.65);
  transform: scale(1.01);
}

.article-body img.article-inline-image {
  width: 50%;
  max-width: 50%;
}

.article-body img.aligncenter {
  margin-inline: auto;
  max-width: 640px;
  width: 100%;
}

.article-body img.alignleft {
  float: left;
  width: clamp(220px, 30%, 320px);
  margin: 4px 28px 20px 0;
}

.article-body img.alignright {
  float: right;
  width: clamp(220px, 30%, 320px);
  margin: 4px 0 20px 28px;
}

.article-body img.alignnone {
  max-width: 640px;
  margin: 2em auto;
}

/* Figures */
.article-body figure {
  margin: 2em 0;
}

.article-body figure img {
  margin: 0 0 8px;
}

.article-body figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  padding: 0 1em;
}

/* ============================================================================
   MAP LINKS — teal pill buttons
============================================================================ */

.article-body p:has(> a[href*="maps"]) {
  background: linear-gradient(135deg, rgba(94,234,212,0.08), rgba(94,234,212,0.02));
  border-left: 3px solid rgba(94,234,212,0.5);
  padding: 1.2em 1.6em;
  margin: 2em 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body a[href*="google.com/maps"],
.article-body a[href*="maps/dir"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #04151d !important;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9em;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 6px 20px rgba(20,184,166,0.3);
  margin-top: 0.5em;
  border-bottom: none !important;
  letter-spacing: 0.02em;
}

.article-body a[href*="google.com/maps"]:hover,
.article-body a[href*="maps/dir"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20,184,166,0.42);
  background: linear-gradient(135deg, #5eead4, #14b8a6);
}

/* ============================================================================
   ARTICLE ACTIONS — Like / Comments / Share
============================================================================ */

.article-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2.4rem 0 0.5rem;
  padding: 16px 18px;
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid transparent;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.22s var(--ease-out);
  text-decoration: none;
  user-select: none;
}

.action-btn:hover {
  background: var(--surface-2);
  border-color: var(--border-dim);
  color: var(--text-primary);
}

.action-btn:active {
  transform: scale(0.94);
}

/* Like */
.action-like .icon-like {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.35s var(--ease-spring), fill 0.2s, stroke 0.2s;
}

.action-like:hover {
  color: var(--like);
  border-color: rgba(255,77,114,0.2);
  background: rgba(255,77,114,0.06);
}

.action-like.active {
  color: var(--like);
  border-color: rgba(255,77,114,0.2);
  background: rgba(255,77,114,0.06);
}

.action-like.active .icon-like {
  fill: var(--like);
  stroke: var(--like);
  transform: scale(1.22);
}

/* Comments */
.action-comments .icon-comment {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.action-comments:hover {
  color: var(--accent);
  border-color: var(--border-glow);
  background: var(--accent-dim);
}

/* Share */
.action-share .icon-share {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.action-share:hover {
  color: var(--gold);
  border-color: rgba(212,168,83,0.22);
  background: var(--gold-dim);
}

/* Counts */
.action-count {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.action-label {
  font-weight: 500;
}

/* Shared icon styles */
.icon {
  flex-shrink: 0;
  transition: all 0.2s;
}

/* Spacer between actions and share */
.share {
  position: relative;
  margin-left: auto; /* push to right */
}

/* Share dropdown */
.share-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);

  min-width: 200px;
  padding: 6px;

  background: rgba(8,13,24,0.96);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 -16px 40px rgba(0,0,0,0.6);

  z-index: 60;
  display: grid;
  gap: 2px;
}

.share-menu button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: background 0.18s, color 0.18s;
}

.share-menu button:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

.share-menu[hidden] {
  display: none !important;
}

/* ============================================================================
   RELATED SIDEBAR
============================================================================ */

.article-related {
  padding-top: 2px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.related-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 14px 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dim);
  position: relative;
}

.related-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.related-list {
  display: grid;
  gap: 10px;
}

/* Related News Card */
.article-related .news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-dim);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.22s;
}

.article-related .news-card:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  border-color: var(--border-glow);
}

.article-related .news-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--canvas-3);
}

.article-related .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.article-related .news-card:hover .news-card-media img {
  transform: scale(1.06);
}

.article-related .news-card-content {
  padding: 10px 12px 12px;
}

.article-related .news-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-related .news-card-excerpt {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================================
   GLASS SURFACE (shared utility)
============================================================================ */

.glass-surface {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
}

/* ============================================================================
   CARD OVERLAY (shared utility)
============================================================================ */

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

/* ============================================================================
   SITE HEADER TEXT COLOUR
============================================================================ */

.site-header,
.site-header a,
.site-header nav a,
.site-header .site-logo {
  color: var(--text-primary);
}

/* ============================================================================
   IMAGE LIGHTBOX
============================================================================ */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,5,10,0.96);
  cursor: zoom-out;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  max-width: 94vw;
  max-height: 94vh;
  z-index: 10;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow:
    0 0 0 1px var(--border-dim),
    0 24px 80px rgba(0,0,0,0.75);
  cursor: zoom-out;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-out);
}

.image-lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-out);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255,255,255,0.3);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

/* ============================================================================
   TOAST
============================================================================ */

.toast-msg {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(10,18,32,0.95);
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 99999;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: opacity 0.35s ease;
}

/* ============================================================================
   RESPONSIVE — TABLET  (≤ 960px)
============================================================================ */

@media (max-width: 960px) {

  .article-page {
    grid-template-columns:
      0fr
      minmax(0, 1fr)
      clamp(180px, 30vw, 260px);
    gap: 18px;
  }

  .article-cover {
    width: clamp(200px, 38%, 360px);
    margin-left: 20px;
  }

  .article-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .article-body {
    font-size: 15px;
  }

  .article-related {
    position: static;
  }
}

/* ============================================================================
   RESPONSIVE — MOBILE  (≤ 600px)
============================================================================ */

@media (max-width: 600px) {

  .article-page {
    grid-template-columns: 1fr;
    padding-inline: 12px;
    gap: 0;
  }

  .article-center {
    --pad: 18px;
    border-radius: var(--radius-md);
  }

  .article-title {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }

  .article-cover {
    float: none;
    width: 100%;
    margin: 0 0 20px;
    border-radius: var(--radius-sm);
  }

  .article-cover::after { display: none; }

  /* Reset body image floats */
  .article-body img,
  .article-body img.alignleft,
  .article-body img.alignright,
  .article-body img.aligncenter,
  .article-body img.alignnone {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.4em 0 !important;
  }

  .article-body > p:first-of-type::first-letter {
    font-size: 3.4em;
  }

  .article-body h2::before {
    display: none;
  }

  .article-actions {
    gap: 4px;
    padding: 12px 10px;
    flex-wrap: wrap;
  }

  .action-btn {
    padding: 7px 10px;
  }

  .action-label {
    display: none;
  }

  .share {
    margin-left: 0;
  }

  .share-menu {
    right: auto;
    left: 0;
    bottom: calc(100% + 8px);
  }

  .article-related {
    margin-top: 32px;
  }

  .article-body a[href*="google.com/maps"],
  .article-body a[href*="maps/dir"] {
    padding: 9px 14px;
    font-size: 0.85em;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .lightbox-image {
    max-width: 98vw;
    max-height: 96vh;
    border-radius: var(--radius-sm);
  }
}
