/* ============================================================
   Elets BFSI — AIM-style redesign (2026)
   Converted from bfsi-staging HTML mockups (Portal Home / Article).
   All classes are prefixed `en-` so they never collide with the
   legacy Bootstrap / NewsViral CSS that still serves old pages.
   Loaded LAST so it wins the cascade.
   ============================================================ */

/* ── Base scopes ─────────────────────────────────────────── */
.en-header, .en-footer, .en-main, .en-mobile-nav, .en-searchbar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111827;
  box-sizing: border-box;
}
.en-header *, .en-footer *, .en-main *, .en-mobile-nav *, .en-searchbar * { box-sizing: border-box; }
.en-main a, .en-footer a, .en-header a { text-decoration: none; }
.en-main h1, .en-main h2, .en-main h3, .en-main h4, .en-main p,
.en-footer h2, .en-footer h3, .en-footer p { margin: 0; }
.en-main img { max-width: 100%; }

.en-wrap  { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.en-wrapw { max-width: 1216px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.en-serif { font-family: Georgia, 'Times New Roman', serif; }

/* ── Header ──────────────────────────────────────────────── */
.en-header {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 40px; background: #ffffff;
  border-top: 1px solid #f0f0f0; border-bottom: 1px solid #ececec;
}
.en-hdr-left  { display: flex; align-items: center; gap: 24px; min-width: 0; }
.en-hdr-right { display: flex; align-items: center; gap: 20px; flex: none; }
.en-burger {
  display: inline-flex; background: none; border: 0; padding: 4px; cursor: pointer; color: #111827;
}
.en-logo { display: block; flex: none; }
.en-logo img { max-height: 46px; width: auto; display: block; }
.en-nav { display: flex; align-items: center; gap: 24px; font-size: 13px; white-space: nowrap; }
.en-nav > a { color: #374151 !important; font-weight: 500; }
.en-nav > a:hover { color: #2563eb !important; }
/* Dropdown menus */
.en-nav .en-menu-item { position: relative; display: inline-flex; align-items: center; padding: 26px 0; margin: -26px 0; }
.en-nav .en-menu-item > a { color: #374151 !important; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.en-nav .en-menu-item > a:hover { color: #2563eb !important; }
.en-nav .en-caret { width: 9px; height: 9px; flex: none; opacity: 0.6; }
.en-nav .en-sub {
  display: none; position: absolute; top: 100%; left: -16px;
  background: #ffffff; border: 1px solid #ececec; border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10); padding: 8px 0; min-width: 214px; z-index: 600;
}
.en-nav .en-menu-item:hover > .en-sub { display: block; }
.en-nav .en-sub a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 18px; font-size: 13px; font-weight: 500; color: #374151 !important; white-space: nowrap; width: 100%;
}
.en-nav .en-sub a:hover { background: #f7f7f7; color: #111827 !important; }
.en-nav .en-sub .en-menu-item { position: relative; display: block; padding: 0; margin: 0; width: 100%; }
.en-nav .en-sub .en-menu-item > .en-sub { top: -9px; left: 100%; }
.en-nav .en-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fbf7ee;
  border: 1px solid #f0e8d8; border-radius: 8px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 650; color: #111827 !important;
}
.en-nav .en-chip .en-dot { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; flex: none; }
.en-icon-btn { display: inline-flex; background: none; border: 0; padding: 4px; cursor: pointer; color: #111827; }
.en-subscribe {
  background: #111111; color: #ffffff !important; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.6px; padding: 11px 20px; border-radius: 4px; text-transform: uppercase;
  display: inline-block;
}
.en-subscribe:hover { background: #2d2d2d; color: #ffffff !important; }

.en-searchbar {
  display: none; position: sticky; top: 75px; z-index: 490;
  background: #ffffff; border-bottom: 1px solid #ececec; padding: 14px 40px;
}
.en-searchbar.open { display: block; }
.en-searchbar form { display: flex; gap: 10px; max-width: 640px; margin: 0 auto; }
.en-searchbar input[type="text"] {
  flex: 1; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px;
  height: auto; background: #fff;
}
.en-searchbar button {
  padding: 10px 18px; border: 0; border-radius: 6px; background: #111111; color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer;
}

.en-mobile-nav {
  display: none; position: sticky; top: 75px; z-index: 495;
  background: #ffffff; border-bottom: 1px solid #ececec; padding: 8px 0 12px;
}
.en-mobile-nav.open { display: block; }
.en-mobile-nav { max-height: calc(100vh - 90px); overflow-y: auto; }
.en-mobile-nav a { display: block; padding: 12px 24px; font-size: 14px; color: #1f2937 !important; border-bottom: 1px solid #f5f5f5; }
.en-mobile-nav a:last-child { border-bottom: 0; }
.en-mobile-nav a.en-sub-link { padding-left: 44px; font-size: 13px; color: #6b7280 !important; }

/* Search button loading state (button disables + inline spinner on submit) */
.en-spinner {
  width: 14px; height: 14px; flex: none; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #ffffff;
  animation: en-spin 0.7s linear infinite;
}
.en-btn-loading {
  display: inline-flex !important; align-items: center; gap: 8px;
  opacity: 0.75; cursor: default; pointer-events: none;
}
@keyframes en-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .en-spinner { animation: none; } }

/* ── Shared card pieces ──────────────────────────────────── */
.en-cat {
  display: inline-block; font-size: 11px; font-weight: 700; font-style: italic;
  letter-spacing: 1px; color: #2563eb !important; text-transform: uppercase;
}
.en-cat-chip {
  display: inline-block; background: #111111; color: #ffffff !important; font-size: 10.5px;
  font-weight: 700; font-style: italic; letter-spacing: 1px; padding: 5px 10px; text-transform: uppercase;
}
.en-thumb { display: block; position: relative; overflow: hidden; background: #f3f4f6; }
.en-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.en-r155 { aspect-ratio: 1.55; } .en-r137 { aspect-ratio: 1.37; } .en-r136 { aspect-ratio: 1.36; }
.en-r148 { aspect-ratio: 1.48; } .en-r182 { aspect-ratio: 1.82; } .en-r169 { aspect-ratio: 16 / 9; }
.en-r103 { aspect-ratio: 1.03; } .en-r19 { aspect-ratio: 1.9; }
.en-card .en-title { margin-top: 12px; font-size: 17px; font-weight: 700; line-height: 1.4; }
.en-card .en-title a { color: #111827 !important; }
.en-card .en-title a:hover { color: #2563eb !important; }
.en-card .en-excerpt {
  margin-top: 10px; font-size: 13.5px; line-height: 1.55; color: #4b5563;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.en-card .en-meta { margin-top: 14px; font-size: 12.5px; color: #6b7280; }
.en-card .en-date { margin-top: 14px; font-size: 11px; letter-spacing: 0.8px; color: #9ca3af; text-transform: uppercase; }
.en-card.en-card-serif .en-title { font-family: Georgia, 'Times New Roman', serif; font-size: 19.5px; font-weight: 600; line-height: 1.35; }

.en-grid { display: grid; gap: 28px; }
.en-cols2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.en-cols3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.en-cols4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.en-rule { height: 1px; background: #e5e7eb; }

/* ── Homepage ────────────────────────────────────────────── */
.en-home-main {
  display: grid; grid-template-columns: minmax(0, 1fr) 384px; gap: 24px;
  align-items: start; padding-top: 44px; padding-bottom: 56px;
}
/* Hero image: never crop the designed banner artwork — natural height. */
.en-hero > .en-thumb { aspect-ratio: auto; background: transparent; }
.en-hero > .en-thumb img { width: 100%; height: auto; object-fit: unset; display: block; }
.en-hero .en-cat { margin-top: 30px; font-size: 12px; letter-spacing: 1.2px; }
.en-hero-title { margin: 14px 0 18px !important; font-size: clamp(26px, 5.5vw, 34px); font-weight: 600; line-height: 1.3; letter-spacing: -0.3px; }
.en-hero-title a { color: #111827 !important; }
.en-hero-excerpt { max-width: 660px; font-size: 17.5px; line-height: 1.65; color: #4b5563; }
.en-hero-meta { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 13px; color: #6b7280; }
.en-hero-meta .en-mdot { width: 4px; height: 4px; border-radius: 50%; background: #d1d5db; display: inline-block; }
.en-top3 { margin-top: 56px; gap: 26px; }
.en-top3 .en-title { font-size: 15.5px; font-weight: 650; }

.en-side { border-left: 1px solid #ececec; padding-left: 24px; }
.en-side-head { display: flex; align-items: center; gap: 16px; }
.en-side-head .en-lbl { font-size: 13.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; white-space: nowrap; color: #111827; }
.en-side-head .en-line { flex: 1; height: 1px; background: #d1d5db; }
.en-side-item { display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 16px; margin-top: 30px; align-items: start; }
.en-side-item .en-cat { font-size: 10.5px; }
.en-side-item h3 { margin: 7px 0 0; font-size: 15.5px; font-weight: 600; line-height: 1.45; }
.en-side-item h3 a { color: #111827 !important; }
.en-side-item .en-sdate { margin-top: 10px; font-size: 10.5px; letter-spacing: 0.8px; color: #9ca3af; text-transform: uppercase; }
.en-side-item .en-thumb { width: 150px; height: 84px; border-radius: 5px; }
/* Chrome blurs sharply-downscaled images; this keeps text/logos crisp. */
.en-side-item .en-thumb img { image-rendering: -webkit-optimize-contrast; }
.en-viewall {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 30px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; color: #111827 !important; text-transform: uppercase;
}
.en-home-main .en-side { align-self: stretch; }
.en-side-banner { position: sticky; top: 95px; margin-top: 32px; }
.en-side-banner a { display: block; }
.en-side-banner img { display: block; width: 100%; height: auto; border: 1px solid #ececec; }

.en-sec-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.en-sec-head .en-hgroup { display: flex; align-items: flex-start; gap: 14px; }
.en-sec-head h2 { font-size: 21px; font-weight: 700; color: #111827; }
.en-sec-head .en-hsub { margin-top: 4px; font-size: 13px; color: #6b7280; }
.en-btn-outline {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px;
  border: 1px solid #d1d5db; outline: 1px solid #e5e7eb; outline-offset: 3px;
  border-radius: 2px; font-size: 13.5px; font-weight: 600; color: #111827 !important; background: #ffffff;
}

.en-featured { display: grid; grid-template-columns: minmax(0, 1fr) 448px; gap: 56px; margin-top: 48px; align-items: start; }
.en-featured-side { display: grid; grid-template-columns: minmax(0, 1fr) 90px; gap: 20px; align-items: start; }
.en-featured-side .en-thumb { width: 90px; height: 90px; border-radius: 5px; }
.en-featured-side h3 { margin-top: 10px; font-size: 17px; font-weight: 650; line-height: 1.45; }
.en-featured-side h3 a { color: #111827 !important; }

/* Dark band */
.en-band {
  background: #0a0a0a;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 110px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 110px);
  padding: 44px 0 72px; color: #ffffff;
}
.en-band-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.en-band-title { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.en-band-title .en-kicker { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; color: #d1d5db; text-transform: uppercase; }
.en-band-title .en-kline { width: 22px; height: 1px; background: #9ca3af; display: inline-block; }
.en-band-title h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 26px; font-weight: 600; color: #ffffff; margin-left: 6px; }
.en-band-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: #ffffff !important; text-transform: uppercase; }
.en-band-link:hover { color: #93c5fd !important; }
.en-band .en-grid { margin-top: 34px; gap: 26px; }
.en-band-track {
  display: flex; gap: 26px; margin-top: 34px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.en-band-track::-webkit-scrollbar { display: none; }
.en-band-track .en-band-card { flex: none; width: min(380px, 85vw); }
.en-band-card { display: block; position: relative; aspect-ratio: 1.48; overflow: hidden; background: #1a1a1a; }
.en-band-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.en-band-card .en-band-t {
  position: absolute; left: 12px; right: 40px; bottom: 12px; pointer-events: none;
  font-family: Georgia, 'Times New Roman', serif; font-size: 19px; font-weight: 600;
  line-height: 1.3; color: #ffffff; text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.en-band-card::after {
  content: ""; position: absolute; inset: 40% 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}
.en-band-card .en-band-t { z-index: 1; }

/* Technology-style section */
.en-tech { padding-top: 56px; padding-bottom: 72px; }
.en-tech .en-tbar { height: 2px; background: #111111; }
.en-tech .en-tlabel { margin-top: 16px; font-size: 14px; font-weight: 700; color: #111827; }
.en-tech-grid { display: grid; grid-template-columns: 1fr 1.18fr 0.78fr; gap: 48px; margin-top: 28px; align-items: start; }
.en-tech-lead { padding-bottom: 28px; border-bottom: 1px solid #e5e7eb; }
.en-tech-lead + .en-tech-lead { padding-top: 28px; padding-bottom: 0; border-bottom: 0; }
.en-tech-lead h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 700; line-height: 1.35; }
.en-tech-lead h3 a { color: #111827 !important; }
.en-tech-lead p { margin-top: 16px; font-size: 14px; line-height: 1.6; color: #4b5563; }
.en-min { margin-top: 18px; font-size: 10.5px; letter-spacing: 1.5px; color: #9ca3af; text-transform: uppercase; }
.en-tech-photo { aspect-ratio: 0.77; }
.en-tech-brief { padding: 22px 0; border-bottom: 1px solid #e5e7eb; }
.en-tech-brief h4 { font-family: Georgia, 'Times New Roman', serif; font-size: 16.5px; font-weight: 700; line-height: 1.4; margin: 0; }
.en-tech-brief h4 a { color: #111827 !important; }

/* Latest from Elets TV */
.en-tv { padding-top: 40px; padding-bottom: 72px; }
.en-tv-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.en-tv-head .en-hgroup { display: flex; align-items: flex-start; gap: 12px; }
.en-btn-red {
  display: inline-flex; align-items: center; gap: 9px; background: #dc2626;
  color: #ffffff !important; font-size: 13.5px; font-weight: 600; padding: 11px 18px; border-radius: 6px;
}
.en-btn-red:hover { background: #b91c1c; color: #ffffff !important; }
.en-tv-grid { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 0; margin-top: 40px; align-items: start; }
.en-tv-main { padding-right: 40px; }
.en-tv-player {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border: 2px solid #f2d50f; background: #0a0a0a; box-sizing: border-box;
}
.en-tv-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.en-tv-rail { border-left: 1px solid #e5e7eb; padding-left: 26px; }
.en-tv-item { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid #e5e7eb; align-items: flex-start; }
.en-tv-item .en-tv-thumb {
  position: relative; width: 128px; height: 72px; flex: none;
  border: 1px solid #e5e7eb; background: #0a0a0a; overflow: hidden; display: block;
}
.en-tv-item .en-tv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.9; }
.en-tv-item .en-tv-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 6px; background: #dc2626;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.en-tv-item h4 { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.45; }
.en-tv-item h4 a { color: #111827 !important; }
.en-tv-item .en-tv-date { margin-top: 8px; font-size: 12px; color: #6b7280; }
.en-tv-viewall {
  display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 24px;
  padding: 14px; border: 1px solid #d1d5db; border-radius: 4px;
  font-size: 13.5px; font-weight: 500; color: #111827 !important; background: #ffffff;
}
.en-tv-viewall:hover { background: #f9fafb; }

/* Rotating ad slider (Most Discussed left column) */
.en-ad-slider { position: relative; }
.en-ad-slide { display: none; }
.en-ad-slide.active { display: block; animation: en-ad-fade 0.5s ease; }
@keyframes en-ad-fade { from { opacity: 0; } to { opacity: 1; } }
.en-ad-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.en-ad-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: #d1d5db; cursor: pointer;
}
.en-ad-dots button.active { background: #111827; width: 22px; border-radius: 5px; }

/* Most discussed */
.en-discussed { border-top: 1px solid #e5e7eb; padding: 64px 0 72px; }
.en-disc-grid { display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 64px; align-items: start; }
.en-disc-head h2 { font-size: 22px; font-weight: 650; color: #111827; }
.en-disc-head p { margin-top: 16px; font-size: 13.5px; line-height: 1.6; color: #4b5563; }
/* Sponsored banner in the Most Discussed left column */
.en-disc-grid .en-disc-head { align-self: stretch; }
.en-disc-banner { position: sticky; top: 95px; margin-top: 32px; }
.en-disc-banner .en-ad-label {
  display: block; text-align: center; margin-bottom: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; color: #9ca3af; text-transform: uppercase;
}
.en-disc-banner .en-ad-frame {
  display: block; border: 1px solid #ececec; border-radius: 10px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06); background: #fff;
}
.en-disc-banner .en-ad-frame img { display: block; width: 100%; height: auto; }
.en-disc-banner .en-ad-frame:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.12); }
.en-disc-banner .en-ad-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px;
  padding: 12px 16px; border: 1px solid #d1d5db; border-radius: 6px;
  font-size: 13px; font-weight: 600; color: #111827 !important; background: #ffffff;
}
.en-disc-banner .en-ad-cta:hover { border-color: #111827; }
.en-disc-item {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) 96px; gap: 26px;
  padding: 6px 0 28px; border-bottom: 1px solid #e5e7eb; align-items: start;
}
.en-disc-item .en-rank { font-family: Georgia, 'Times New Roman', serif; font-size: 46px; line-height: 1; color: #d1d5db; }
.en-disc-item h3 { margin-top: 8px; font-family: Georgia, 'Times New Roman', serif; font-size: 21px; font-weight: 700; line-height: 1.35; }
.en-disc-item h3 a { color: #111827 !important; }
.en-disc-item p { margin-top: 12px; font-size: 13.5px; line-height: 1.6; color: #4b5563; }
.en-disc-item .en-thumb { width: 96px; height: 92px; border-radius: 4px; }

/* Carousel */
.en-carousel { padding: 48px 0 88px; overflow: hidden; }
.en-carousel-track {
  display: flex; gap: 40px; margin-top: 40px; padding: 0 12px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.en-carousel-track::-webkit-scrollbar { display: none; }
.en-carousel-track .en-card { flex: none; width: min(280px, 75vw); }
/* Landscape ratio — portrait (0.8) cropped the artwork badly. */
.en-carousel-track .en-thumb { aspect-ratio: 1.5; }
.en-carousel-track .en-title { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; font-weight: 700; line-height: 1.35; }

/* ── Single article ──────────────────────────────────────── */
.en-article-head { max-width: 1000px; margin: 0 auto; padding: 56px 32px 0; text-align: center; }
.en-article-title {
  font-family: 'Playfair Display', Georgia, serif; font-style: normal; font-weight: 600;
  font-size: clamp(25px, 4.5vw, 42px); line-height: 1.2; letter-spacing: -0.4px; color: #0a0a0a;
}
.en-article-hero { padding-top: 40px; }
/* Hero must never crop the banner artwork — full image, natural height,
   held to a comfortable reading width rather than the full grid. */
.en-article-hero .en-thumb { aspect-ratio: auto; background: transparent; max-width: 820px; margin: 0 auto; }
.en-article-hero .en-thumb img { width: 100%; height: auto; object-fit: unset; display: block; }

/* ── Side ad rails (single/detail pages) ─────────────────────
   Absolute columns spanning the article area, with a sticky inner block:
   the banner rides along while scrolling, never overlaps the sticky header,
   and stops as the article ends so it can't sit over the footer. */
.en-rail { display: none; }
@media (min-width: 1280px) {
  .en-main-rails { position: relative; padding-left: 174px; padding-right: 174px; }
  .en-rail { display: block; position: absolute; top: 0; bottom: 0; width: 150px; z-index: 40; }
  .en-rail-left  { left: 12px; }
  .en-rail-right { right: 12px; }
  .en-rail-inner {
    position: sticky; top: 100px;
    background: #ffffff; border: 1px solid #ececec; border-radius: 4px; padding: 20px 6px 6px;
  }
  .en-rail a { display: block; }
  .en-rail img { display: block; width: 100%; height: auto; }
  .en-rail-label {
    position: absolute; top: 5px; left: 8px;
    font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #9ca3af;
  }
  .en-rail-close {
    position: absolute; top: 2px; right: 4px; width: 18px; height: 18px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff; border: 1px solid #d1d5db; border-radius: 3px;
    font-size: 14px; line-height: 1; color: #6b7280; cursor: pointer;
  }
  .en-rail-close:hover { color: #111827; border-color: #9ca3af; }
}
@media (min-width: 1600px) {
  .en-rail { width: 160px; }
  .en-rail-left  { left: 24px; }
  .en-rail-right { right: 24px; }
  .en-main-rails { padding-left: 200px; padding-right: 200px; }
}
.en-article-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 56px;
  align-items: start; padding-top: 40px; padding-bottom: 72px;
}
/* Full-width article body (no sidebar) — held to a comfortable measure. */
.en-article-full { max-width: 900px; padding-top: 40px; padding-bottom: 72px; }
.en-article-full .en-body { font-size: 18.5px; }

.en-article-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; row-gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid #e5e7eb; flex-wrap: wrap;
}

/* Single, compact share row */
.en-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.en-share-lbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #111827; }
.en-share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0; border: 1px solid #d1d5db; border-radius: 50%;
  background: #ffffff; color: #374151 !important; cursor: pointer; transition: all .15s ease;
}
.en-share-btn:hover { background: #111827; border-color: #111827; color: #ffffff !important; }
.en-copied {
  font-size: 12px; color: #16a34a; opacity: 0; transition: opacity .2s ease;
}
.en-copied.show { opacity: 1; }
.en-article-meta .en-mgroup { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.en-byline { display: flex; align-items: center; gap: 10px; padding: 18px 0 6px; font-size: 13px; color: #6b7280; }
.en-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px; line-height: 1.75; color: #1f2937;
  margin-top: 10px;
}
.en-body p { margin: 28px 0 0 !important; font-size: inherit !important; font-family: inherit !important; text-align: left !important; }
.en-body > p:first-child::first-letter {
  float: left; font-family: inherit; font-size: 84px; line-height: 0.78; font-weight: 600;
  padding: 10px 18px 0 16px; margin-right: 4px; border-left: 3px solid #111827; color: #0a0a0a;
}
.en-body h2 { font-size: 28px !important; line-height: 1.3; margin: 36px 0 0 !important; }
.en-body h3 { font-size: 23px !important; line-height: 1.35; margin: 32px 0 0 !important; }
.en-body img { height: auto; margin-top: 28px; max-width: 100%; }
/* Classic-editor alignment — honour exactly what was set in wp-admin.
   (Legacy style.css only floats .wp-block-image figures, so bare classic
   img.alignleft/alignright had no float rule and fell out of the text.) */
.en-body img.alignleft, .en-body .alignleft {
  float: left; margin: 6px 28px 14px 0 !important; display: inline !important;
}
.en-body img.alignright, .en-body .alignright {
  float: right; margin: 6px 0 14px 28px !important; display: inline !important;
}
.en-body img.aligncenter, .en-body .aligncenter {
  display: block !important; float: none; margin: 28px auto !important;
}
.en-body .wp-caption { max-width: 100%; }
.en-body .wp-caption.alignleft, .en-body .wp-caption.alignright { display: block !important; }
.en-body .wp-caption img { margin-top: 0; }
.en-body .wp-caption-text { font-size: 13px; color: #6b7280; margin-top: 8px; line-height: 1.5; }
/* Contain floats so a tall floated image can't spill past the article. */
.en-body::after { content: ""; display: block; clear: both; }
.en-body blockquote {
  margin: 32px 0 0; padding: 4px 0 4px 24px; border-left: 3px solid #111827;
  font-style: italic; color: #374151;
}
.en-body ul, .en-body ol { margin: 24px 0 0; padding-left: 28px; }
.en-body li { margin-top: 8px; line-height: 1.6; }
/* In-content banner slots (injected between paragraphs) */
.en-body .en-inline-ad { margin: 36px 0 0; text-align: center; }
.en-inline-ad-label {
  display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #9ca3af; margin-bottom: 10px;
}
.en-inline-ad a { display: block; }
.en-inline-ad img {
  /* Never upscale past the file's natural width — stretching is what blurs
     banner creatives. Centered at natural size, shrinks on small screens. */
  display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto;
  border: 1px solid #ececec; border-radius: 4px;
}

/* Shared banner slot: natural size, centered, shrink-only. */
.en-banner { display: block; text-align: center; }
.en-banner img { display: inline-block; width: auto; max-width: 100%; height: auto; }

/* Top banner slider (above the header, every page). Two slide sets:
   wide strips for desktop, square-ish creatives for mobile. A fixed-ratio
   viewport keeps every slide the SAME height (no jump between creatives);
   the track slides horizontally with a smooth ease. line-height:0 keeps
   the banner flush against the menu. */
.en-top-banner {
  display: block; line-height: 0; background: #fdf9ec;
  border-bottom: 1px solid #ececec;
}
.en-tb-track {
  display: flex; height: 100%;
  transition: transform .7s cubic-bezier(0.45, 0, 0.2, 1); will-change: transform;
}
.en-tb-slide { display: block; flex: 0 0 100%; height: 100%; }
.en-tb-slide img {
  display: block; width: 100%; height: 100%; object-fit: contain; margin: 0;
}
/* Desktop set: wide strip creatives (~800×150). */
.en-tb-desktop { max-width: 900px; margin: 0 auto; aspect-ratio: 800 / 150; overflow: hidden; }
.en-tb-mobile { display: none; }
@media (max-width: 767px) {
  .en-tb-desktop { display: none; }
  .en-tb-mobile {
    display: block; max-width: 440px; margin: 0 auto;
    aspect-ratio: 1 / 1; overflow: hidden;
  }
}

/* Mobile viewport guard: no element (plugin-injected banners, wide inline
   styles in old post content, etc.) may cause sideways scrolling on phones. */
@media (max-width: 767px) {
  html, body { overflow-x: hidden !important; }
}

/* Legacy top slideshow (server-added #slideshow-container): its mobile slide
   duplicated the top banner slot — collapse the whole box on mobile so no
   blank space remains; desktop untouched. */
@media (max-width: 767px) {
  #slideshow-container,
  #slideshow-container .slide-wrapper,
  #slideshow-container .mobile-slidenew,
  #slideshow-container .desktop-slidenew,
  #slideshow-container img {
    display: none !important;
    height: 0 !important; max-height: 0 !important; min-height: 0 !important;
    margin: 0 !important; padding: 0 !important; border: 0 !important;
    overflow: hidden !important;
  }
}

.en-tags { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.en-tags .en-tags-lbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #6b7280; text-transform: uppercase; }
.en-tags a {
  display: inline-block; border: 1px solid #d9cfc1; background: #fff; padding: 8px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; color: #111827 !important; text-transform: uppercase;
}
.en-tags a:hover { border-color: #111827; }

/* Follow pills — sit inline with Listen / read-time in the meta row */
.en-follow { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.en-follow .en-follow-lbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #111827; text-transform: uppercase; }
.en-follow a {
  display: inline-flex; align-items: center; gap: 7px; border: 1px solid #d1d5db;
  border-radius: 22px; padding: 7px 14px; font-size: 12.5px; font-weight: 600; color: #111827 !important;
  background: #fff; white-space: nowrap;
}
.en-follow a:hover { border-color: #9ca3af; }
.en-follow a img { width: 14px; height: 14px; }

/* Coverage list (inside article) */
.en-coverage { margin-top: 48px; }
.en-coverage > h2 { font-size: 22px; font-weight: 650; color: #111827; }
.en-cov-item { display: flex; gap: 16px; margin-top: 34px; }
.en-cov-item .en-cov-dot { width: 5px; height: 5px; border-radius: 50%; background: #6b7280; flex: none; margin-top: 10px; }
.en-cov-item h3 { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.45; }
.en-cov-item h3 a { color: #111827 !important; }
.en-cov-item p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: #4b5563; }
.en-cov-item .en-cov-more { font-weight: 650; color: #111827 !important; white-space: nowrap; }

/* What to Read Next + Trending (full-width, below article) */
.en-next { border-top: 1px solid #e5e7eb; }
.en-next-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 64px;
  align-items: start; padding-top: 56px; padding-bottom: 88px;
}
.en-next-grid h2 { font-size: 22px; font-weight: 700; color: #111827; }
.en-next-full { padding-top: 56px; padding-bottom: 80px; }
.en-next-full > h2 { font-size: 22px; font-weight: 700; color: #111827; }
.en-next-cards { margin-top: 32px; gap: 34px 28px; }
.en-next-cards .en-thumb { aspect-ratio: 1.5; }
.en-next-cards .en-title { margin-top: 16px; font-family: Georgia, 'Times New Roman', serif; font-size: 19px; font-weight: 600; line-height: 1.35; }
.en-trend-item { display: flex; gap: 20px; margin-top: 26px; }
.en-trend-item .en-trend-rank { font-family: Georgia, 'Times New Roman', serif; font-size: 26px; line-height: 1.1; color: #9ca3af; flex: none; min-width: 22px; }
.en-trend-item h4 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 18.5px; font-weight: 600; line-height: 1.4; }
.en-trend-item h4 a { color: #111827 !important; }
.en-next-banner { position: sticky; top: 95px; margin-top: 36px; }
.en-next-banner a { display: block; }
.en-next-banner img { display: block; width: 100%; max-width: 320px; height: auto; margin: 0 auto; border: 1px solid #ececec; }

/* Print edition sidebar card */
.en-print { display: flex; gap: 20px; padding: 20px; }
.en-print .en-cover { width: 96px; height: 130px; flex: none; background: #ffffff; border: 1px solid #f1e5c4; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.en-print .en-cover img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.en-print .en-print-info { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.en-print .en-issue { font-size: 15.5px; font-weight: 650; color: #111827; }
.en-print a { font-size: 14px; color: #374151 !important; }
.en-print a.en-muted { color: #9ca3af !important; }

/* Video sidebar card */
.en-video-thumb { display: block; position: relative; aspect-ratio: 16 / 9; background: #0a0a0a; overflow: hidden; }
.en-video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.en-video-thumb .en-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 10px; background: #dc2626;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.en-video-title { margin: 16px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: 17px; font-weight: 700; line-height: 1.45; }
.en-video-title a { color: #111827 !important; display: inline-flex; align-items: baseline; gap: 8px; }
.en-video-title .en-live-dot { width: 11px; height: 11px; border-radius: 50%; background: #ef4444; flex: none; align-self: center; }
.en-live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #dc2626; }
.en-live-badge .en-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; }

.en-related { margin-top: 48px; }
.en-related > h2 { font-size: 22px; font-weight: 650; color: #111827; }
.en-related .en-grid { margin-top: 28px; gap: 30px; }
.en-related .en-thumb { aspect-ratio: 1.03; }
.en-related .en-title { margin-top: 16px; font-family: Georgia, 'Times New Roman', serif; font-size: 19px; font-weight: 600; line-height: 1.35; }

/* Article sidebar — stretches to the full article height so the last card
   can stick while you scroll and no white gap opens before the footer. */
.en-aside { display: flex; flex-direction: column; gap: 28px; align-self: stretch; }
.en-article-grid .en-aside > :last-child { position: sticky; top: 95px; }
.en-promo { background: #fdf9ec; border: 1px solid #f1e5c4; border-radius: 10px; overflow: hidden; }
.en-promo .en-promo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #f1e5c4;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #374151; text-transform: uppercase;
}
.en-promo .en-promo-body { padding: 16px 20px 20px; font-size: 14.5px; line-height: 1.55; color: #111827; }
.en-promo .en-promo-body img { display: block; width: 100%; height: auto; }
.en-promo .en-promo-img { display: block; }
.en-promo .en-promo-img img { display: block; width: 100%; height: auto; }
.en-promo ul { list-style: none; margin: 0; padding: 0; }
.en-promo li + li { margin-top: 14px; }
.en-promo li a { font-size: 14.5px; font-weight: 600; line-height: 1.45; color: #111827 !important; }
.en-promo-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14px; color: #2563eb !important; }

/* ── Magazine ────────────────────────────────────────────── */
.en-mag-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #b45309; background: #fdf4e3;
  border: 1px solid #f1e5c4; border-radius: 4px; padding: 6px 12px;
}
.en-mag-hero {
  display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 48px; align-items: center;
  background: #fdf9ec; border: 1px solid #f1e5c4; border-radius: 14px; padding: 40px;
  margin-top: 28px;
}
.en-mag-hero-cover { display: block; }
.en-mag-hero-cover img {
  display: block; width: 100%; height: auto; border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.en-mag-hero-body h2 { margin: 16px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; line-height: 1.15; color: #0a0a0a; }
.en-mag-hero-meta { margin-top: 12px; display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #4b5563; flex-wrap: wrap; }
.en-mag-hero-body p { margin-top: 18px; font-size: 15.5px; line-height: 1.7; color: #4b5563; max-width: 620px; }
.en-mag-hero-cta { margin-top: 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.en-mag-btn {
  display: inline-flex; align-items: center; gap: 10px; background: #111111;
  color: #ffffff !important; font-size: 13.5px; font-weight: 700; letter-spacing: 0.4px;
  padding: 13px 24px; border-radius: 4px;
}
.en-mag-btn:hover { background: #2d2d2d; color: #ffffff !important; }
.en-mag-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid #d9cfc1;
  background: #ffffff; color: #111827 !important; font-size: 13.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 4px;
}
.en-mag-btn-ghost:hover { border-color: #111827; }

.en-mag-archive { padding-top: 64px; padding-bottom: 24px; }
.en-mag-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 28px; }
.en-mag-card { display: flex; flex-direction: column; }
.en-mag-cover {
  display: block; position: relative; overflow: hidden; border-radius: 4px;
  background: #f3f4f6; box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.en-mag-cover img { display: block; width: 100%; height: auto; }
.en-mag-cover:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.18); }
.en-mag-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.55); opacity: 0; transition: opacity .18s ease;
}
.en-mag-overlay span {
  border: 1px solid #ffffff; color: #ffffff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 9px 18px; border-radius: 3px;
}
.en-mag-cover:hover .en-mag-overlay { opacity: 1; }
.en-mag-info { padding-top: 16px; }
.en-mag-info h3 { font-size: 15.5px; font-weight: 700; line-height: 1.4; color: #111827; }
.en-mag-vol { margin-top: 6px; font-size: 12.5px; color: #6b7280; }
.en-mag-sub {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: 12.5px; font-weight: 650; color: #2563eb !important;
}

.en-mag-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  background: #0a0a0a; border-radius: 14px; padding: 48px;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 110px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 110px);
}
.en-mag-cta h2 { margin-top: 16px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: #ffffff; }
.en-mag-cta p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: #d1d5db; max-width: 560px; }
.en-mag-cta .en-mag-btn { background: #ffffff; color: #0a0a0a !important; }
.en-mag-cta .en-mag-btn:hover { background: #f3f4f6; color: #0a0a0a !important; }

/* ── Generic pages ───────────────────────────────────────── */
.en-page-head { padding: 48px 0 10px; }
.en-page-head h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 700; letter-spacing: -0.6px; color: #111827; }

.en-page-body { padding: 32px 0 80px; font-size: 16px; line-height: 1.75; color: #1f2937; }
.en-page-body-tight { padding-top: 8px; }
.en-page-body h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; margin: 40px 0 0; color: #111827; }
.en-page-body h2 { font-size: clamp(22px, 3.2vw, 28px); font-weight: 700; margin: 36px 0 0; color: #111827; }
.en-page-body h3 { font-size: 20px; font-weight: 700; margin: 30px 0 0; color: #111827; }
.en-page-body h4 { font-size: 17px; font-weight: 700; margin: 26px 0 0; color: #111827; }
.en-page-body p { margin: 18px 0 0; }
.en-page-body a { color: #2563eb; }
.en-page-body ul, .en-page-body ol { margin: 18px 0 0; padding-left: 24px; }
.en-page-body li { margin-top: 8px; list-style: inherit; }
.en-page-body ul { list-style: disc; }
.en-page-body ol { list-style: decimal; }
.en-page-body img { max-width: 100%; height: auto; }
.en-page-body iframe { max-width: 100%; border: 0; }
.en-page-body table { width: 100% !important; border-collapse: collapse; margin: 20px 0 0; }
.en-page-body table td, .en-page-body table th { padding: 10px 12px; vertical-align: top; border-bottom: 1px solid #ececec; }
.en-page-body hr { border: 0; border-top: 1px solid #e5e7eb; margin: 32px 0 0; }
.en-page-body .alignleft  { float: left; margin: 6px 24px 12px 0; }
.en-page-body .alignright { float: right; margin: 6px 0 12px 24px; }
.en-page-body .aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Builder buttons that survive as plain HTML */
.en-page-body .su-button, .en-webinar-grid .su-button {
  display: inline-block !important; border-radius: 4px !important; margin: 0 6px 6px 0;
  text-decoration: none !important;
}
.en-page-body .su-button span, .en-webinar-grid .su-button span {
  display: inline-block; padding: 8px 16px !important; font-size: 11.5px !important;
  line-height: 1.2 !important; font-weight: 650; letter-spacing: 0.3px;
}

/* Webinar cards (legacy .mywebinar markup, lifted into a real grid by page.php) */
.en-webinar-section { padding: 8px 0 80px; }
.en-webinar-grid { gap: 30px 28px; align-items: stretch; }
.en-webinar-grid .mywebinar {
  display: flex; flex-direction: column; width: auto; margin: 0;
  border: 1px solid #ececec; border-radius: 12px; overflow: hidden; background: #ffffff;
  min-height: 0 !important; text-align: left !important; height: 100%;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.en-webinar-grid .mywebinar:hover { transform: translateY(-3px); border-color: #d1d5db; box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.en-webinar-grid .mywebinar > div:first-child { background: #0a0a0a; }
.en-webinar-grid .mywebinar img { display: block; width: 100%; height: auto; }
.en-webinar-grid .mywebinar1 {
  padding: 16px 18px 0; font-size: 13.5px; line-height: 1.6; color: #4b5563;
}
.en-webinar-grid .mywebinar1:last-child { padding: 16px 18px 18px; margin-top: auto; }
.en-webinar-grid .mywebinar1 strong {
  display: block; margin-bottom: 8px; font-size: 14.5px; line-height: 1.45; color: #111827;
  text-transform: uppercase; letter-spacing: 0.2px;
}
/* Normalized action buttons: Website (blue) / Watch Here (green) / Report (red) */
.en-wb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; margin: 0 8px 8px 0; border-radius: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: #ffffff !important; line-height: 1.2; white-space: nowrap;
  transition: filter .12s ease, transform .12s ease;
}
.en-wb-btn:hover { filter: brightness(0.88); transform: translateY(-1px); color: #ffffff !important; }
.en-wb-site   { background: #2563eb; }
.en-wb-watch  { background: #16a34a; }
.en-wb-report { background: #dc2626; }

/* Conference / event cards (legacy .myevent markup, gridded in place) */
.en-event-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px;
  margin: 28px 0 8px; align-items: stretch;
}
.en-event-grid .myevent {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border: 1px solid #ececec; border-radius: 12px; background: #ffffff;
  padding: 20px 18px 18px; text-align: center; overflow: hidden;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.en-event-grid .myevent:hover { border-color: #d1d5db; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.08); }
.en-event-grid .myevent img,
.en-event-grid .myevent .img-logo {
  display: block; width: 100% !important; height: auto; margin: 0 auto; border-radius: 6px;
}
.en-event-grid .event-name {
  margin-top: 16px; font-size: 14.5px; font-weight: 700; line-height: 1.45; color: #111827;
}
.en-event-grid .event-name small { display: block !important; margin-top: 4px; font-weight: 500; }
.en-event-grid .event-content { margin-top: 8px; font-size: 13px; color: #6b7280; }
.en-event-grid .myevent > div:last-child { margin-top: auto; padding-top: 14px; }
.en-event-grid .myevent a[href] { color: #111827; }
.en-event-grid .myevent > div:last-child a {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid #d1d5db; border-radius: 4px; padding: 9px 16px;
  font-size: 12px; font-weight: 650; letter-spacing: 0.4px; text-transform: uppercase;
  color: #111827 !important; background: #ffffff;
}
.en-event-grid .myevent > div:last-child a:hover { background: #111827; border-color: #111827; color: #ffffff !important; }
/* Upcoming/Past ribbons: removed by request — the section headings already
   group the events, so the per-card badges are redundant. */
.en-event-grid .ribbon-myevent-red,
.en-event-grid .ribbon-myevent-green,
.en-event-grid .ribbon-green,
.en-event-grid .ribbon-red { display: none !important; }

/* Dead-logo fallback: show the masthead quietly rather than a broken icon. */
.en-event-grid .en-logo-fallback { opacity: .5; padding: 10px 0; }
/* Event grid responsive: 4 → 3 (≤1024) → 2 (≤900) → 1 (≤520). */
@media (max-width: 1024px) {
  .en-event-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (max-width: 900px) {
  .en-event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .en-event-grid .myevent { padding: 16px 14px 14px; }
  .en-event-grid .event-name { font-size: 13.5px; }
  .en-event-grid .myevent > div:last-child a {
    width: 100%; padding: 9px 8px; font-size: 10.5px; letter-spacing: 0.4px;
  }
}
@media (max-width: 520px) {
  .en-event-grid { grid-template-columns: 1fr; gap: 18px; }
  .en-event-grid .myevent { width: 100%; max-width: 420px; margin: 0 auto; }
  .en-event-grid .event-name { font-size: 14.5px; }
  .en-event-grid .myevent > div:last-child a { width: auto; padding: 9px 16px; font-size: 12px; }
}
/* Editors pasted fixed pixel widths with !important on the banner slides,
   which overflows tablets — rein them back in. */
.en-page-body .desktop-slidenew img,
.en-page-body img[style*="728px"],
.en-page-body img[style*="width:"] { max-width: 100% !important; height: auto !important; }
/* A bolded paragraph used as a heading (legacy editor habit) reads as a heading. */
.en-page-body p:has(> strong:only-child),
.en-about-copy p:has(> strong:only-child) {
  margin-top: 34px; font-size: 20px; font-weight: 700; color: #111827;
}
.en-page-body p:has(> strong:only-child) strong,
.en-about-copy p:has(> strong:only-child) strong { font-weight: inherit; }

/* Video series grid */
.en-video-section { padding: 28px 0 24px; }
.en-video-grid { gap: 30px; }
.en-video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0a0a0a; border-radius: 8px; overflow: hidden; }
.en-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.en-video-more { margin-top: 36px; text-align: center; padding-bottom: 40px; }

/* ── About page ──────────────────────────────────────────── */
.en-about-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: center;
  background: #fdf9ec; border: 1px solid #f1e5c4; border-radius: 14px; padding: 40px;
  margin-top: 28px;
}
.en-about-hero h2 {
  margin-top: 16px; font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3.2vw, 34px); font-weight: 700; line-height: 1.2; color: #0a0a0a;
}
.en-about-hero > div > p { margin-top: 16px; font-size: 15.5px; line-height: 1.7; color: #4b5563; max-width: 620px; }
.en-about-cta { margin-top: 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.en-about-facts { display: flex; flex-direction: column; gap: 16px; }
.en-fact { background: #ffffff; border: 1px solid #f1e5c4; border-radius: 10px; padding: 16px 18px; }
.en-fact strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 22px; color: #111827; }
.en-fact span { display: block; margin-top: 4px; font-size: 12.5px; color: #6b7280; }

.en-about-copy { max-width: 900px; padding-top: 40px; padding-bottom: 24px; }
.en-about-copy p { text-align: left !important; }
.en-about-copy strong { color: #111827; }

.en-about-what { padding: 32px 0 24px; }
.en-about-what > h2 { font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 28px; }
.en-about-grid { gap: 24px; }
.en-about-card {
  display: block; border: 1px solid #ececec; border-radius: 12px; padding: 24px 22px;
  background: #ffffff; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.en-about-card:hover { border-color: #d1d5db; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.07); }
.en-about-ic {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 10px; background: #fdf9ec; border: 1px solid #f1e5c4; color: #b45309;
}
.en-about-card h3 { margin-top: 16px; font-size: 17px; font-weight: 700; color: #111827 !important; }
.en-about-card p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: #4b5563; }

/* ── Magazine subscription ───────────────────────────────── */
.en-sub-dark {
  background: #0a0a0a; color: #ffffff;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 120px);
}
.en-gold { color: #d4a437; }
.en-kicker-gold {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #d4a437;
}

/* Hero */
.en-sub-hero-band { padding: 56px 0 48px; }
.en-sub-hero { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 56px; align-items: center; }
.en-sub-hero-copy h1 {
  font-family: Georgia, 'Times New Roman', serif; font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 400; line-height: 1.15; color: #ffffff; letter-spacing: -0.5px;
}
.en-sub-lede { margin-top: 22px; font-size: clamp(17px, 2vw, 21px); font-weight: 500; color: #f3f4f6; }
.en-sub-body { margin-top: 18px; font-size: 15px; line-height: 1.8; color: #b9bcc2; max-width: 620px; }
.en-btn-crimson {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px;
  background: #8f1414; border: 1px solid #a81a1a; color: #ffffff !important;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 30px; border-radius: 3px;
  transition: background .15s ease, transform .15s ease;
}
.en-btn-crimson:hover { background: #a81a1a; color: #ffffff !important; transform: translateY(-1px); }

/* Fanned covers */
.en-cover-fan { position: relative; height: 430px; }
.en-cover-fan img {
  position: absolute; display: block; border-radius: 4px; background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.08);
}
.en-cover-fan .en-fan-1 { width: 68%; left: 16%; top: 0; z-index: 3; }
.en-cover-fan .en-fan-2 { width: 56%; left: 0; top: 16%; z-index: 2; transform: rotate(-7deg); opacity: .92; }
.en-cover-fan .en-fan-3 { width: 46%; right: 0; top: 34%; z-index: 4; transform: rotate(6deg); }

/* Stats strip */
.en-sub-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
  margin-top: 52px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,0.12);
}
.en-stat strong {
  display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 30px;
  font-weight: 400; color: #d4a437; line-height: 1;
}
.en-stat strong sup { font-size: 15px; }
.en-stat span { display: block; margin-top: 8px; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: #9ca3af; }

/* Light sections */
.en-sub-section { padding-top: 64px; }
.en-sub-h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(23px, 3vw, 30px); font-weight: 700; color: #111827; }
.en-sub-sub { margin-top: 8px; font-size: 14.5px; color: #6b7280; }
.en-cover-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.en-cover-chips span {
  display: inline-block; border: 1px solid #d9cfc1; background: #fdf9ec; padding: 10px 17px;
  font-size: 11.5px; font-weight: 650; letter-spacing: 1px; color: #111827; text-transform: uppercase;
  border-radius: 3px;
}
.en-cover-chips .en-chip-muted { background: #ffffff; color: #9ca3af; border-style: dashed; }

/* Highlight block */
.en-highlight {
  display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 48px; align-items: center;
  margin-top: 28px; background: #fdf9ec; border: 1px solid #f1e5c4; border-radius: 14px; padding: 38px;
}
.en-highlight-cover img { display: block; width: 100%; height: auto; border-radius: 6px; box-shadow: 0 18px 44px rgba(0,0,0,0.22); }
.en-highlight h2 { margin-top: 14px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: #0a0a0a; }
.en-highlight p { margin-top: 14px; font-size: 15px; line-height: 1.75; color: #4b5563; }
.en-tick-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.en-tick-list li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.6; color: #374151; }
.en-tick-list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 15px; border-radius: 50%;
  background: #16a34a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3L15 6.8'/%3E%3C/svg%3E") center/10px no-repeat;
}
.en-highlight .en-btn-crimson { margin-top: 26px; }

/* Access cards */
.en-access-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 26px; }
.en-access-card {
  display: flex; flex-direction: column; border: 1px solid #ececec; border-radius: 14px;
  background: #ffffff; padding: 30px 28px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.en-access-card:hover { border-color: #d1d5db; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.07); }
.en-access-ic {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 12px; background: #fdf9ec; border: 1px solid #f1e5c4; color: #b45309;
}
.en-access-card h3 { margin-top: 16px; font-size: 20px; font-weight: 700; color: #111827; }
.en-access-card .en-tick-list { flex: 1; }
.en-access-card .en-mag-btn { margin-top: 24px; align-self: flex-start; }

/* Plans band */
.en-plans-band { padding: 64px 0 72px; margin-top: 64px; scroll-margin-top: 90px; }
.en-plans-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.en-plans-head h2 {
  margin-top: 12px; font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3.2vw, 34px); font-weight: 400; color: #ffffff;
}
.en-plans-head p { margin-top: 10px; font-size: 14.5px; line-height: 1.7; color: #9ca3af; max-width: 560px; }

.en-plan-toggle {
  display: inline-flex; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 5px; gap: 4px;
}
.en-plan-toggle button {
  border: 0; background: transparent; cursor: pointer; font: inherit;
  font-size: 13px; font-weight: 650; letter-spacing: 0.6px; color: #d1d5db;
  padding: 10px 26px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.en-plan-toggle button.is-active { background: #ffffff; color: #0a0a0a; }

.en-plan-grid {
  display: none; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: 40px;
}
.en-plan-grid.is-active { display: grid; }
.en-plan-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #141414; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 30px 26px 26px; transition: transform .15s ease, border-color .15s ease;
}
.en-plan-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, #e11d74, #8b5cf6);
}
.en-plan-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.en-plan-card.is-best { border-color: rgba(212,164,55,0.55); background: #181410; }
.en-plan-ribbon {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: #7c3aed; color: #ffffff; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; padding: 4px 26px;
  transform: rotate(-45deg) translate(-28px, -6px); transform-origin: top left; width: 150px; text-align: center;
}
.en-plan-term { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: #9ca3af; }
.en-plan-price {
  margin-top: 14px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 400; color: #ffffff; line-height: 1.05;
}
.en-plan-price .en-cur { font-size: 0.62em; margin-right: 3px; color: #d4a437; }
.en-plan-price s { margin-left: 9px; font-size: 0.46em; font-weight: 400; color: #6b7280; }
.en-plan-issues {
  display: flex; align-items: center; gap: 9px; margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: #d1d5db;
}
.en-plan-issues svg { color: #e11d74; flex: none; }
.en-plan-btn {
  display: block; margin-top: 24px; text-align: center;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; padding: 13px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: #ffffff !important; background: transparent; transition: background .15s ease, border-color .15s ease;
}
.en-plan-btn:hover { background: #ffffff; border-color: #ffffff; color: #0a0a0a !important; }
.en-plans-foot { margin-top: 44px; text-align: center; }
.en-plans-foot .en-btn-crimson { margin-top: 0; }

.en-table-wrap { overflow-x: auto; margin-top: 24px; -webkit-overflow-scrolling: touch; }
.en-sub-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #ffffff; }
.en-sub-table th, .en-sub-table td {
  padding: 13px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid #ececec;
}
.en-sub-table thead th {
  background: #0a0a0a; color: #ffffff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; border-bottom: 0;
}
.en-sub-table tbody tr:nth-child(even) { background: #fdfcf8; }
.en-sub-table td:first-child { font-weight: 650; color: #111827; }
.en-sub-table tr.en-total td { font-weight: 700; color: #111827; background: #fdf9ec; border-top: 2px solid #f1e5c4; }

.en-sub-help { display: flex; flex-direction: column; gap: 12px; }
.en-sub-help a {
  display: inline-flex; align-items: center; gap: 10px; color: #ffffff !important;
  font-size: 15px; font-weight: 600;
}
.en-sub-help a:hover { text-decoration: underline; }

/* ── Contact page ────────────────────────────────────────── */
.en-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; padding: 32px 0 80px; }
.en-contact-form h2 { font-size: 22px; font-weight: 700; color: #111827; }
.en-contact-note { margin-top: 10px; font-size: 14.5px; line-height: 1.65; color: #4b5563; max-width: 620px; }
.en-form-frame { margin-top: 20px; border: 1px solid #ececec; border-radius: 10px; overflow: hidden; background: #fff; }
.en-form-frame iframe { display: block; width: 100%; height: 1080px; border: 0; }
.en-contact-side { display: flex; flex-direction: column; gap: 20px; }
.en-contact-card { background: #fdf9ec; border: 1px solid #f1e5c4; border-radius: 10px; padding: 20px 22px; }
.en-contact-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #6b7280; margin-bottom: 12px; }
.en-contact-card p { margin: 0; font-size: 14px; line-height: 1.7; color: #374151; }
.en-contact-card strong { color: #111827; }
.en-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.en-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.en-contact-list a { color: #111827 !important; }
.en-contact-list a:hover { color: #2563eb !important; }
.en-ci { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; flex: none; border: 1px solid #ddd2c4; border-radius: 6px; background: #fff; color: #374151; }
.en-contact-social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.en-contact-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border: 1px solid #ddd2c4; border-radius: 6px; background: #fff; color: #111827 !important;
}
.en-contact-social a:hover { border-color: #111827; }
.en-contact-cta p { margin-bottom: 16px; }

/* ── Forms (advertise / enquiry) ─────────────────────────── */
.en-adv-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; padding: 32px 0 80px; }
.en-adv-form h2 { font-size: 22px; font-weight: 700; color: #111827; }
.en-adv-side { display: flex; flex-direction: column; gap: 20px; }
.en-adv-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.en-adv-list li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.6; color: #374151; }
.en-adv-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #16a34a; font-weight: 700; }

.en-form { margin-top: 24px; }
.en-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.en-field { display: flex; flex-direction: column; }
.en-field-full { margin-top: 18px; }
.en-field label { font-size: 12.5px; font-weight: 650; color: #374151; margin-bottom: 7px; }
.en-field label span { color: #dc2626; }
.en-field input[type="text"], .en-field input[type="email"], .en-field select, .en-field textarea {
  width: 100%; padding: 11px 14px; font: inherit; font-size: 14.5px; color: #111827;
  background: #ffffff; border: 1px solid #d1d5db; border-radius: 6px; height: auto;
}
.en-field textarea { resize: vertical; min-height: 110px; }
.en-field input:focus, .en-field select:focus, .en-field textarea:focus {
  outline: none; border-color: #111827; box-shadow: 0 0 0 3px rgba(17,24,39,0.08);
}
.en-field .en-invalid { border-color: #dc2626; }
.en-err { margin-top: 6px; font-size: 12px; color: #dc2626; }
.en-checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.en-check { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #374151; cursor: pointer; margin: 0; }
.en-check input { width: 16px; height: 16px; margin: 0; accent-color: #111827; }
.en-form-submit { margin-top: 24px; border: 0; cursor: pointer; font-family: inherit; }
.en-form-submit[disabled] { opacity: .6; cursor: default; }
.en-form-msg { margin-top: 16px; font-size: 14px; }
.en-form-msg.showsdata_success { color: #15803d; }
.en-form-msg.showsdata_error { color: #dc2626; }

/* ── Archive / search ────────────────────────────────────── */
.en-archive-head { padding: 48px 0 8px; }
.en-archive-head h1 { font-size: clamp(26px, 5vw, 38px); font-weight: 700; letter-spacing: -0.5px; color: #111827; }
.en-crumbs { margin-top: 12px; font-size: 12.5px; color: #6b7280; }
.en-crumbs a { color: #2563eb !important; }
.en-archive-grid { padding: 40px 0 40px; gap: 34px 28px; }
.en-pagination { padding: 0 0 72px; }
.en-pagination .wp-pagenavi, .en-pagination nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.en-pagination .wp-pagenavi a, .en-pagination .wp-pagenavi span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px;
  padding: 0 12px; border: 1px solid #d1d5db !important; border-radius: 4px; font-size: 13.5px; color: #111827;
  background: #fff; margin: 0 !important;
}
.en-pagination .wp-pagenavi span.current { background: #111111; color: #ffffff; border-color: #111111 !important; }

.en-404 { text-align: center; padding: 96px 32px 120px; }
.en-404 .en-code { font-family: Georgia, serif; font-size: 96px; color: #d1d5db; line-height: 1; }
.en-404 h1 { margin-top: 16px; font-size: 28px; color: #111827; }
.en-404 p { margin-top: 12px; color: #4b5563; }
.en-404 form { margin-top: 28px; display: inline-flex; gap: 10px; }
.en-404 input[type="text"] { padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px; min-width: 260px; height: auto; }
.en-404 button { padding: 10px 18px; border: 0; border-radius: 6px; background: #111111; color: #fff; font-weight: 600; cursor: pointer; }

/* ── Footer ──────────────────────────────────────────────── */
.en-footer { background: #fbf2e9; margin-top: 40px; }
.en-footer .en-ftr-wrap { max-width: 1216px; margin: 0 auto; padding: 72px 32px 48px; }
.en-ftr-kicker { display: flex; align-items: center; gap: 14px; }
.en-ftr-kicker .en-kline { width: 30px; height: 1px; background: #6b7280; }
.en-ftr-kicker span { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; color: #4b5563; text-transform: uppercase; }
.en-ftr-cta { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; margin-top: 18px; }
.en-ftr-cta h2 {
  font-family: Georgia, 'Times New Roman', serif; font-size: clamp(32px, 6vw, 54px);
  font-weight: 800; letter-spacing: -1px; line-height: 1.1; color: #0a0a0a;
}
.en-ftr-cta .en-cta-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; flex: none;
  font-size: 15px; font-weight: 600; color: #0a0a0a !important;
  border-bottom: 1.5px solid #0a0a0a; padding-bottom: 5px;
}
.en-ftr-sub { margin-top: 26px; max-width: 560px; font-size: 16px; line-height: 1.65; color: #4b5563; }
.en-ftr-rule { height: 1px; background: rgba(0,0,0,0.09); margin: 48px 0; }
.en-ftr-brand { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.en-ftr-brand img { max-height: 52px; width: auto; }
.en-ftr-brand .en-brand-tag { margin-top: 14px; font-size: 13px; color: #374151; }
.en-ftr-social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.en-ftr-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border: 1px solid #ddd2c4; border-radius: 6px; color: #111827 !important; font-size: 15px;
  background: transparent;
}
.en-ftr-social a:hover { background: #ffffff; }
.en-ftr-topics h3 { font-size: 16.5px; font-weight: 700; color: #111827; }
.en-topic-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.en-topic-chips a {
  display: inline-block; border: 1px solid #d9cfc1; background: #ffffff; padding: 9px 15px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; color: #111827 !important; text-transform: uppercase;
}
.en-topic-chips a:hover { border-color: #111827; }
.en-ftr-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.en-ftr-col .en-col-head { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #6b7280; text-transform: uppercase; }
.en-ftr-col ul { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.en-ftr-col li { margin: 0; border: 0 !important; }
.en-ftr-col a { font-size: 13px; color: #374151 !important; }
.en-ftr-col a:hover { color: #2563eb !important; }
.en-ftr-offices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.en-ftr-offices .en-col-head { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #6b7280; text-transform: uppercase; }
.en-ftr-offices p { margin-top: 16px !important; font-size: 13px; line-height: 1.7; color: #4b5563; text-align: left !important; }
.en-ftr-offices a { color: #111827 !important; }
.en-ftr-offices a:hover { color: #2563eb !important; }
.en-ftr-legal { border-top: 1px solid rgba(0,0,0,0.09); padding: 20px 32px; text-align: center; font-size: 12.5px; color: #6b7280; }
.en-ftr-legal a { color: #111827 !important; }

/* ── Welcome popup ───────────────────────────────────────── */
.en-popup {
  position: fixed; inset: 0; z-index: 200000;
  display: none; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, 0.72); padding: 20px;
}
.en-popup.show { display: flex; animation: en-popup-in .25s ease; }
@keyframes en-popup-in { from { opacity: 0; } to { opacity: 1; } }
.en-popup-box {
  position: relative; width: min(92vw, 560px);
  background: #ffffff; border-radius: 12px; overflow: visible;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.en-popup-close {
  position: absolute; top: -14px; right: -14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  background: #ffffff; color: #111827; font-size: 21px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.en-popup-close:hover { background: #111827; color: #ffffff; }
/* The frame simply wraps the active slide: img at 100% width, natural height.
   No fixed ratio, no JS measurement — a creative can never be cropped or
   letterboxed. Slides crossfade; height follows each image exactly. */
.en-popup-viewport {
  overflow: hidden; border-radius: 12px 12px 0 0; background: #0d0b2e;
}
.en-popup-track { position: relative; }
.en-popup-slide { display: none; }
.en-popup-slide.is-on { display: block; animation: en-popup-fade .5s ease; }
.en-popup-slide img { width: 100%; height: auto; display: block; }
@keyframes en-popup-fade { from { opacity: 0; } to { opacity: 1; } }
.en-popup-dots {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 0 14px; background: #ffffff; border-radius: 0 0 12px 12px;
}
.en-popup-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: #d1d5db; transition: background .15s ease, width .15s ease;
}
.en-popup-dots button.is-on { background: #111827; width: 22px; border-radius: 5px; }
@media (max-width: 640px) {
  .en-popup { padding: 14px; }
  .en-popup-box { width: min(94vw, 420px); }
  .en-popup-close { top: -10px; right: -10px; width: 30px; height: 30px; font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .en-popup-track { transition: none; }
  .en-popup.show { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .en-nav { display: none; }
}
@media (max-width: 1024px) {
  .en-home-main { grid-template-columns: 1fr; }
  .en-side { border-left: 0; padding-left: 0; align-self: auto; }
  .en-side-banner { position: static; }
  .en-cols4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .en-featured, .en-tech-grid, .en-disc-grid, .en-article-grid, .en-next-grid, .en-tv-grid { grid-template-columns: 1fr; }
  .en-tv-main { padding-right: 0; }
  .en-tv-rail { border-left: 0; padding-left: 0; margin-top: 28px; }
  .en-aside { align-self: auto; }
  .en-article-grid .en-aside > :last-child { position: static; }
  .en-next-banner { position: static; }
  .en-disc-grid .en-disc-head { align-self: auto; }
  .en-disc-banner { position: static; max-width: 480px; }
  .en-band .en-cols3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .en-mag-hero { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; padding: 32px; }
  .en-mag-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .en-webinar-grid.en-cols3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .en-contact-grid, .en-adv-grid { grid-template-columns: 1fr; gap: 32px; }
  .en-about-hero { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .en-sub-hero { grid-template-columns: 1fr; gap: 40px; }
  .en-cover-fan { height: 360px; max-width: 460px; margin: 0 auto; }
  .en-highlight { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; padding: 30px; }
  .en-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .en-about-facts { flex-direction: row; flex-wrap: wrap; }
  .en-fact { flex: 1 1 180px; }
}
@media (max-width: 768px) {
  .en-top3.en-cols3, .en-related .en-cols3, .en-archive-grid.en-cols3, .en-next-cards.en-cols3 { grid-template-columns: 1fr; }
  .en-band .en-cols3 { grid-template-columns: 1fr; }
  .en-mag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .en-wrap, .en-wrapw, .en-footer .en-ftr-wrap, .en-article-head { padding-left: 16px; padding-right: 16px; }
  .en-header { padding: 12px 16px; gap: 12px; }
  .en-hdr-left { gap: 14px; }
  .en-hdr-right { gap: 12px; }
  .en-subscribe { padding: 10px 14px; }
  .en-searchbar { padding: 12px 16px; }
  .en-cols2, .en-cols3, .en-cols4 { grid-template-columns: 1fr; }
  .en-body { font-size: 18px; }
  .en-body > p:first-child::first-letter { font-size: 64px; }
  .en-disc-item { grid-template-columns: 40px minmax(0, 1fr); }
  .en-disc-item .en-thumb { display: none; }
  .en-disc-item .en-rank { font-size: 34px; }
  .en-ftr-cta, .en-ftr-brand { flex-direction: column; align-items: flex-start; gap: 24px; }
  .en-ftr-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .en-ftr-offices { grid-template-columns: 1fr; }
  .en-mag-hero { grid-template-columns: 1fr; gap: 28px; padding: 24px; text-align: center; }
  .en-mag-hero-cover { max-width: 240px; margin: 0 auto; }
  .en-mag-hero-body p { margin-left: auto; margin-right: auto; }
  .en-mag-hero-meta, .en-mag-hero-cta { justify-content: center; }
  .en-mag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .en-mag-cta { padding: 32px 24px; }
  .en-webinar-grid.en-cols3 { grid-template-columns: 1fr; }
  .en-video-grid { grid-template-columns: 1fr; }
  .en-sub-hero-band { padding: 36px 0 32px; }
  .en-sub-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; margin-top: 36px; }
  .en-cover-fan { height: 300px; max-width: 340px; }
  .en-highlight { grid-template-columns: 1fr; gap: 26px; padding: 24px; text-align: center; }
  .en-highlight-cover { max-width: 220px; margin: 0 auto; }
  .en-highlight .en-tick-list li { text-align: left; }
  .en-access-grid { grid-template-columns: 1fr; }
  .en-plans-band { padding: 44px 0 52px; margin-top: 44px; }
  .en-plan-grid { grid-template-columns: 1fr; gap: 18px; }
  .en-plans-head { align-items: flex-start; }
  .en-btn-crimson { padding: 14px 22px; font-size: 12px; }
  .en-field-grid { grid-template-columns: 1fr; }
  .en-form-frame iframe { height: 1200px; }
  .en-about-hero { padding: 24px; }
  .en-about-facts { flex-direction: column; }
  .en-cover-fan { height: 250px; max-width: 280px; }
  .en-sub-hero-copy h1 { font-size: 28px; }
  .en-plan-price { font-size: 30px; }
}
