/*
Theme Name: Rankify LearnTPRM TechWire
Theme URI: https://learntprm.com/blog
Author: ChatGPT for LearnTPRM
Author URI: https://learntprm.com
Description: A magazine-style LearnTPRM blog theme inspired by modern tech news layouts, built for fast publishing, strong readability, and clean category-led storytelling.
Version: 1.3.4
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rankify-learntrpm
Tags: blog, education, custom-logo, featured-images, threaded-comments, translation-ready, one-column, two-columns, right-sidebar, block-styles, wide-blocks
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

:root{
  --lt-bg:#eef9f4;
  --lt-bg-2:#f4efff;
  --lt-surface:#ffffff;
  --lt-surface-soft:#f8f8ff;
  --lt-surface-accent:#eef4ff;
  --lt-text:#111827;
  --lt-muted:#606779;
  --lt-accent:#6f5cff;
  --lt-accent-2:#8d78ff;
  --lt-accent-3:#d7d0ff;
  --lt-border:rgba(17,24,39,.09);
  --lt-border-strong:rgba(111,92,255,.20);
  --lt-shadow:0 18px 46px rgba(53,42,118,.10);
  --lt-shadow-soft:0 10px 28px rgba(53,42,118,.08);
  --lt-radius:24px;
  --lt-radius-sm:18px;
  --lt-radius-xs:12px;
  --lt-max:1236px;
  --lt-content:760px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(141,120,255,.16), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(111,92,255,.10), transparent 18%),
    linear-gradient(135deg, var(--lt-bg) 0%, #f5fbf7 30%, #f6f1ff 72%, #fff 100%);
  color:var(--lt-text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.72;
  font-size:16px;
  text-rendering:optimizeLegibility;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--lt-accent)}
img{max-width:100%;height:auto;display:block}
p{margin:0 0 1em}

.screen-reader-text{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.screen-reader-text:focus{
  left:20px;top:20px;width:auto;height:auto;
  background:#fff;color:#000;padding:10px;z-index:999;border-radius:8px;
}

.lt-wrap{width:min(var(--lt-max),calc(100% - 32px));margin:0 auto}
.skip-link{position:absolute;left:-9999px}
.skip-link:focus{
  left:20px;top:20px;background:var(--lt-accent);color:#fff;
  padding:10px 14px;z-index:9999;border-radius:8px;font-weight:800;
}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(111,92,255,.10);
}

.header-inner{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:20px;
  min-height:84px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;letter-spacing:-.04em;
  white-space:nowrap;
}

.brand-mark{
  width:58px;height:58px;border-radius:18px;
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  display:grid;place-items:center;color:#fff;font-weight:950;
  box-shadow:0 12px 26px rgba(111,92,255,.22);
  font-size:20px;
}

.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-text strong{
  display:inline-flex;
  align-items:baseline;
  gap:2px;
  font-size:23px;
  line-height:1;
  letter-spacing:-.06em;
}
.brand-text strong span{font-weight:900}
.brand-text strong sup{
  top:-.55em;
  font-size:.62em;
  font-weight:800;
  letter-spacing:0;
}
.brand-text small{
  display:block;
  margin-top:4px;
  font-size:12px;
  line-height:1.1;
  color:var(--lt-accent);
  font-weight:700;
}

.main-nav ul{
  display:flex;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
  justify-content:center;
}

.main-nav a{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 1 118px;
  min-width:0;
  padding:8px 8px;
  border-radius:999px;
  color:var(--lt-muted);
  font-size:15px;
  font-weight:700;
  transition:background .18s ease,color .18s ease,transform .18s ease;
  line-height:1.1;
  text-align:center;
  max-width:118px;
  white-space:normal;
}

.menu-item-has-children > a::after{
  content:"⌄";
  display:inline-block;
  margin-left:6px;
  font-size:11px;
  line-height:1;
  transform:translateY(-1px);
  color:currentColor;
}

.main-nav a:hover,.main-nav .current-menu-item>a{
  background:rgba(111,92,255,.10);color:var(--lt-accent);
}

.header-actions{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:max-content;
  align-items:center;
  gap:8px;
  justify-self:end;
  min-width:max-content;
  width:max-content;
}

.header-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  font-size:12px;
  white-space:nowrap;
}

.header-action--ghost{
  background:#fff;color:var(--lt-accent);
  border-color:rgba(111,92,255,.14);
  box-shadow:0 8px 20px rgba(53,42,118,.06);
}

.header-action--icon{
  width:40px;height:40px;padding:0;
  background:rgba(255,255,255,.05);
  color:#fff;
  border-color:rgba(255,255,255,.08);
  font-size:15px;
}

.header-action--accent{
  min-width:112px;
}

.front-hero{
  position:relative;
  padding:28px 0 6px;
}

.front-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(320px,.65fr);
  gap:22px;
  align-items:start;
}

.hero-story{
  position:relative;
  min-height:540px;
  border-radius:var(--lt-radius);
  overflow:hidden;
  box-shadow:var(--lt-shadow);
  background:linear-gradient(180deg,#f1f0ff 0%, #ffffff 100%);
}

.hero-story__media{
  position:absolute;inset:0;
}

.hero-story__media img{
  width:100%;height:100%;object-fit:cover;
}

.hero-story__overlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:36px;
  background:linear-gradient(180deg, transparent 0%, rgba(14,18,37,.42) 24%, rgba(14,18,37,.78) 100%);
  color:#fff;
}

.hero-story__kicker,
.rail-story__kicker,
.story-card__kicker,
.mini-story__kicker{
  display:inline-flex;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
  margin-bottom:10px;
}

.hero-story__title{
  margin:0 0 10px;
  font-size:clamp(30px,4.4vw,58px);
  line-height:1.02;
  letter-spacing:-.08em;
  max-width:12ch;
}

.hero-story__title a{color:#fff}

.hero-story__meta{
  display:flex;gap:12px;flex-wrap:wrap;
  color:rgba(255,255,255,.82);
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}

.hero-story__overlay p{
  max-width:700px;
  color:rgba(255,255,255,.84);
  font-size:17px;
  margin:0;
}

.hero-rail{
  display:grid;
  gap:16px;
}

.rail-story{
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:14px;
  padding:12px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius-sm);
  box-shadow:var(--lt-shadow-soft);
}

.rail-story__media{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:1 / 1;
}

.rail-story__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.rail-story__title{
  margin:0;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.04em;
}

.section-shell{
  padding:44px 0 0;
}

.section-shell--newsletter{
  padding:30px 0 0;
}

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

.section-label{
  display:inline-flex;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
  margin-bottom:8px;
}

.section-heading h2,
.article-header h1{
  margin:0;
  letter-spacing:-.06em;
}

.section-heading h2{
  font-size:clamp(24px,2.4vw,34px);
}

.section-heading a{
  color:var(--lt-accent);
  font-weight:900;
  white-space:nowrap;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.card-grid--latest{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.card-grid--featured{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.story-card{
  background:rgba(255,255,255,.95);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius);
  overflow:hidden;
  box-shadow:var(--lt-shadow-soft);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.story-card:hover{
  transform:translateY(-4px);
  border-color:var(--lt-border-strong);
  box-shadow:var(--lt-shadow);
}

.story-card__media{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:linear-gradient(135deg,#f4f1ff,#eff7f1);
}

.story-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-card__body{
  padding:18px 18px 20px;
}

.story-card__title{
  margin:0 0 10px;
  font-size:clamp(19px,1.8vw,24px);
  line-height:1.12;
  letter-spacing:-.05em;
}

.story-card__meta{
  display:flex;gap:10px;flex-wrap:wrap;
  color:var(--lt-muted);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.story-card__excerpt{
  margin:0;
  color:var(--lt-muted);
}

.category-stack{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(290px,.7fr);
  gap:20px;
  align-items:start;
}

.category-stack__main{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.category-stack__side{
  display:grid;
  gap:16px;
}

.mini-story{
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:12px;
  border:1px solid var(--lt-border);
  border-radius:20px;
  background:rgba(255,255,255,.88);
  box-shadow:var(--lt-shadow-soft);
}

.mini-story__media{
  aspect-ratio:1 / 1;
  border-radius:16px;
  overflow:hidden;
}

.mini-story__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mini-story__body h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.04em;
}

.mini-story__body p{
  margin:0;
  color:var(--lt-muted);
  font-size:14px;
}

.newsletter-panel{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:28px 30px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.55), transparent 32%),
    linear-gradient(135deg, rgba(111,92,255,.14) 0%, rgba(141,120,255,.08) 42%, rgba(255,255,255,.94) 100%);
  border:1px solid rgba(111,92,255,.16);
  box-shadow:var(--lt-shadow);
}

.newsletter-panel h2{
  margin:0 0 10px;
  font-size:clamp(24px,2.4vw,34px);
  letter-spacing:-.06em;
}

.newsletter-panel p{
  margin:0;
  color:var(--lt-muted);
  max-width:52ch;
}

.newsletter-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.newsletter-form input,
.search-form .search-field,
.comment-respond input,
.comment-respond textarea{
  min-width:0;
  width:100%;
  border:1px solid var(--lt-border);
  background:#fff;
  color:var(--lt-text);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.newsletter-form input{
  min-width:280px;
}

.newsletter-form button,
.search-form .search-submit,
.comment-respond .submit{
  border:0;
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#fff;
  font-weight:900;
  border-radius:14px;
  padding:13px 18px;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(111,92,255,.22);
}

.main{
  padding:42px 0 54px;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:28px;
  align-items:start;
}

.content-main{min-width:0}

.sidebar{
  position:sticky;
  top:88px;
  display:grid;
  gap:18px;
}

.widget{
  background:rgba(255,255,255,.93);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius);
  padding:20px;
  box-shadow:var(--lt-shadow-soft);
}

.widget-kicker{
  display:inline-flex;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
  margin-bottom:8px;
}

.widget-title{
  margin:0 0 12px;
  font-size:18px;
  letter-spacing:-.04em;
}

.widget p{
  color:var(--lt-muted);
}

.widget--newsletter-top{
  position:relative;
  overflow:hidden;
  padding:22px;
  border-color:rgba(240,193,93,.18);
  background:
    radial-gradient(circle at 100% 0, rgba(240,193,93,.10), transparent 34%),
    rgba(15,19,30,.96);
}

.widget--newsletter-top .widget-title{
  font-size:22px;
  line-height:1.12;
}

.widget--newsletter-top p{
  font-size:15px;
  line-height:1.55;
}

.widget--newsletter-top .newsletter-form{
  display:grid;
  gap:12px;
}

.widget--newsletter-top .newsletter-form input,
.widget--newsletter-top .newsletter-form button{
  width:100%;
  min-width:0;
  min-height:52px;
  border-radius:16px;
}

.topic-list{
  list-style:none;
  margin:0;
  padding:0;
}

.topic-list li + li{margin-top:8px}

.topic-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 12px;
  border-radius:12px;
  background:var(--lt-surface-soft);
  border:1px solid rgba(111,92,255,.08);
  font-weight:800;
}

.article{
  background:rgba(255,255,255,.96);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius);
  padding:clamp(24px,4vw,42px);
  box-shadow:var(--lt-shadow-soft);
}

.article--single,
.article--page,
.article--intro{
  margin-bottom:20px;
}

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

.article-header h1{
  font-size:clamp(34px,4.8vw,62px);
  line-height:1;
}

.article-dek,
.article-meta{
  color:var(--lt-muted);
  font-weight:700;
}

.article-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:13px;
  margin-top:14px;
}

.article-hero{
  margin-bottom:26px;
  border-radius:26px;
  overflow:hidden;
}

.article-content{
  font-size:17px;
  max-width:var(--lt-content);
}

.article-content h2,
.article-content h3{
  line-height:1.15;
  letter-spacing:-.04em;
  margin-top:1.7em;
}

.article-content p,
.article-content li{
  color:#2d3340;
}

.article-content a{
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-color:rgba(111,92,255,.40);
}

.article-content blockquote{
  border-left:4px solid var(--lt-accent);
  padding-left:18px;
  color:var(--lt-muted);
  margin-left:0;
}

.article-content code{
  background:var(--lt-surface-soft);
  border:1px solid var(--lt-border);
  padding:2px 6px;
  border-radius:6px;
}

.article-content pre{
  overflow:auto;
  background:var(--lt-surface-soft);
  border:1px solid var(--lt-border);
  padding:18px;
  border-radius:16px;
}

.article-content table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--lt-border);
  margin:24px 0;
}

.article-content th,
.article-content td{
  padding:12px 14px;
  border-bottom:1px solid var(--lt-border);
  vertical-align:top;
}

.article-content th{
  background:var(--lt-surface-soft);
  text-align:left;
}

.wp-block-image img{border-radius:20px}

.post-nav{
  display:flex;justify-content:space-between;gap:16px;margin-top:22px;
}

.post-nav a{
  display:block;
  background:rgba(255,255,255,.95);
  border:1px solid var(--lt-border);
  border-radius:16px;
  padding:14px 16px;
  color:var(--lt-accent);
  font-weight:900;
  flex:1;
}

.related-posts{margin-top:26px}

.pagination{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:30px;
  flex-wrap:wrap;
}

.pagination .page-numbers{
  padding:10px 14px;
  border:1px solid var(--lt-border);
  border-radius:12px;
  background:var(--lt-surface);
  font-weight:800;
}

.pagination .current{
  background:var(--lt-accent);
  color:#fff;
}

.comments-panel{
  margin-top:24px;
}

.comment-list{
  padding:0;
  list-style:none;
}

.comment-body{
  background:var(--lt-surface-soft);
  border:1px solid var(--lt-border);
  border-radius:16px;
  padding:16px;
  margin:14px 0;
}

.comment-respond input,
.comment-respond textarea{
  margin-top:8px;
}

.site-footer{
  margin-top:54px;
  border-top:1px solid rgba(111,92,255,.10);
  background:rgba(255,255,255,.72);
}

.footer-grid{
  padding:34px 0 42px;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:28px;
  align-items:start;
}

.footer-brand strong{
  display:block;
  font-size:22px;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.footer-brand p,
.footer-meta p{
  color:var(--lt-muted);
  margin:0 0 10px;
}

.footer-brand__note,
.footer-meta__copyright{
  font-size:14px;
}

.footer-links,
.footer-meta{
  display:grid;
  gap:10px;
}

.footer-links h3,
.footer-meta h3{
  margin:0 0 2px;
  font-size:16px;
  letter-spacing:-.03em;
}

.footer-links a,
.footer-meta a{
  color:var(--lt-muted);
  font-weight:700;
}

.footer-links a:hover,
.footer-meta a:hover{
  color:var(--lt-accent);
}

.search-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.search-form .search-submit{
  min-width:104px;
}

.article-content > *:first-child{margin-top:0}

.wp-caption,
.gallery-caption{
  color:var(--lt-muted);
}

@media (max-width:1120px){
  .front-hero-grid,
  .content-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .sidebar{
    position:static;
  }
}

@media (max-width:900px){
  .main-nav{display:none}
  .hero-story{min-height:460px}
  .card-grid,
  .card-grid--latest,
  .card-grid--featured{
    grid-template-columns:1fr;
  }
  .category-stack{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  .header-inner{
    min-height:72px;
    gap:14px;
  }

  .brand-text small{
    display:none;
  }

  .header-action--ghost{
    display:none;
  }

  .hero-story__overlay{
    padding:22px;
  }

  .hero-story__title{
    max-width:100%;
  }

  .rail-story,
  .mini-story{
    grid-template-columns:1fr;
  }

  .newsletter-panel{
    padding:22px;
  }

  .newsletter-form input{
    min-width:0;
    width:100%;
  }

.post-nav{
    flex-direction:column;
  }
}

.sharedaddy,
.sd-sharing,
.sd-social,
.jp-relatedposts,
.jp-relatedposts-posts,
.sharedaddy .sd-title,
.sharedaddy .jp-sharing-input{
  display:none !important;
}

@media (prefers-reduced-motion:reduce){
  *{
    scroll-behavior:auto !important;
    transition:none !important;
  }
}

:root{
  --lt-bg:#0a0d16;
  --lt-bg-2:#11172a;
  --lt-surface:#111827;
  --lt-surface-soft:#151c2e;
  --lt-surface-accent:#1c2440;
  --lt-text:#f4f7ff;
  --lt-muted:#a9b2c7;
  --lt-accent:#f0c15d;
  --lt-accent-2:#d9a43b;
  --lt-accent-3:rgba(240,193,93,.16);
  --lt-border:rgba(255,255,255,.08);
  --lt-border-strong:rgba(240,193,93,.26);
  --lt-shadow:0 22px 54px rgba(0,0,0,.44);
  --lt-shadow-soft:0 14px 32px rgba(0,0,0,.30);
}

body{
  background:
    radial-gradient(circle at top left, rgba(240,193,93,.10), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(240,193,93,.08), transparent 18%),
    linear-gradient(180deg, #080b12 0%, #0b1020 38%, #0b0f1a 100%);
  color:var(--lt-text);
}

body.lt-theme-light{
  --lt-bg:#eef9f4;
  --lt-bg-2:#f4efff;
  --lt-surface:#ffffff;
  --lt-surface-soft:#f8f8ff;
  --lt-surface-accent:#eef4ff;
  --lt-text:#111827;
  --lt-muted:#606779;
  --lt-accent:#6f5cff;
  --lt-accent-2:#8d78ff;
  --lt-accent-3:#d7d0ff;
  --lt-border:rgba(17,24,39,.09);
  --lt-border-strong:rgba(111,92,255,.20);
  --lt-shadow:0 18px 46px rgba(53,42,118,.10);
  --lt-shadow-soft:0 10px 28px rgba(53,42,118,.08);
  background:
    radial-gradient(circle at top left, rgba(141,120,255,.16), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(111,92,255,.10), transparent 18%),
    linear-gradient(135deg, var(--lt-bg) 0%, #f5fbf7 30%, #f6f1ff 72%, #fff 100%);
  color:var(--lt-text);
}

body.lt-theme-light .site-header{
  background:rgba(255,255,255,.86);
}

.site-header{
  background:rgba(9,13,22,.82);
  border-bottom:1px solid rgba(240,193,93,.10);
}

.brand{
  color:#fff;
}

.brand-mark{
  background:linear-gradient(135deg, #f0c15d, #e6ad34);
  color:#111827;
}

.brand-text small{
  display:block;
  color:var(--lt-muted);
}

.main-nav a{
  color:rgba(244,247,255,.78);
}

.main-nav a:hover,
.main-nav .current-menu-item>a{
  background:rgba(240,193,93,.14);
  color:var(--lt-accent);
}

.header-action--ghost{
  background:rgba(255,255,255,.04);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
}

.header-action--ghost:hover{
  border-color:rgba(240,193,93,.30);
  color:var(--lt-accent);
}

.header-action--accent{
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#121826;
  box-shadow:0 12px 24px rgba(240,193,93,.22);
}

.main{
  padding:34px 0 62px;
}

.main--blog{
  padding-top:26px;
}

.blog-hero{
  padding:22px 0 10px;
}

.blog-hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,560px);
  gap:34px;
  align-items:center;
}

.blog-hero__title{
  margin:8px 0 10px;
  font-size:clamp(42px,5.5vw,78px);
  line-height:.95;
  letter-spacing:-.09em;
}

.blog-hero__title span,
.eyebrow--gold{
  color:var(--lt-accent);
}

.eyebrow{
  display:inline-flex;
  margin-bottom:8px;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
}

.blog-hero__dek{
  margin:0;
  max-width:60ch;
  color:var(--lt-muted);
  font-size:18px;
}

.blog-hero__search .search-form{
  display:flex;
  gap:14px;
  flex-wrap:nowrap;
  justify-content:flex-end;
  align-items:center;
  width:100%;
}

.search-form--site .search-field,
.search-form--site .search-submit{
  height:64px;
}

.search-form--site .search-field{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  width:100%;
  min-width:0;
  border-radius:18px;
  padding:0 20px;
  font-size:18px;
  font-weight:600;
  letter-spacing:-.03em;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.search-form--site .search-field::placeholder{
  color:rgba(244,247,255,.45);
}

.search-form--site .search-submit{
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#121826;
  min-width:142px;
  padding:0 28px;
  font-size:17px;
  font-weight:900;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(240,193,93,.22);
  flex:0 0 auto;
}

.blog-hero__search{
  padding-top:10px;
}

.section-shell{
  padding:30px 0 0;
}

.section-shell--feed{
  padding-top:20px;
}

.post-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.story-card{
  background:rgba(15,19,30,.96);
  border:1px solid var(--lt-border);
  box-shadow:var(--lt-shadow-soft);
  color:#fff;
}

.story-card:hover{
  border-color:rgba(240,193,93,.26);
  box-shadow:var(--lt-shadow);
}

.story-card__media{
  aspect-ratio:16/11;
  background:linear-gradient(135deg, rgba(240,193,93,.10), rgba(255,255,255,.02));
}

.story-card__body{
  padding:18px 18px 22px;
}

.story-card__kicker{
  margin-bottom:10px;
}

.story-card__kicker a{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(240,193,93,.12);
  border:1px solid rgba(240,193,93,.16);
  color:var(--lt-accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.story-card__title{
  font-size:clamp(20px,2vw,26px);
  line-height:1.1;
}

.story-card__title a{
  color:#fff;
}

.story-card__meta{
  color:rgba(244,247,255,.62);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.story-card__excerpt{
  color:var(--lt-muted);
}

.pagination{
  gap:12px;
  margin-top:38px;
}

.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  min-height:56px;
  padding:0 18px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.16);
  color:#eef2ff;
  border-radius:16px;
  font-size:20px;
  font-weight:900;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.pagination a.page-numbers:hover{
  background:rgba(240,193,93,.10);
  border-color:rgba(240,193,93,.34);
  color:#fff;
}

.pagination .next,
.pagination .prev{
  min-width:102px;
}

.pagination .current{
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#121826;
  border-color:transparent;
  box-shadow:0 12px 26px rgba(240,193,93,.22);
}

.newsletter-panel{
  background:
    radial-gradient(circle at 10% 0, rgba(240,193,93,.10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.018) 100%);
  border:1px solid rgba(240,193,93,.16);
  color:#fff;
  display:grid;
  grid-template-columns:64px minmax(0,1fr) minmax(260px,360px);
  gap:18px;
  align-items:center;
  padding:20px 24px;
  border-radius:22px;
  max-width:1120px;
}

.newsletter-panel__art{
  aspect-ratio:1 / 1;
  border-radius:18px;
  background:linear-gradient(145deg, rgba(240,193,93,.30), rgba(111,92,255,.20));
  border:1px solid rgba(240,193,93,.18);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  font-size:13px;
  letter-spacing:.16em;
}

.newsletter-panel__copy h2{
  margin:2px 0 6px;
  font-size:clamp(22px,2.2vw,30px);
  letter-spacing:-.06em;
}

.newsletter-panel__copy p{
  max-width:50ch;
  font-size:16px;
  line-height:1.55;
  color:var(--lt-muted);
}

.newsletter-form--wide{
  justify-content:flex-end;
}

.newsletter-form--wide .search-field,
.newsletter-form--wide input{
  min-width:0;
}

.newsletter-form--wide input{
  flex:1 1 220px;
  min-height:54px;
  border-radius:16px;
  font-weight:700;
}

.newsletter-form--wide button{
  white-space:nowrap;
  min-height:54px;
  border-radius:16px;
  padding:0 22px;
}

.sidebar .widget,
.article,
.article--single,
.article--page,
.article--intro{
  background:rgba(15,19,30,.96);
  border-color:var(--lt-border);
  color:#fff;
}

.widget-title,
.article-header h1,
.section-heading h2{
  color:#fff;
}

.widget p,
.article-dek,
.article-meta,
.article-content p,
.article-content li,
.mini-story__body p,
.footer-brand p,
.footer-meta p,
.newsletter-panel p,
.newsletter-panel__copy p{
  color:var(--lt-muted);
}

.topic-list a{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:#fff;
}

.article-content p,
.article-content li{
  color:rgba(244,247,255,.82);
}

.article-content a{
  color:var(--lt-accent);
  text-decoration-color:rgba(240,193,93,.40);
}

.article-content blockquote{
  color:#d8deec;
  border-left-color:var(--lt-accent);
}

.article-content code,
.article-content pre,
.article-content table,
.comment-body{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:#fff;
}

.comment-body{
  box-shadow:none;
}

.post-nav a{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:var(--lt-accent);
}

.site-footer{
  background:rgba(7,10,18,.88);
  border-top-color:rgba(240,193,93,.10);
}

.footer-links a,
.footer-meta a{
  color:rgba(244,247,255,.72);
}

.footer-brand strong{
  color:#fff;
}

.front-hero,
.category-stack,
.section-shell--newsletter{
  display:block;
}

@media (max-width:1120px){
  .blog-hero__inner,
  .newsletter-panel{
    grid-template-columns:1fr;
  }

  .blog-hero__search .search-form{
    max-width:720px;
    justify-content:flex-start;
  }

  .post-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .post-grid{
    grid-template-columns:1fr;
  }

  .newsletter-panel{
    padding:22px;
  }
}

@media (max-width:680px){
  .header-inner{
    gap:14px;
  }

  .brand-mark{
    width:50px;
    height:50px;
    font-size:17px;
  }

  .brand-text strong{
    font-size:18px;
  }

  .brand-text small{
    display:none;
  }

  .header-actions{
    gap:8px;
  }

  .header-action{
    min-height:42px;
    padding:8px 14px;
    font-size:13px;
  }

  .header-action--icon{
    width:42px;
    height:42px;
  }

  .header-action--accent{
    min-width:112px;
  }

  .blog-hero__title{
    font-size:clamp(34px,12vw,54px);
  }

  .blog-hero__search .search-form{
    display:grid;
    gap:12px;
    max-width:none;
  }

  .search-form--site .search-field,
  .search-form--site .search-submit{
    width:100%;
    min-width:0;
    height:58px;
  }

  .search-form--site .search-field{
    font-size:17px;
    padding:0 18px;
  }

  .search-form--site .search-submit{
    min-width:0;
  }

  .newsletter-panel{
    gap:16px;
  }

  .newsletter-form--wide{
    flex-direction:column;
  }

  .newsletter-form--wide button,
  .newsletter-form--wide input{
    width:100%;
  }
}

body.lt-theme-light .site-header{
  background:rgba(255,255,255,.86);
  border-bottom-color:rgba(111,92,255,.10);
}

body.lt-theme-light .brand{
  color:var(--lt-text);
}

body.lt-theme-light .main-nav a{
  color:var(--lt-muted);
}

body.lt-theme-light .header-action--ghost{
  background:#fff;
  color:var(--lt-accent);
  border-color:rgba(111,92,255,.14);
}

body.lt-theme-light .header-action--accent{
  color:#fff;
}

body.lt-theme-light .blog-hero__search .search-field{
  background:#fff;
  border-color:var(--lt-border);
  color:var(--lt-text);
}

body.lt-theme-light .blog-hero__search .search-field::placeholder{
  color:var(--lt-muted);
}

body.lt-theme-light .search-form--site .search-submit{
  color:#121826;
}

body.lt-theme-light .story-card,
body.lt-theme-light .article,
body.lt-theme-light .widget,
body.lt-theme-light .newsletter-panel{
  background:rgba(255,255,255,.96);
  color:var(--lt-text);
}

body.lt-theme-light .story-card__title a,
body.lt-theme-light .widget-title,
body.lt-theme-light .article-header h1,
body.lt-theme-light .newsletter-panel__copy h2,
body.lt-theme-light .section-heading h2{
  color:var(--lt-text);
}

body.lt-theme-light .story-card__meta,
body.lt-theme-light .story-card__excerpt,
body.lt-theme-light .article-dek,
body.lt-theme-light .article-meta,
body.lt-theme-light .article-content p,
body.lt-theme-light .article-content li,
body.lt-theme-light .widget p,
body.lt-theme-light .newsletter-panel p,
body.lt-theme-light .footer-brand p,
body.lt-theme-light .footer-meta p{
  color:var(--lt-muted);
}

body.lt-theme-light .site-footer{
  background:rgba(255,255,255,.72);
  border-top-color:rgba(111,92,255,.10);
}







/* LearnTPRM premium editorial system */
:root {
  --lt-bg: #070b14;
  --lt-bg-elevated: #0b111d;
  --lt-surface: #0f1726;
  --lt-surface-soft: #121c2d;
  --lt-surface-accent: #172337;
  --lt-text: #f4f1e8;
  --lt-muted: #9aa5b7;
  --lt-accent: #d8ae3f;
  --lt-accent-2: #efca68;
  --lt-accent-3: #725b20;
  --lt-danger: #e06955;
  --lt-success: #58a982;
  --lt-border: rgba(213, 221, 235, .12);
  --lt-border-strong: rgba(216, 174, 63, .38);
  --lt-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  --lt-shadow-soft: 0 14px 34px rgba(0, 0, 0, .20);
  --lt-radius: 6px;
  --lt-radius-sm: 6px;
  --lt-radius-xs: 4px;
  --lt-max: 1260px;
  --lt-content: 760px;
}

html {
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  background: var(--lt-bg);
  color: var(--lt-text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body * {
  letter-spacing: 0 !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 360px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(216, 174, 63, .045), transparent);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

a,
button,
input,
select,
textarea,
summary {
  letter-spacing: 0;
}

a {
  color: inherit;
}

a:hover {
  color: var(--lt-accent-2);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--lt-accent);
  outline-offset: 3px;
}

.lt-wrap {
  width: min(var(--lt-max), calc(100% - 48px));
}

.skip-link:focus,
.screen-reader-text:focus {
  top: 78px;
  left: 18px;
  z-index: 1000;
  border-radius: 4px;
  background: var(--lt-accent);
  color: #11151d;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 64px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--lt-border);
  background: rgba(7, 11, 20, .90);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  width: 100%;
  max-width: 1540px;
  height: 64px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  min-width: 184px;
  margin: 0;
  align-items: center;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-gold {
  color: var(--lt-accent);
}

.brand-white {
  color: #f7f8fb;
}

.brand-text strong sup {
  position: relative;
  top: -.55em;
  margin-left: 1px;
  color: #aeb7c7;
  font-size: 7px;
  font-weight: 800;
}

.brand-dot {
  margin-left: 2px;
  color: #aeb7c7;
  font-size: 11px;
  font-weight: 700;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--lt-accent);
  font-family: Inter, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-list {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
}

.main-nav .nav-list > li {
  position: relative;
  flex: 0 0 auto;
}

.main-nav .nav-list > li > a,
.nav-dropdown > summary {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #d6dce8;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker,
.mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.main-nav .nav-list > li > a:hover,
.main-nav .nav-list > li > a.is-current,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.main-nav .nav-list > li > a.is-current {
  box-shadow: inset 0 -2px 0 var(--lt-accent);
}

.main-nav .nav-link--gold {
  color: var(--lt-accent) !important;
  font-weight: 700 !important;
}

.menu-caret {
  margin-left: 4px;
  color: #8994a7;
  font-size: 11px;
  line-height: 1;
}

.mega-menu,
.case-menu {
  position: absolute;
  top: calc(100% + 10px);
  z-index: 120;
  display: grid;
  overflow: auto;
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: #0c1320;
  box-shadow: var(--lt-shadow);
}

.mega-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  width: min(980px, calc(100vw - 40px));
  max-height: calc(100vh - 94px);
  padding: 22px;
  transform: translateX(-50%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.admin-bar .mega-menu {
  top: 104px;
}

.case-menu {
  left: 50%;
  width: 260px;
  padding: 7px;
  transform: translateX(-50%);
  gap: 2px;
}

.case-menu--wide {
  width: 300px;
}

.nav-dropdown--cases[open] > summary {
  padding: 0 12px;
  border-radius: 10px;
  background: #ddad31;
  color: #080c16;
}

.nav-dropdown--cases[open] > summary .menu-caret {
  color: #080c16;
}

.case-menu--studies {
  left: 0;
  width: 320px;
  padding: 12px;
  border-radius: 12px;
  background: #0e1320;
  transform: none;
}

.case-menu.case-menu--studies a {
  min-height: 36px;
  padding: 8px 12px;
  color: #ede9de;
  font-size: 14px;
  line-height: 20px;
}

.mega-title {
  display: block;
  margin: 0 0 7px;
  color: var(--lt-accent);
  font-size: 12px;
  font-weight: 800;
}

.mega-menu a,
.case-menu a {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 36px;
  padding: 8px 9px;
  border-radius: 4px;
  color: #d8deea;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.mega-menu a:hover,
.case-menu a:hover {
  background: var(--lt-surface-accent);
  color: #fff;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.header-action {
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 36px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #f3f5f8;
  box-shadow: none;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.header-action--ghost {
  border-color: transparent;
  background: transparent;
  color: #f3f5f8;
  box-shadow: none;
}

.header-action--ghost:hover,
.header-action--icon:hover {
  border-color: var(--lt-border);
  background: rgba(255, 255, 255, .055);
  color: #fff;
}

.header-action--icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: #f3f5f8;
  font-size: 17px;
  cursor: pointer;
}

.header-action--accent {
  min-height: 38px;
  margin-left: 2px;
  padding: 0 13px;
  background: linear-gradient(135deg, #efca68, #d1a334);
  color: #11151d;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(216, 174, 63, .16);
}

.header-action--accent:hover {
  color: #11151d;
  filter: brightness(1.05);
}

.mobile-nav {
  display: none;
}

/* Main publication */
.main {
  min-height: 70vh;
  padding: 112px 0 72px;
}

.main--blog {
  padding-top: 64px;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--lt-border);
  background: #0a101b;
}

.blog-hero::after {
  content: "LEARNTPRM";
  position: absolute;
  right: max(24px, calc((100vw - var(--lt-max)) / 2));
  bottom: -30px;
  color: rgba(255, 255, 255, .025);
  font-family: Montserrat, sans-serif;
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
  gap: 56px;
  align-items: end;
}

.eyebrow,
.section-label {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--lt-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-hero__title {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
}

.blog-hero__title span {
  color: var(--lt-accent);
}

.blog-hero__dek {
  max-width: 660px;
  margin: 18px 0 0;
  color: #b1bac9;
  font-size: 17px;
  line-height: 1.65;
}

.blog-hero__search {
  padding: 0;
}

.blog-hero__search .search-form,
.search-form {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
}

.search-form--site .search-field,
.search-form--site .search-submit,
.search-form .search-field,
.search-form .search-submit {
  height: 48px;
  min-height: 48px;
  border-radius: 4px;
}

.search-form--site .search-field,
.search-form .search-field {
  width: 100%;
  min-width: 0;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #0f1726;
  color: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}

.search-form--site .search-field::placeholder,
.search-form .search-field::placeholder {
  color: #7f8a9d;
}

.search-form--site .search-submit,
.search-form .search-submit {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 0 18px;
  border: 1px solid var(--lt-accent);
  background: var(--lt-accent);
  color: #12161e;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.search-form--site .search-submit:hover,
.search-form .search-submit:hover {
  border-color: var(--lt-accent-2);
  background: var(--lt-accent-2);
}

.topic-nav {
  border-bottom: 1px solid var(--lt-border);
  background: rgba(11, 17, 29, .88);
}

.topic-nav__inner {
  display: flex;
  min-height: 54px;
  overflow-x: auto;
  align-items: center;
  gap: 4px;
  scrollbar-width: none;
}

.topic-nav__inner::-webkit-scrollbar {
  display: none;
}

.topic-nav__inner > span {
  margin-right: 12px;
  color: #758196;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-nav a {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  border-radius: 4px;
  color: #b7c0cf;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.topic-nav a:hover,
.topic-nav a.is-active {
  background: var(--lt-surface-accent);
  color: #fff;
}

.section-shell {
  padding: 48px 0 0;
}

.section-shell--feed {
  padding-top: 48px;
}

.feed-heading {
  display: grid;
  margin: 0 0 24px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--lt-border);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: end;
}

.feed-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.feed-heading p {
  margin: 0;
  color: var(--lt-muted);
  font-size: 14px;
  line-height: 1.55;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.post-grid > .story-card {
  grid-column: span 4;
}

.post-grid > .story-card:first-child {
  grid-column: span 8;
}

.story-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: var(--lt-surface);
  color: #fff;
  box-shadow: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  align-self: start;
}

.story-card:hover {
  border-color: var(--lt-border-strong);
  box-shadow: var(--lt-shadow-soft);
  transform: translateY(-2px);
}

.story-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: #111a28;
}

.post-grid > .story-card:first-child .story-card__media {
  aspect-ratio: 16 / 7.65;
}

.story-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--lt-border);
  background: linear-gradient(180deg, transparent 70%, rgba(7, 11, 20, .18));
  pointer-events: none;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.story-card:hover .story-card__media img {
  transform: scale(1.025);
}

.story-card__body {
  display: flex;
  height: auto;
  padding: 20px;
  flex-direction: column;
}

.story-card__kicker {
  display: flex;
  margin: 0 0 10px;
  align-items: center;
  gap: 7px;
}

.story-card__kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--lt-accent);
}

.story-card__kicker a {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--lt-accent);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-breach-alerts .story-card__kicker::before,
.category-breach-news .story-card__kicker::before {
  background: var(--lt-danger);
}

.category-breach-alerts .story-card__kicker a,
.category-breach-news .story-card__kicker a {
  color: #ef8c78;
}

.story-card__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.post-grid > .story-card:first-child .story-card__title {
  max-width: 28ch;
  font-size: 29px;
  line-height: 1.2;
}

.story-card__title a {
  color: #fff;
}

.story-card__title a:hover {
  color: var(--lt-accent-2);
}

.story-card__meta {
  display: flex;
  margin: 0 0 12px;
  flex-wrap: wrap;
  gap: 10px;
  color: #7f8a9e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.story-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #aeb7c6;
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-card__read-more {
  display: inline-flex;
  width: max-content;
  min-height: 36px;
  margin-top: 14px;
  padding: 0;
  align-items: center;
  gap: 7px;
  color: var(--lt-accent-2);
  font-size: 13px;
  font-weight: 750;
  line-height: 20px;
}

.story-card__read-more svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform .18s ease;
}

.story-card__read-more:hover {
  color: #fff;
}

.story-card__read-more:hover svg {
  transform: translateX(3px);
}

.blog-hero__title > span {
  display: block;
}

.pagination {
  display: flex;
  margin: 38px 0 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: var(--lt-surface);
  color: #d4dae5;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

.pagination .current {
  border-color: var(--lt-accent);
  background: var(--lt-accent);
  color: #11151d;
}

.pagination .next,
.pagination .prev {
  min-width: 88px;
}

.publication-cta {
  margin: 56px 0 0;
  padding: 34px 0;
  border-top: 1px solid var(--lt-border);
  border-bottom: 1px solid var(--lt-border);
  background: #0b121f;
}

.publication-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.publication-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.publication-cta p {
  margin: 8px 0 0;
  color: var(--lt-muted);
  font-size: 14px;
}

.publication-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
}

.button--secondary {
  background: transparent;
  color: #fff;
}

.button--primary {
  border-color: var(--lt-accent);
  background: var(--lt-accent);
  color: #11151d;
}

.button:hover {
  border-color: var(--lt-accent-2);
}

.button--primary:hover {
  background: var(--lt-accent-2);
  color: #11151d;
}

/* Articles, archives and search */
.article,
.article--single,
.article--page,
.article--intro,
.sidebar .widget {
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: var(--lt-surface);
  color: #fff;
  box-shadow: none;
}

.article--single {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding: 50px 64px 58px;
}

.article--page,
.article--intro {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding: 42px 54px;
}

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

.article-header h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0;
}

.article-dek {
  margin: 16px 0 0;
  color: #b0bac9;
  font-size: 18px;
  line-height: 1.62;
}

.article-meta {
  display: flex;
  margin: 18px 0 0;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #8792a5;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}

.article-hero {
  overflow: hidden;
  margin: 0 0 34px;
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: #111a28;
}

.article-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: #d2d8e2;
  font-size: 17px;
  line-height: 1.78;
}

.article-content > * {
  max-width: 100%;
}

.article-content p,
.article-content li {
  color: #d2d8e2;
}

.article-content h2 {
  margin: 2em 0 .7em;
  color: #fff;
  font-size: 28px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-content h3 {
  margin: 1.7em 0 .6em;
  color: #f0e6c9;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.article-content a {
  color: var(--lt-accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(239, 202, 104, .5);
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25em;
}

.article-content li {
  margin: .45em 0;
  padding-left: .3em;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border: 0;
  border-left: 3px solid var(--lt-accent);
  background: #121c2d;
  color: #dce2eb;
}

.article-content table {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  color: #d9dee8;
}

.article-content th,
.article-content td {
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid var(--lt-border);
  vertical-align: top;
}

.article-content th {
  background: var(--lt-surface-soft);
  color: #fff;
  text-align: left;
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.article-content code,
.article-content pre {
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: #0a111c;
  color: #e2e7ef;
}

.article-content pre {
  padding: 18px;
}

.article-content .wp-block-image,
.article-content figure {
  margin: 30px 0;
}

.article-content .wp-block-image img,
.article-content figure img,
.wp-block-image img {
  border-radius: 6px;
}

.post-nav,
.related-posts,
.comments-panel {
  width: min(900px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.post-nav {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.post-nav a {
  display: block;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: var(--lt-surface);
  color: var(--lt-accent-2);
  font-size: 13px;
  font-weight: 700;
}

.post-nav a:hover {
  border-color: var(--lt-border-strong);
}

.related-posts {
  margin-top: 42px;
}

.related-posts .section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  color: #fff;
  font-size: 25px;
  letter-spacing: 0;
}

.content-grid {
  gap: 24px;
}

.sidebar {
  top: 88px;
}

.widget-title {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0;
}

.topic-list a,
.mini-story,
.comment-body {
  border-color: var(--lt-border);
  border-radius: 4px;
  background: var(--lt-surface-soft);
  color: #d9dee8;
}

.archive-header,
.search-header {
  margin-bottom: 26px;
}

/* Footer */
.site-footer {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--lt-border);
  background: #080d16;
  color: #c5cbd6;
}

.footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  padding: 0 0 38px;
  grid-template-columns: 1.18fr .92fr .78fr 1.12fr;
  gap: 46px;
  align-items: start;
}

.brand--footer {
  min-width: 0;
  margin: 0 0 18px;
}

.brand--footer .brand-text strong {
  font-size: 21px;
}

.brand--footer .brand-text small {
  font-size: 9.5px;
}

.footer-brand p {
  max-width: 36ch;
  margin: 0;
  color: #8f9aad;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: #f5f6f8;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.footer-links a {
  color: #969fb0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--lt-accent-2);
}

.footer-contact__form {
  display: grid;
  gap: 8px;
}

.footer-contact select,
.footer-contact textarea,
.footer-contact input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: #0d1522;
  color: #dce1e9;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
}

.footer-contact textarea {
  min-height: 68px;
  resize: vertical;
}

.footer-contact__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 8px;
}

.footer-contact__check {
  display: grid;
  grid-template-columns: auto 48px;
  align-items: center;
  gap: 8px;
  color: #9ba5b6;
  font-size: 11px;
}

.footer-contact__check input {
  min-height: 36px;
  text-align: center;
}

.footer-contact button {
  min-height: 38px;
  border: 1px solid var(--lt-accent);
  border-radius: 4px;
  background: var(--lt-accent);
  color: #11151d;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.footer-contact button:hover {
  background: var(--lt-accent-2);
}

.footer-legal {
  display: grid;
  padding-top: 24px;
  border-top: 1px solid var(--lt-border);
  grid-template-columns: auto minmax(280px, 1fr);
  gap: 12px 30px;
  align-items: center;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a,
.footer-legal p {
  color: #7f899a;
  font-size: 11.5px;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0;
  text-align: right;
}

.footer-legal a:hover {
  color: var(--lt-accent-2);
}

.footer-keywords {
  grid-column: 1 / -1;
  text-align: center !important;
}

/* Light theme */
body.lt-theme-light {
  --lt-bg: #f6f7f9;
  --lt-bg-elevated: #eef1f5;
  --lt-surface: #fff;
  --lt-surface-soft: #f1f3f6;
  --lt-surface-accent: #e8ecf2;
  --lt-text: #121722;
  --lt-muted: #606b7c;
  --lt-border: rgba(25, 35, 52, .14);
  background: var(--lt-bg);
  color: var(--lt-text);
}

body.lt-theme-light::before {
  display: none;
}

body.lt-theme-light .site-header {
  border-bottom-color: var(--lt-border);
  background: rgba(255, 255, 255, .92);
}

body.lt-theme-light .brand-white,
body.lt-theme-light .main-nav .nav-list > li > a,
body.lt-theme-light .nav-dropdown > summary,
body.lt-theme-light .header-action,
body.lt-theme-light .feed-heading h2,
body.lt-theme-light .story-card__title,
body.lt-theme-light .story-card__title a,
body.lt-theme-light .article-header h1,
body.lt-theme-light .article-content h2,
body.lt-theme-light .article-content h3,
body.lt-theme-light .section-heading h2,
body.lt-theme-light .publication-cta h2 {
  color: #171d28;
}

body.lt-theme-light .main-nav .nav-list > li > a:hover,
body.lt-theme-light .main-nav .nav-list > li > a.is-current,
body.lt-theme-light .nav-dropdown > summary:hover,
body.lt-theme-light .nav-dropdown[open] > summary,
body.lt-theme-light .header-action--ghost:hover,
body.lt-theme-light .header-action--icon:hover {
  background: #edf0f4;
}

body.lt-theme-light .blog-hero,
body.lt-theme-light .publication-cta {
  background: #eef1f5;
}

body.lt-theme-light .blog-hero__title,
body.lt-theme-light .publication-cta h2 {
  color: #121722;
}

body.lt-theme-light .blog-hero__dek,
body.lt-theme-light .feed-heading p,
body.lt-theme-light .story-card__excerpt,
body.lt-theme-light .article-dek,
body.lt-theme-light .article-content p,
body.lt-theme-light .article-content li {
  color: #536074;
}

body.lt-theme-light .blog-hero::after {
  color: rgba(18, 23, 34, .035);
}

body.lt-theme-light .search-form--site .search-field,
body.lt-theme-light .search-form .search-field {
  border-color: var(--lt-border);
  background: #fff;
  color: #171d28;
}

body.lt-theme-light .topic-nav {
  background: rgba(255, 255, 255, .92);
}

body.lt-theme-light .topic-nav a {
  color: #536074;
}

body.lt-theme-light .story-card,
body.lt-theme-light .article,
body.lt-theme-light .article--single,
body.lt-theme-light .article--page,
body.lt-theme-light .article--intro,
body.lt-theme-light .sidebar .widget,
body.lt-theme-light .post-nav a,
body.lt-theme-light .pagination .page-numbers {
  background: #fff;
}

body.lt-theme-light .article-content {
  color: #303a49;
}

/* Responsive */
@media (max-width: 1450px) {
  .header-inner {
    padding: 0 16px;
    gap: 8px;
  }

  .brand {
    min-width: 172px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .main-nav .nav-list > li > a,
  .nav-dropdown > summary,
  .header-action {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 10.8px;
  }

  .header-action--verify {
    display: none;
  }
}

@media (max-width: 1280px) {
  .header-action--signin {
    display: none;
  }

  .nav-item--templates summary {
    max-width: 126px;
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .mobile-nav > summary {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--lt-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav__icon {
    display: grid;
    width: 18px;
    gap: 4px;
  }

  .mobile-nav__icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-nav__panel {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 125;
    display: grid;
    max-height: calc(100vh - 64px);
    overflow: auto;
    padding: 14px max(24px, calc((100vw - 760px) / 2)) 20px;
    border-bottom: 1px solid var(--lt-border);
    background: rgba(8, 13, 22, .98);
    box-shadow: var(--lt-shadow);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .admin-bar .mobile-nav__panel {
    top: 96px;
    max-height: calc(100vh - 96px);
  }

  .mobile-nav__panel a {
    display: flex;
    min-height: 44px;
    padding: 0 12px;
    align-items: center;
    border-radius: 4px;
    color: #dce1e9;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-nav__panel a:hover,
  .mobile-nav__panel a[aria-current="page"] {
    background: var(--lt-surface-accent);
    color: #fff;
  }

  .header-actions {
    order: 3;
  }

  body.lt-theme-light .mobile-nav > summary {
    background: #f0f2f5;
    color: #171d28;
  }

  body.lt-theme-light .mobile-nav__panel {
    background: rgba(255, 255, 255, .98);
  }

  body.lt-theme-light .mobile-nav__panel a {
    color: #303a49;
  }

  .blog-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lt-wrap,
  .footer-inner {
    width: min(100% - 36px, var(--lt-max));
  }

  .blog-hero {
    padding: 48px 0 38px;
  }

  .blog-hero__inner,
  .feed-heading,
  .publication-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-hero__title {
    font-size: 40px;
  }

  .blog-hero__search {
    max-width: 560px;
  }

  .post-grid > .story-card,
  .post-grid > .story-card:first-child {
    grid-column: span 6;
  }

  .post-grid > .story-card:first-child .story-card__media {
    aspect-ratio: 16 / 9;
  }

  .post-grid > .story-card:first-child .story-card__title {
    font-size: 22px;
  }

  .publication-cta__actions {
    justify-content: flex-start;
  }

  .article--single,
  .article--page,
  .article--intro,
  .post-nav,
  .related-posts,
  .comments-panel {
    width: min(100% - 36px, 900px);
  }

  .article--single {
    padding: 38px 38px 46px;
  }

  .article-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .mobile-nav__panel {
    top: 110px;
    max-height: calc(100vh - 110px);
  }
}

@media (max-width: 680px) {
  .site-header,
  .header-inner {
    height: 60px;
    min-height: 60px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    display: none;
  }

  .header-action--icon {
    display: none;
  }

  .header-action--accent {
    min-height: 40px;
    padding: 0 11px;
    font-size: 12px;
  }

  .mobile-nav > summary {
    width: 42px;
    height: 42px;
  }

  .mobile-nav__panel,
  .admin-bar .mobile-nav__panel {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 12px 14px 18px;
    grid-template-columns: 1fr;
  }

  .admin-bar .mobile-nav__panel {
    top: 106px;
    max-height: calc(100vh - 106px);
  }

  .main--blog {
    padding-top: 60px;
  }

  .main {
    padding-top: 92px;
  }

  .main--blog {
    padding-top: 60px;
  }

  .lt-wrap,
  .footer-inner {
    width: min(100% - 28px, var(--lt-max));
  }

  .blog-hero {
    padding: 38px 0 32px;
  }

  .blog-hero::after {
    display: none;
  }

  .blog-hero__title {
    font-size: 34px;
    line-height: 1.12;
  }

  .blog-hero__dek {
    margin-top: 14px;
    font-size: 15px;
  }

  .blog-hero__search .search-form,
  .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 7px;
  }

  .search-form--site .search-submit,
  .search-form .search-submit {
    min-width: 0;
    padding: 0 10px;
  }

  .topic-nav__inner {
    min-height: 50px;
  }

  .topic-nav__inner > span {
    display: none;
  }

  .section-shell--feed {
    padding-top: 34px;
  }

  .feed-heading {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .feed-heading h2 {
    font-size: 24px;
  }

  .feed-heading p {
    display: none;
  }

  .post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .post-grid > .story-card,
  .post-grid > .story-card:first-child {
    grid-column: 1;
  }

  .story-card__body {
    padding: 17px;
  }

  .story-card__title,
  .post-grid > .story-card:first-child .story-card__title {
    font-size: 20px;
  }

  .story-card__excerpt {
    font-size: 13.5px;
    -webkit-line-clamp: 2;
  }

  .publication-cta {
    margin-top: 40px;
  }

  .publication-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .article--single,
  .article--page,
  .article--intro,
  .post-nav,
  .related-posts,
  .comments-panel {
    width: min(100% - 28px, 900px);
  }

  .article--single,
  .article--page,
  .article--intro {
    padding: 26px 20px 34px;
  }

  .article-header h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .article-dek {
    font-size: 16px;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.72;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding-top: 38px;
  }

  .footer-grid {
    padding-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 44ch;
  }

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

  .footer-legal p,
  .footer-keywords {
    text-align: left !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Exact LearnTPRM navigation replica */
.site-header {
  height: 65px;
  border: 1px solid rgba(34, 41, 57, .5);
  border-width: 0 0 1px;
  background: rgba(14, 19, 32, .8);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: 100%;
  max-width: none;
  height: 64px;
  min-height: 64px;
  padding: 0 40px;
  gap: 0;
}

.brand {
  display: flex;
  width: auto;
  min-width: 0;
  height: 41px;
  margin: 0 16px 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  color: #ede9de;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.brand-title {
  display: block;
  height: 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
}

.brand-title sup {
  position: static;
  margin: 0;
  color: #8f98aa;
  font-size: 8px;
  font-weight: 700;
  vertical-align: super;
}

.brand-dot {
  margin-left: 2px;
  color: #8f98aa;
  font-size: 12px;
  font-weight: 700;
}

.brand-tagline {
  display: block;
  color: #ddad31;
  font-size: 10px;
  font-weight: 600;
  line-height: 12.5px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
}

.main-nav .nav-list > li {
  position: relative;
}

.main-nav .nav-list > li > a,
.nav-dropdown > summary {
  display: inline-flex;
  width: auto;
  max-width: none;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ede9de;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.main-nav .nav-list > li > a:hover,
.nav-dropdown > summary:hover {
  background: #182132;
  color: #ede9de;
}

.main-nav .nav-list > li > a[aria-current="page"] {
  background: transparent;
  box-shadow: none;
  color: #ede9de;
}

.main-nav .nav-link--gold {
  background-image: linear-gradient(135deg, #ddad31, #edc55e);
  background-clip: text;
  color: #ddad31 !important;
  font-weight: 600 !important;
}

.nav-dropdown > summary {
  cursor: default;
}

.nav-dropdown[open] > summary {
  padding: 0 12px;
  border-radius: 10px;
  background: #ddad31;
  color: #080c16;
}

.menu-chevron {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform .2s ease;
}

.nav-dropdown[open] .menu-chevron {
  transform: rotate(180deg);
}

.mega-menu,
.case-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 150;
  overflow: visible;
  transform: translateX(-50%);
  border: 1px solid #222939;
  border-radius: 12px;
  background: #0e1320;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: block;
  width: 1100px;
  max-height: none;
  padding: 24px;
  transform: translateX(-50%);
  columns: 4;
  column-gap: 24px;
}

.mega-group {
  margin: 0 0 16px;
  break-inside: avoid;
}

.mega-title {
  display: block;
  margin: 0 0 8px;
  color: #ddad31;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.mega-menu a {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 4px;
  color: #ede9de;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  white-space: normal;
}

.mega-menu a:hover,
.case-menu a:hover {
  background: #182132;
  color: #ede9de;
}

.case-menu {
  display: block;
  padding: 12px;
}

.case-menu--studies {
  left: 50%;
  width: 320px;
  transform: translateX(-50%);
}

.case-menu--templates {
  width: 340px;
}

.case-menu a,
.case-menu.case-menu--studies a,
.case-menu.case-menu--templates a {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 4px;
  color: #ede9de;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  white-space: normal;
}

.header-actions {
  display: flex;
  width: auto;
  min-width: 0;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-action,
.header-action--ghost {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ede9de;
  box-shadow: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.header-action:hover {
  background: #182132;
  color: #ede9de;
}

.header-action--verify {
  font-weight: 700;
}

.header-action--icon {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 10px;
}

.header-action--icon svg {
  width: 16px;
  height: 16px;
}

.header-action--accent {
  height: 36px;
  min-height: 36px;
  margin: 0;
  padding: 0 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ddad31, #edc55e);
  color: #080c16;
  font-weight: 600;
  box-shadow: none;
}

.header-action--accent:hover {
  background: linear-gradient(135deg, #e2b43a, #f1cc69);
  color: #080c16;
  filter: none;
}

.mobile-nav {
  display: none;
}

body.lt-theme-light .site-header {
  border-bottom-color: rgba(209, 213, 219, .7);
  background: rgba(255, 255, 255, .84);
}

body.lt-theme-light .brand-white,
body.lt-theme-light .main-nav .nav-list > li > a,
body.lt-theme-light .nav-dropdown > summary,
body.lt-theme-light .header-action {
  color: #151923;
}

body.lt-theme-light .nav-dropdown[open] > summary,
body.lt-theme-light .header-action--accent {
  color: #080c16;
}

@media (min-width: 1691px) and (max-width: 1799px) {
  .main-nav .nav-list {
    gap: 2px;
  }

  .main-nav .nav-list > li > a,
  .nav-dropdown > summary {
    padding-right: 9px;
    padding-left: 9px;
  }

  .nav-dropdown--knowledge .mega-menu {
    left: calc(50% + 54px);
  }
}

@media (max-width: 1690px) {
  .header-inner {
    padding: 0 24px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .mobile-nav > summary {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 8px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ede9de;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav > summary:hover {
    background: transparent;
  }

  .mobile-nav > summary svg {
    width: 24px;
    height: 24px;
  }

  .mobile-nav__close {
    display: none;
  }

  .mobile-nav[open] .mobile-nav__open {
    display: none;
  }

  .mobile-nav[open] .mobile-nav__close {
    display: block;
  }

  .mobile-nav__panel {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 140;
    display: block;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    border: 1px solid rgba(34, 41, 57, .5);
    border-width: 1px 0 0;
    background: rgba(14, 19, 32, .96);
    box-shadow: none;
    backdrop-filter: blur(16px);
  }

  .admin-bar .mobile-nav__panel {
    top: 104px;
    max-height: calc(80vh - 32px);
  }

  .mobile-nav__inner {
    display: flex;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav__primary,
  .mobile-nav__heading {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #ede9de;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .mobile-nav__link {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 10px 24px;
    border-radius: 12px;
    color: #ede9de;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .mobile-nav__panel .mobile-nav__link {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 10px 24px;
    border-radius: 12px;
    background: transparent;
    color: #ede9de;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .mobile-nav__panel .mobile-nav__primary,
  .mobile-nav__panel .mobile-nav__heading {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    color: #ede9de;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .mobile-nav__panel .mobile-nav__link--gold {
    color: #ddad31;
    font-weight: 600;
  }

  .mobile-nav__panel .mobile-nav__link--strong {
    font-weight: 600;
  }

  .mobile-nav__link:hover,
  .mobile-nav__primary:hover {
    background: #182132;
    color: #ede9de;
  }

  .mobile-nav__link--gold {
    color: #ddad31;
    font-weight: 600;
  }

  .mobile-nav__link--strong {
    font-weight: 600;
  }

  .mobile-nav__group {
    display: block;
  }

  .mobile-nav__theme {
    display: flex;
    width: 100%;
    min-height: 40px;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #ede9de;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
  }

  .mobile-nav__actions {
    display: grid;
    padding-top: 4px;
    gap: 4px;
  }

  .mobile-nav__button {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
  }

  .mobile-nav__button--secondary {
    border: 1px solid rgba(221, 173, 49, .3);
    background: #080c16;
    color: #ddad31;
    font-weight: 500;
  }

  .mobile-nav__button--primary {
    border: 0;
    background: linear-gradient(135deg, #ddad31, #edc55e);
    color: #080c16;
    font-weight: 600;
  }

  body.lt-theme-light .mobile-nav > summary,
  body.lt-theme-light .mobile-nav__primary,
  body.lt-theme-light .mobile-nav__heading,
  body.lt-theme-light .mobile-nav__link,
  body.lt-theme-light .mobile-nav__theme {
    color: #151923;
  }

  body.lt-theme-light .mobile-nav__panel {
    border-top-color: rgba(209, 213, 219, .7);
    background: rgba(255, 255, 255, .97);
  }
}

@media (max-width: 1023px) {
  .brand-tagline {
    display: none;
  }

  .brand {
    height: 28px;
  }
}

@media (max-width: 782px) {
  .admin-bar .mobile-nav__panel {
    top: 118px;
    max-height: calc(80vh - 46px);
  }
}

@media (max-width: 680px) {
  .site-header,
  .header-inner {
    height: 65px;
    min-height: 64px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .brand-title {
    font-size: 20px;
    line-height: 28px;
  }

  .main--blog {
    padding-top: 65px;
  }

  .main {
    padding-top: 97px;
  }

  .main--blog {
    padding-top: 65px;
  }
}


/* LearnTPRM sponsor placement */
.blog-hero__aside {
  display: grid;
  align-self: stretch;
  align-content: space-between;
  gap: 22px;
  min-width: 0;
}

.sponsor-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(216, 174, 63, .42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 0 0, rgba(216, 174, 63, .16), transparent 46%),
    linear-gradient(135deg, rgba(15, 23, 38, .98), rgba(7, 11, 20, .98));
  color: #f4f1e8;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sponsor-card:hover {
  border-color: #efca68;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
  transform: translateY(-2px);
}

.sponsor-card__badge {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(239, 202, 104, .34);
  border-radius: 6px;
  background: #070b14;
  color: #efca68;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.sponsor-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.sponsor-card__eyebrow {
  margin-bottom: 5px;
  color: #efca68;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sponsor-card__label {
  color: #9aa5b7;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sponsor-card__name {
  margin-top: 3px;
  color: #f4f1e8;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.sponsor-card__copy {
  max-width: 32ch;
  margin-top: 8px;
  color: #aeb8c8;
  font-size: 13px;
  line-height: 1.45;
}

.sponsor-card__cta {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #efca68;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.sponsor-card__cta > span {
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.sponsor-card:hover .sponsor-card__cta > span {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .blog-hero__aside {
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .sponsor-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .sponsor-card__badge {
    width: 56px;
    height: 56px;
  }

  .sponsor-card__name {
    font-size: 20px;
  }

  .sponsor-card__copy {
    font-size: 12px;
  }
}
/*
Theme Name: Rankify LearnTPRM TechWire
Theme URI: https://learntprm.com/blog
Author: ChatGPT for LearnTPRM
Author URI: https://learntprm.com
Description: A magazine-style LearnTPRM blog theme inspired by modern tech news layouts, built for fast publishing, strong readability, and clean category-led storytelling.
Version: 1.3.4
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rankify-learntrpm
Tags: blog, education, custom-logo, featured-images, threaded-comments, translation-ready, one-column, two-columns, right-sidebar, block-styles, wide-blocks
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

:root{
  --lt-bg:#eef9f4;
  --lt-bg-2:#f4efff;
  --lt-surface:#ffffff;
  --lt-surface-soft:#f8f8ff;
  --lt-surface-accent:#eef4ff;
  --lt-text:#111827;
  --lt-muted:#606779;
  --lt-accent:#6f5cff;
  --lt-accent-2:#8d78ff;
  --lt-accent-3:#d7d0ff;
  --lt-border:rgba(17,24,39,.09);
  --lt-border-strong:rgba(111,92,255,.20);
  --lt-shadow:0 18px 46px rgba(53,42,118,.10);
  --lt-shadow-soft:0 10px 28px rgba(53,42,118,.08);
  --lt-radius:24px;
  --lt-radius-sm:18px;
  --lt-radius-xs:12px;
  --lt-max:1236px;
  --lt-content:760px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(141,120,255,.16), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(111,92,255,.10), transparent 18%),
    linear-gradient(135deg, var(--lt-bg) 0%, #f5fbf7 30%, #f6f1ff 72%, #fff 100%);
  color:var(--lt-text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.72;
  font-size:16px;
  text-rendering:optimizeLegibility;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--lt-accent)}
img{max-width:100%;height:auto;display:block}
p{margin:0 0 1em}

.screen-reader-text{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.screen-reader-text:focus{
  left:20px;top:20px;width:auto;height:auto;
  background:#fff;color:#000;padding:10px;z-index:999;border-radius:8px;
}

.lt-wrap{width:min(var(--lt-max),calc(100% - 32px));margin:0 auto}
.skip-link{position:absolute;left:-9999px}
.skip-link:focus{
  left:20px;top:20px;background:var(--lt-accent);color:#fff;
  padding:10px 14px;z-index:9999;border-radius:8px;font-weight:800;
}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(111,92,255,.10);
}

.header-inner{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:20px;
  min-height:84px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;letter-spacing:-.04em;
  white-space:nowrap;
}

.brand-mark{
  width:58px;height:58px;border-radius:18px;
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  display:grid;place-items:center;color:#fff;font-weight:950;
  box-shadow:0 12px 26px rgba(111,92,255,.22);
  font-size:20px;
}

.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-text strong{
  display:inline-flex;
  align-items:baseline;
  gap:2px;
  font-size:23px;
  line-height:1;
  letter-spacing:-.06em;
}
.brand-text strong span{font-weight:900}
.brand-text strong sup{
  top:-.55em;
  font-size:.62em;
  font-weight:800;
  letter-spacing:0;
}
.brand-text small{
  display:block;
  margin-top:4px;
  font-size:12px;
  line-height:1.1;
  color:var(--lt-accent);
  font-weight:700;
}

.main-nav ul{
  display:flex;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
  justify-content:center;
}

.main-nav a{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 1 118px;
  min-width:0;
  padding:8px 8px;
  border-radius:999px;
  color:var(--lt-muted);
  font-size:15px;
  font-weight:700;
  transition:background .18s ease,color .18s ease,transform .18s ease;
  line-height:1.1;
  text-align:center;
  max-width:118px;
  white-space:normal;
}

.menu-item-has-children > a::after{
  content:"⌄";
  display:inline-block;
  margin-left:6px;
  font-size:11px;
  line-height:1;
  transform:translateY(-1px);
  color:currentColor;
}

.main-nav a:hover,.main-nav .current-menu-item>a{
  background:rgba(111,92,255,.10);color:var(--lt-accent);
}

.header-actions{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:max-content;
  align-items:center;
  gap:8px;
  justify-self:end;
  min-width:max-content;
  width:max-content;
}

.header-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  font-size:12px;
  white-space:nowrap;
}

.header-action--ghost{
  background:#fff;color:var(--lt-accent);
  border-color:rgba(111,92,255,.14);
  box-shadow:0 8px 20px rgba(53,42,118,.06);
}

.header-action--icon{
  width:40px;height:40px;padding:0;
  background:rgba(255,255,255,.05);
  color:#fff;
  border-color:rgba(255,255,255,.08);
  font-size:15px;
}

.header-action--accent{
  min-width:112px;
}

.front-hero{
  position:relative;
  padding:28px 0 6px;
}

.front-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(320px,.65fr);
  gap:22px;
  align-items:start;
}

.hero-story{
  position:relative;
  min-height:540px;
  border-radius:var(--lt-radius);
  overflow:hidden;
  box-shadow:var(--lt-shadow);
  background:linear-gradient(180deg,#f1f0ff 0%, #ffffff 100%);
}

.hero-story__media{
  position:absolute;inset:0;
}

.hero-story__media img{
  width:100%;height:100%;object-fit:cover;
}

.hero-story__overlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:36px;
  background:linear-gradient(180deg, transparent 0%, rgba(14,18,37,.42) 24%, rgba(14,18,37,.78) 100%);
  color:#fff;
}

.hero-story__kicker,
.rail-story__kicker,
.story-card__kicker,
.mini-story__kicker{
  display:inline-flex;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
  margin-bottom:10px;
}

.hero-story__title{
  margin:0 0 10px;
  font-size:clamp(30px,4.4vw,58px);
  line-height:1.02;
  letter-spacing:-.08em;
  max-width:12ch;
}

.hero-story__title a{color:#fff}

.hero-story__meta{
  display:flex;gap:12px;flex-wrap:wrap;
  color:rgba(255,255,255,.82);
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}

.hero-story__overlay p{
  max-width:700px;
  color:rgba(255,255,255,.84);
  font-size:17px;
  margin:0;
}

.hero-rail{
  display:grid;
  gap:16px;
}

.rail-story{
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:14px;
  padding:12px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius-sm);
  box-shadow:var(--lt-shadow-soft);
}

.rail-story__media{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:1 / 1;
}

.rail-story__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.rail-story__title{
  margin:0;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.04em;
}

.section-shell{
  padding:44px 0 0;
}

.section-shell--newsletter{
  padding:30px 0 0;
}

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

.section-label{
  display:inline-flex;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
  margin-bottom:8px;
}

.section-heading h2,
.article-header h1{
  margin:0;
  letter-spacing:-.06em;
}

.section-heading h2{
  font-size:clamp(24px,2.4vw,34px);
}

.section-heading a{
  color:var(--lt-accent);
  font-weight:900;
  white-space:nowrap;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.card-grid--latest{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.card-grid--featured{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.story-card{
  background:rgba(255,255,255,.95);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius);
  overflow:hidden;
  box-shadow:var(--lt-shadow-soft);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.story-card:hover{
  transform:translateY(-4px);
  border-color:var(--lt-border-strong);
  box-shadow:var(--lt-shadow);
}

.story-card__media{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:linear-gradient(135deg,#f4f1ff,#eff7f1);
}

.story-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-card__body{
  padding:18px 18px 20px;
}

.story-card__title{
  margin:0 0 10px;
  font-size:clamp(19px,1.8vw,24px);
  line-height:1.12;
  letter-spacing:-.05em;
}

.story-card__meta{
  display:flex;gap:10px;flex-wrap:wrap;
  color:var(--lt-muted);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.story-card__excerpt{
  margin:0;
  color:var(--lt-muted);
}

.category-stack{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(290px,.7fr);
  gap:20px;
  align-items:start;
}

.category-stack__main{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.category-stack__side{
  display:grid;
  gap:16px;
}

.mini-story{
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:12px;
  border:1px solid var(--lt-border);
  border-radius:20px;
  background:rgba(255,255,255,.88);
  box-shadow:var(--lt-shadow-soft);
}

.mini-story__media{
  aspect-ratio:1 / 1;
  border-radius:16px;
  overflow:hidden;
}

.mini-story__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mini-story__body h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.04em;
}

.mini-story__body p{
  margin:0;
  color:var(--lt-muted);
  font-size:14px;
}

.newsletter-panel{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:28px 30px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.55), transparent 32%),
    linear-gradient(135deg, rgba(111,92,255,.14) 0%, rgba(141,120,255,.08) 42%, rgba(255,255,255,.94) 100%);
  border:1px solid rgba(111,92,255,.16);
  box-shadow:var(--lt-shadow);
}

.newsletter-panel h2{
  margin:0 0 10px;
  font-size:clamp(24px,2.4vw,34px);
  letter-spacing:-.06em;
}

.newsletter-panel p{
  margin:0;
  color:var(--lt-muted);
  max-width:52ch;
}

.newsletter-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.newsletter-form input,
.search-form .search-field,
.comment-respond input,
.comment-respond textarea{
  min-width:0;
  width:100%;
  border:1px solid var(--lt-border);
  background:#fff;
  color:var(--lt-text);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.newsletter-form input{
  min-width:280px;
}

.newsletter-form button,
.search-form .search-submit,
.comment-respond .submit{
  border:0;
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#fff;
  font-weight:900;
  border-radius:14px;
  padding:13px 18px;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(111,92,255,.22);
}

.main{
  padding:42px 0 54px;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:28px;
  align-items:start;
}

.content-main{min-width:0}

.sidebar{
  position:sticky;
  top:88px;
  display:grid;
  gap:18px;
}

.widget{
  background:rgba(255,255,255,.93);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius);
  padding:20px;
  box-shadow:var(--lt-shadow-soft);
}

.widget-kicker{
  display:inline-flex;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
  margin-bottom:8px;
}

.widget-title{
  margin:0 0 12px;
  font-size:18px;
  letter-spacing:-.04em;
}

.widget p{
  color:var(--lt-muted);
}

.widget--newsletter-top{
  position:relative;
  overflow:hidden;
  padding:22px;
  border-color:rgba(240,193,93,.18);
  background:
    radial-gradient(circle at 100% 0, rgba(240,193,93,.10), transparent 34%),
    rgba(15,19,30,.96);
}

.widget--newsletter-top .widget-title{
  font-size:22px;
  line-height:1.12;
}

.widget--newsletter-top p{
  font-size:15px;
  line-height:1.55;
}

.widget--newsletter-top .newsletter-form{
  display:grid;
  gap:12px;
}

.widget--newsletter-top .newsletter-form input,
.widget--newsletter-top .newsletter-form button{
  width:100%;
  min-width:0;
  min-height:52px;
  border-radius:16px;
}

.topic-list{
  list-style:none;
  margin:0;
  padding:0;
}

.topic-list li + li{margin-top:8px}

.topic-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 12px;
  border-radius:12px;
  background:var(--lt-surface-soft);
  border:1px solid rgba(111,92,255,.08);
  font-weight:800;
}

.article{
  background:rgba(255,255,255,.96);
  border:1px solid var(--lt-border);
  border-radius:var(--lt-radius);
  padding:clamp(24px,4vw,42px);
  box-shadow:var(--lt-shadow-soft);
}

.article--single,
.article--page,
.article--intro{
  margin-bottom:20px;
}

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

.article-header h1{
  font-size:clamp(34px,4.8vw,62px);
  line-height:1;
}

.article-dek,
.article-meta{
  color:var(--lt-muted);
  font-weight:700;
}

.article-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:13px;
  margin-top:14px;
}

.article-hero{
  margin-bottom:26px;
  border-radius:26px;
  overflow:hidden;
}

.article-content{
  font-size:17px;
  max-width:var(--lt-content);
}

.article-content h2,
.article-content h3{
  line-height:1.15;
  letter-spacing:-.04em;
  margin-top:1.7em;
}

.article-content p,
.article-content li{
  color:#2d3340;
}

.article-content a{
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-color:rgba(111,92,255,.40);
}

.article-content blockquote{
  border-left:4px solid var(--lt-accent);
  padding-left:18px;
  color:var(--lt-muted);
  margin-left:0;
}

.article-content code{
  background:var(--lt-surface-soft);
  border:1px solid var(--lt-border);
  padding:2px 6px;
  border-radius:6px;
}

.article-content pre{
  overflow:auto;
  background:var(--lt-surface-soft);
  border:1px solid var(--lt-border);
  padding:18px;
  border-radius:16px;
}

.article-content table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--lt-border);
  margin:24px 0;
}

.article-content th,
.article-content td{
  padding:12px 14px;
  border-bottom:1px solid var(--lt-border);
  vertical-align:top;
}

.article-content th{
  background:var(--lt-surface-soft);
  text-align:left;
}

.wp-block-image img{border-radius:20px}

.post-nav{
  display:flex;justify-content:space-between;gap:16px;margin-top:22px;
}

.post-nav a{
  display:block;
  background:rgba(255,255,255,.95);
  border:1px solid var(--lt-border);
  border-radius:16px;
  padding:14px 16px;
  color:var(--lt-accent);
  font-weight:900;
  flex:1;
}

.related-posts{margin-top:26px}

.pagination{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:30px;
  flex-wrap:wrap;
}

.pagination .page-numbers{
  padding:10px 14px;
  border:1px solid var(--lt-border);
  border-radius:12px;
  background:var(--lt-surface);
  font-weight:800;
}

.pagination .current{
  background:var(--lt-accent);
  color:#fff;
}

.comments-panel{
  margin-top:24px;
}

.comment-list{
  padding:0;
  list-style:none;
}

.comment-body{
  background:var(--lt-surface-soft);
  border:1px solid var(--lt-border);
  border-radius:16px;
  padding:16px;
  margin:14px 0;
}

.comment-respond input,
.comment-respond textarea{
  margin-top:8px;
}

.site-footer{
  margin-top:54px;
  border-top:1px solid rgba(111,92,255,.10);
  background:rgba(255,255,255,.72);
}

.footer-grid{
  padding:34px 0 42px;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:28px;
  align-items:start;
}

.footer-brand strong{
  display:block;
  font-size:22px;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.footer-brand p,
.footer-meta p{
  color:var(--lt-muted);
  margin:0 0 10px;
}

.footer-brand__note,
.footer-meta__copyright{
  font-size:14px;
}

.footer-links,
.footer-meta{
  display:grid;
  gap:10px;
}

.footer-links h3,
.footer-meta h3{
  margin:0 0 2px;
  font-size:16px;
  letter-spacing:-.03em;
}

.footer-links a,
.footer-meta a{
  color:var(--lt-muted);
  font-weight:700;
}

.footer-links a:hover,
.footer-meta a:hover{
  color:var(--lt-accent);
}

.search-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.search-form .search-submit{
  min-width:104px;
}

.article-content > *:first-child{margin-top:0}

.wp-caption,
.gallery-caption{
  color:var(--lt-muted);
}

@media (max-width:1120px){
  .front-hero-grid,
  .content-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .sidebar{
    position:static;
  }
}

@media (max-width:900px){
  .main-nav{display:none}
  .hero-story{min-height:460px}
  .card-grid,
  .card-grid--latest,
  .card-grid--featured{
    grid-template-columns:1fr;
  }
  .category-stack{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  .header-inner{
    min-height:72px;
    gap:14px;
  }

  .brand-text small{
    display:none;
  }

  .header-action--ghost{
    display:none;
  }

  .hero-story__overlay{
    padding:22px;
  }

  .hero-story__title{
    max-width:100%;
  }

  .rail-story,
  .mini-story{
    grid-template-columns:1fr;
  }

  .newsletter-panel{
    padding:22px;
  }

  .newsletter-form input{
    min-width:0;
    width:100%;
  }

.post-nav{
    flex-direction:column;
  }
}

.sharedaddy,
.sd-sharing,
.sd-social,
.jp-relatedposts,
.jp-relatedposts-posts,
.sharedaddy .sd-title,
.sharedaddy .jp-sharing-input{
  display:none !important;
}

@media (prefers-reduced-motion:reduce){
  *{
    scroll-behavior:auto !important;
    transition:none !important;
  }
}

:root{
  --lt-bg:#0a0d16;
  --lt-bg-2:#11172a;
  --lt-surface:#111827;
  --lt-surface-soft:#151c2e;
  --lt-surface-accent:#1c2440;
  --lt-text:#f4f7ff;
  --lt-muted:#a9b2c7;
  --lt-accent:#f0c15d;
  --lt-accent-2:#d9a43b;
  --lt-accent-3:rgba(240,193,93,.16);
  --lt-border:rgba(255,255,255,.08);
  --lt-border-strong:rgba(240,193,93,.26);
  --lt-shadow:0 22px 54px rgba(0,0,0,.44);
  --lt-shadow-soft:0 14px 32px rgba(0,0,0,.30);
}

body{
  background:
    radial-gradient(circle at top left, rgba(240,193,93,.10), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(240,193,93,.08), transparent 18%),
    linear-gradient(180deg, #080b12 0%, #0b1020 38%, #0b0f1a 100%);
  color:var(--lt-text);
}

body.lt-theme-light{
  --lt-bg:#eef9f4;
  --lt-bg-2:#f4efff;
  --lt-surface:#ffffff;
  --lt-surface-soft:#f8f8ff;
  --lt-surface-accent:#eef4ff;
  --lt-text:#111827;
  --lt-muted:#606779;
  --lt-accent:#6f5cff;
  --lt-accent-2:#8d78ff;
  --lt-accent-3:#d7d0ff;
  --lt-border:rgba(17,24,39,.09);
  --lt-border-strong:rgba(111,92,255,.20);
  --lt-shadow:0 18px 46px rgba(53,42,118,.10);
  --lt-shadow-soft:0 10px 28px rgba(53,42,118,.08);
  background:
    radial-gradient(circle at top left, rgba(141,120,255,.16), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(111,92,255,.10), transparent 18%),
    linear-gradient(135deg, var(--lt-bg) 0%, #f5fbf7 30%, #f6f1ff 72%, #fff 100%);
  color:var(--lt-text);
}

body.lt-theme-light .site-header{
  background:rgba(255,255,255,.86);
}

.site-header{
  background:rgba(9,13,22,.82);
  border-bottom:1px solid rgba(240,193,93,.10);
}

.brand{
  color:#fff;
}

.brand-mark{
  background:linear-gradient(135deg, #f0c15d, #e6ad34);
  color:#111827;
}

.brand-text small{
  display:block;
  color:var(--lt-muted);
}

.main-nav a{
  color:rgba(244,247,255,.78);
}

.main-nav a:hover,
.main-nav .current-menu-item>a{
  background:rgba(240,193,93,.14);
  color:var(--lt-accent);
}

.header-action--ghost{
  background:rgba(255,255,255,.04);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
}

.header-action--ghost:hover{
  border-color:rgba(240,193,93,.30);
  color:var(--lt-accent);
}

.header-action--accent{
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#121826;
  box-shadow:0 12px 24px rgba(240,193,93,.22);
}

.main{
  padding:34px 0 62px;
}

.main--blog{
  padding-top:26px;
}

.blog-hero{
  padding:22px 0 10px;
}

.blog-hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,560px);
  gap:34px;
  align-items:center;
}

.blog-hero__title{
  margin:8px 0 10px;
  font-size:clamp(42px,5.5vw,78px);
  line-height:.95;
  letter-spacing:-.09em;
}

.blog-hero__title span,
.eyebrow--gold{
  color:var(--lt-accent);
}

.eyebrow{
  display:inline-flex;
  margin-bottom:8px;
  color:var(--lt-accent);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
}

.blog-hero__dek{
  margin:0;
  max-width:60ch;
  color:var(--lt-muted);
  font-size:18px;
}

.blog-hero__search .search-form{
  display:flex;
  gap:14px;
  flex-wrap:nowrap;
  justify-content:flex-end;
  align-items:center;
  width:100%;
}

.search-form--site .search-field,
.search-form--site .search-submit{
  height:64px;
}

.search-form--site .search-field{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  width:100%;
  min-width:0;
  border-radius:18px;
  padding:0 20px;
  font-size:18px;
  font-weight:600;
  letter-spacing:-.03em;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.search-form--site .search-field::placeholder{
  color:rgba(244,247,255,.45);
}

.search-form--site .search-submit{
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#121826;
  min-width:142px;
  padding:0 28px;
  font-size:17px;
  font-weight:900;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(240,193,93,.22);
  flex:0 0 auto;
}

.blog-hero__search{
  padding-top:10px;
}

.section-shell{
  padding:30px 0 0;
}

.section-shell--feed{
  padding-top:20px;
}

.post-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.story-card{
  background:rgba(15,19,30,.96);
  border:1px solid var(--lt-border);
  box-shadow:var(--lt-shadow-soft);
  color:#fff;
}

.story-card:hover{
  border-color:rgba(240,193,93,.26);
  box-shadow:var(--lt-shadow);
}

.story-card__media{
  aspect-ratio:16/11;
  background:linear-gradient(135deg, rgba(240,193,93,.10), rgba(255,255,255,.02));
}

.story-card__body{
  padding:18px 18px 22px;
}

.story-card__kicker{
  margin-bottom:10px;
}

.story-card__kicker a{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(240,193,93,.12);
  border:1px solid rgba(240,193,93,.16);
  color:var(--lt-accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.story-card__title{
  font-size:clamp(20px,2vw,26px);
  line-height:1.1;
}

.story-card__title a{
  color:#fff;
}

.story-card__meta{
  color:rgba(244,247,255,.62);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.story-card__excerpt{
  color:var(--lt-muted);
}

.pagination{
  gap:12px;
  margin-top:38px;
}

.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  min-height:56px;
  padding:0 18px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.16);
  color:#eef2ff;
  border-radius:16px;
  font-size:20px;
  font-weight:900;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.pagination a.page-numbers:hover{
  background:rgba(240,193,93,.10);
  border-color:rgba(240,193,93,.34);
  color:#fff;
}

.pagination .next,
.pagination .prev{
  min-width:102px;
}

.pagination .current{
  background:linear-gradient(135deg,var(--lt-accent),var(--lt-accent-2));
  color:#121826;
  border-color:transparent;
  box-shadow:0 12px 26px rgba(240,193,93,.22);
}

.newsletter-panel{
  background:
    radial-gradient(circle at 10% 0, rgba(240,193,93,.10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.018) 100%);
  border:1px solid rgba(240,193,93,.16);
  color:#fff;
  display:grid;
  grid-template-columns:64px minmax(0,1fr) minmax(260px,360px);
  gap:18px;
  align-items:center;
  padding:20px 24px;
  border-radius:22px;
  max-width:1120px;
}

.newsletter-panel__art{
  aspect-ratio:1 / 1;
  border-radius:18px;
  background:linear-gradient(145deg, rgba(240,193,93,.30), rgba(111,92,255,.20));
  border:1px solid rgba(240,193,93,.18);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  font-size:13px;
  letter-spacing:.16em;
}

.newsletter-panel__copy h2{
  margin:2px 0 6px;
  font-size:clamp(22px,2.2vw,30px);
  letter-spacing:-.06em;
}

.newsletter-panel__copy p{
  max-width:50ch;
  font-size:16px;
  line-height:1.55;
  color:var(--lt-muted);
}

.newsletter-form--wide{
  justify-content:flex-end;
}

.newsletter-form--wide .search-field,
.newsletter-form--wide input{
  min-width:0;
}

.newsletter-form--wide input{
  flex:1 1 220px;
  min-height:54px;
  border-radius:16px;
  font-weight:700;
}

.newsletter-form--wide button{
  white-space:nowrap;
  min-height:54px;
  border-radius:16px;
  padding:0 22px;
}

.sidebar .widget,
.article,
.article--single,
.article--page,
.article--intro{
  background:rgba(15,19,30,.96);
  border-color:var(--lt-border);
  color:#fff;
}

.widget-title,
.article-header h1,
.section-heading h2{
  color:#fff;
}

.widget p,
.article-dek,
.article-meta,
.article-content p,
.article-content li,
.mini-story__body p,
.footer-brand p,
.footer-meta p,
.newsletter-panel p,
.newsletter-panel__copy p{
  color:var(--lt-muted);
}

.topic-list a{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:#fff;
}

.article-content p,
.article-content li{
  color:rgba(244,247,255,.82);
}

.article-content a{
  color:var(--lt-accent);
  text-decoration-color:rgba(240,193,93,.40);
}

.article-content blockquote{
  color:#d8deec;
  border-left-color:var(--lt-accent);
}

.article-content code,
.article-content pre,
.article-content table,
.comment-body{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:#fff;
}

.comment-body{
  box-shadow:none;
}

.post-nav a{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:var(--lt-accent);
}

.site-footer{
  background:rgba(7,10,18,.88);
  border-top-color:rgba(240,193,93,.10);
}

.footer-links a,
.footer-meta a{
  color:rgba(244,247,255,.72);
}

.footer-brand strong{
  color:#fff;
}

.front-hero,
.category-stack,
.section-shell--newsletter{
  display:block;
}

@media (max-width:1120px){
  .blog-hero__inner,
  .newsletter-panel{
    grid-template-columns:1fr;
  }

  .blog-hero__search .search-form{
    max-width:720px;
    justify-content:flex-start;
  }

  .post-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .post-grid{
    grid-template-columns:1fr;
  }

  .newsletter-panel{
    padding:22px;
  }
}

@media (max-width:680px){
  .header-inner{
    gap:14px;
  }

  .brand-mark{
    width:50px;
    height:50px;
    font-size:17px;
  }

  .brand-text strong{
    font-size:18px;
  }

  .brand-text small{
    display:none;
  }

  .header-actions{
    gap:8px;
  }

  .header-action{
    min-height:42px;
    padding:8px 14px;
    font-size:13px;
  }

  .header-action--icon{
    width:42px;
    height:42px;
  }

  .header-action--accent{
    min-width:112px;
  }

  .blog-hero__title{
    font-size:clamp(34px,12vw,54px);
  }

  .blog-hero__search .search-form{
    display:grid;
    gap:12px;
    max-width:none;
  }

  .search-form--site .search-field,
  .search-form--site .search-submit{
    width:100%;
    min-width:0;
    height:58px;
  }

  .search-form--site .search-field{
    font-size:17px;
    padding:0 18px;
  }

  .search-form--site .search-submit{
    min-width:0;
  }

  .newsletter-panel{
    gap:16px;
  }

  .newsletter-form--wide{
    flex-direction:column;
  }

  .newsletter-form--wide button,
  .newsletter-form--wide input{
    width:100%;
  }
}

body.lt-theme-light .site-header{
  background:rgba(255,255,255,.86);
  border-bottom-color:rgba(111,92,255,.10);
}

body.lt-theme-light .brand{
  color:var(--lt-text);
}

body.lt-theme-light .main-nav a{
  color:var(--lt-muted);
}

body.lt-theme-light .header-action--ghost{
  background:#fff;
  color:var(--lt-accent);
  border-color:rgba(111,92,255,.14);
}

body.lt-theme-light .header-action--accent{
  color:#fff;
}

body.lt-theme-light .blog-hero__search .search-field{
  background:#fff;
  border-color:var(--lt-border);
  color:var(--lt-text);
}

body.lt-theme-light .blog-hero__search .search-field::placeholder{
  color:var(--lt-muted);
}

body.lt-theme-light .search-form--site .search-submit{
  color:#121826;
}

body.lt-theme-light .story-card,
body.lt-theme-light .article,
body.lt-theme-light .widget,
body.lt-theme-light .newsletter-panel{
  background:rgba(255,255,255,.96);
  color:var(--lt-text);
}

body.lt-theme-light .story-card__title a,
body.lt-theme-light .widget-title,
body.lt-theme-light .article-header h1,
body.lt-theme-light .newsletter-panel__copy h2,
body.lt-theme-light .section-heading h2{
  color:var(--lt-text);
}

body.lt-theme-light .story-card__meta,
body.lt-theme-light .story-card__excerpt,
body.lt-theme-light .article-dek,
body.lt-theme-light .article-meta,
body.lt-theme-light .article-content p,
body.lt-theme-light .article-content li,
body.lt-theme-light .widget p,
body.lt-theme-light .newsletter-panel p,
body.lt-theme-light .footer-brand p,
body.lt-theme-light .footer-meta p{
  color:var(--lt-muted);
}

body.lt-theme-light .site-footer{
  background:rgba(255,255,255,.72);
  border-top-color:rgba(111,92,255,.10);
}







/* LearnTPRM premium editorial system */
:root {
  --lt-bg: #070b14;
  --lt-bg-elevated: #0b111d;
  --lt-surface: #0f1726;
  --lt-surface-soft: #121c2d;
  --lt-surface-accent: #172337;
  --lt-text: #f4f1e8;
  --lt-muted: #9aa5b7;
  --lt-accent: #d8ae3f;
  --lt-accent-2: #efca68;
  --lt-accent-3: #725b20;
  --lt-danger: #e06955;
  --lt-success: #58a982;
  --lt-border: rgba(213, 221, 235, .12);
  --lt-border-strong: rgba(216, 174, 63, .38);
  --lt-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  --lt-shadow-soft: 0 14px 34px rgba(0, 0, 0, .20);
  --lt-radius: 6px;
  --lt-radius-sm: 6px;
  --lt-radius-xs: 4px;
  --lt-max: 1260px;
  --lt-content: 760px;
}

html {
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  background: var(--lt-bg);
  color: var(--lt-text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body * {
  letter-spacing: 0 !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 360px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(216, 174, 63, .045), transparent);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

a,
button,
input,
select,
textarea,
summary {
  letter-spacing: 0;
}

a {
  color: inherit;
}

a:hover {
  color: var(--lt-accent-2);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--lt-accent);
  outline-offset: 3px;
}

.lt-wrap {
  width: min(var(--lt-max), calc(100% - 48px));
}

.skip-link:focus,
.screen-reader-text:focus {
  top: 78px;
  left: 18px;
  z-index: 1000;
  border-radius: 4px;
  background: var(--lt-accent);
  color: #11151d;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 64px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--lt-border);
  background: rgba(7, 11, 20, .90);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  width: 100%;
  max-width: 1540px;
  height: 64px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  min-width: 184px;
  margin: 0;
  align-items: center;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-gold {
  color: var(--lt-accent);
}

.brand-white {
  color: #f7f8fb;
}

.brand-text strong sup {
  position: relative;
  top: -.55em;
  margin-left: 1px;
  color: #aeb7c7;
  font-size: 7px;
  font-weight: 800;
}

.brand-dot {
  margin-left: 2px;
  color: #aeb7c7;
  font-size: 11px;
  font-weight: 700;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--lt-accent);
  font-family: Inter, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-list {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
}

.main-nav .nav-list > li {
  position: relative;
  flex: 0 0 auto;
}

.main-nav .nav-list > li > a,
.nav-dropdown > summary {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #d6dce8;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker,
.mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.main-nav .nav-list > li > a:hover,
.main-nav .nav-list > li > a.is-current,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.main-nav .nav-list > li > a.is-current {
  box-shadow: inset 0 -2px 0 var(--lt-accent);
}

.main-nav .nav-link--gold {
  color: var(--lt-accent) !important;
  font-weight: 700 !important;
}

.menu-caret {
  margin-left: 4px;
  color: #8994a7;
  font-size: 11px;
  line-height: 1;
}

.mega-menu,
.case-menu {
  position: absolute;
  top: calc(100% + 10px);
  z-index: 120;
  display: grid;
  overflow: auto;
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: #0c1320;
  box-shadow: var(--lt-shadow);
}

.mega-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  width: min(980px, calc(100vw - 40px));
  max-height: calc(100vh - 94px);
  padding: 22px;
  transform: translateX(-50%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.admin-bar .mega-menu {
  top: 104px;
}

.case-menu {
  left: 50%;
  width: 260px;
  padding: 7px;
  transform: translateX(-50%);
  gap: 2px;
}

.case-menu--wide {
  width: 300px;
}

.nav-dropdown--cases[open] > summary {
  padding: 0 12px;
  border-radius: 10px;
  background: #ddad31;
  color: #080c16;
}

.nav-dropdown--cases[open] > summary .menu-caret {
  color: #080c16;
}

.case-menu--studies {
  left: 0;
  width: 320px;
  padding: 12px;
  border-radius: 12px;
  background: #0e1320;
  transform: none;
}

.case-menu.case-menu--studies a {
  min-height: 36px;
  padding: 8px 12px;
  color: #ede9de;
  font-size: 14px;
  line-height: 20px;
}

.mega-title {
  display: block;
  margin: 0 0 7px;
  color: var(--lt-accent);
  font-size: 12px;
  font-weight: 800;
}

.mega-menu a,
.case-menu a {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 36px;
  padding: 8px 9px;
  border-radius: 4px;
  color: #d8deea;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.mega-menu a:hover,
.case-menu a:hover {
  background: var(--lt-surface-accent);
  color: #fff;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.header-action {
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 36px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #f3f5f8;
  box-shadow: none;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.header-action--ghost {
  border-color: transparent;
  background: transparent;
  color: #f3f5f8;
  box-shadow: none;
}

.header-action--ghost:hover,
.header-action--icon:hover {
  border-color: var(--lt-border);
  background: rgba(255, 255, 255, .055);
  color: #fff;
}

.header-action--icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: #f3f5f8;
  font-size: 17px;
  cursor: pointer;
}

.header-action--accent {
  min-height: 38px;
  margin-left: 2px;
  padding: 0 13px;
  background: linear-gradient(135deg, #efca68, #d1a334);
  color: #11151d;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(216, 174, 63, .16);
}

.header-action--accent:hover {
  color: #11151d;
  filter: brightness(1.05);
}

.mobile-nav {
  display: none;
}

/* Main publication */
.main {
  min-height: 70vh;
  padding: 112px 0 72px;
}

.main--blog {
  padding-top: 64px;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--lt-border);
  background: #0a101b;
}

.blog-hero::after {
  content: "LEARNTPRM";
  position: absolute;
  right: max(24px, calc((100vw - var(--lt-max)) / 2));
  bottom: -30px;
  color: rgba(255, 255, 255, .025);
  font-family: Montserrat, sans-serif;
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
  gap: 56px;
  align-items: end;
}

.eyebrow,
.section-label {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--lt-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-hero__title {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
}

.blog-hero__title span {
  color: var(--lt-accent);
}

.blog-hero__dek {
  max-width: 660px;
  margin: 18px 0 0;
  color: #b1bac9;
  font-size: 17px;
  line-height: 1.65;
}

.blog-hero__search {
  padding: 0;
}

.blog-hero__search .search-form,
.search-form {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
}

.search-form--site .search-field,
.search-form--site .search-submit,
.search-form .search-field,
.search-form .search-submit {
  height: 48px;
  min-height: 48px;
  border-radius: 4px;
}

.search-form--site .search-field,
.search-form .search-field {
  width: 100%;
  min-width: 0;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #0f1726;
  color: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}

.search-form--site .search-field::placeholder,
.search-form .search-field::placeholder {
  color: #7f8a9d;
}

.search-form--site .search-submit,
.search-form .search-submit {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 0 18px;
  border: 1px solid var(--lt-accent);
  background: var(--lt-accent);
  color: #12161e;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.search-form--site .search-submit:hover,
.search-form .search-submit:hover {
  border-color: var(--lt-accent-2);
  background: var(--lt-accent-2);
}

.topic-nav {
  border-bottom: 1px solid var(--lt-border);
  background: rgba(11, 17, 29, .88);
}

.topic-nav__inner {
  display: flex;
  min-height: 54px;
  overflow-x: auto;
  align-items: center;
  gap: 4px;
  scrollbar-width: none;
}

.topic-nav__inner::-webkit-scrollbar {
  display: none;
}

.topic-nav__inner > span {
  margin-right: 12px;
  color: #758196;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-nav a {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  border-radius: 4px;
  color: #b7c0cf;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.topic-nav a:hover,
.topic-nav a.is-active {
  background: var(--lt-surface-accent);
  color: #fff;
}

.section-shell {
  padding: 48px 0 0;
}

.section-shell--feed {
  padding-top: 48px;
}

.feed-heading {
  display: grid;
  margin: 0 0 24px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--lt-border);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: end;
}

.feed-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.feed-heading p {
  margin: 0;
  color: var(--lt-muted);
  font-size: 14px;
  line-height: 1.55;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.post-grid > .story-card {
  grid-column: span 4;
}

.post-grid > .story-card:first-child {
  grid-column: span 8;
}

.story-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: var(--lt-surface);
  color: #fff;
  box-shadow: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  align-self: start;
}

.story-card:hover {
  border-color: var(--lt-border-strong);
  box-shadow: var(--lt-shadow-soft);
  transform: translateY(-2px);
}

.story-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: #111a28;
}

.post-grid > .story-card:first-child .story-card__media {
  aspect-ratio: 16 / 7.65;
}

.story-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--lt-border);
  background: linear-gradient(180deg, transparent 70%, rgba(7, 11, 20, .18));
  pointer-events: none;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.story-card:hover .story-card__media img {
  transform: scale(1.025);
}

.story-card__body {
  display: flex;
  height: auto;
  padding: 20px;
  flex-direction: column;
}

.story-card__kicker {
  display: flex;
  margin: 0 0 10px;
  align-items: center;
  gap: 7px;
}

.story-card__kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--lt-accent);
}

.story-card__kicker a {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--lt-accent);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-breach-alerts .story-card__kicker::before,
.category-breach-news .story-card__kicker::before {
  background: var(--lt-danger);
}

.category-breach-alerts .story-card__kicker a,
.category-breach-news .story-card__kicker a {
  color: #ef8c78;
}

.story-card__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.post-grid > .story-card:first-child .story-card__title {
  max-width: 28ch;
  font-size: 29px;
  line-height: 1.2;
}

.story-card__title a {
  color: #fff;
}

.story-card__title a:hover {
  color: var(--lt-accent-2);
}

.story-card__meta {
  display: flex;
  margin: 0 0 12px;
  flex-wrap: wrap;
  gap: 10px;
  color: #7f8a9e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.story-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #aeb7c6;
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-card__read-more {
  display: inline-flex;
  width: max-content;
  min-height: 36px;
  margin-top: 14px;
  padding: 0;
  align-items: center;
  gap: 7px;
  color: var(--lt-accent-2);
  font-size: 13px;
  font-weight: 750;
  line-height: 20px;
}

.story-card__read-more svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform .18s ease;
}

.story-card__read-more:hover {
  color: #fff;
}

.story-card__read-more:hover svg {
  transform: translateX(3px);
}

.blog-hero__title > span {
  display: block;
}

.pagination {
  display: flex;
  margin: 38px 0 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: var(--lt-surface);
  color: #d4dae5;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

.pagination .current {
  border-color: var(--lt-accent);
  background: var(--lt-accent);
  color: #11151d;
}

.pagination .next,
.pagination .prev {
  min-width: 88px;
}

.publication-cta {
  margin: 56px 0 0;
  padding: 34px 0;
  border-top: 1px solid var(--lt-border);
  border-bottom: 1px solid var(--lt-border);
  background: #0b121f;
}

.publication-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.publication-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.publication-cta p {
  margin: 8px 0 0;
  color: var(--lt-muted);
  font-size: 14px;
}

.publication-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
}

.button--secondary {
  background: transparent;
  color: #fff;
}

.button--primary {
  border-color: var(--lt-accent);
  background: var(--lt-accent);
  color: #11151d;
}

.button:hover {
  border-color: var(--lt-accent-2);
}

.button--primary:hover {
  background: var(--lt-accent-2);
  color: #11151d;
}

/* Articles, archives and search */
.article,
.article--single,
.article--page,
.article--intro,
.sidebar .widget {
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: var(--lt-surface);
  color: #fff;
  box-shadow: none;
}

.article--single {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding: 50px 64px 58px;
}

.article--page,
.article--intro {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding: 42px 54px;
}

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

.article-header h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0;
}

.article-dek {
  margin: 16px 0 0;
  color: #b0bac9;
  font-size: 18px;
  line-height: 1.62;
}

.article-meta {
  display: flex;
  margin: 18px 0 0;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #8792a5;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}

.article-hero {
  overflow: hidden;
  margin: 0 0 34px;
  border: 1px solid var(--lt-border);
  border-radius: 6px;
  background: #111a28;
}

.article-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: #d2d8e2;
  font-size: 17px;
  line-height: 1.78;
}

.article-content > * {
  max-width: 100%;
}

.article-content p,
.article-content li {
  color: #d2d8e2;
}

.article-content h2 {
  margin: 2em 0 .7em;
  color: #fff;
  font-size: 28px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-content h3 {
  margin: 1.7em 0 .6em;
  color: #f0e6c9;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.article-content a {
  color: var(--lt-accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(239, 202, 104, .5);
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25em;
}

.article-content li {
  margin: .45em 0;
  padding-left: .3em;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border: 0;
  border-left: 3px solid var(--lt-accent);
  background: #121c2d;
  color: #dce2eb;
}

.article-content table {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  color: #d9dee8;
}

.article-content th,
.article-content td {
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid var(--lt-border);
  vertical-align: top;
}

.article-content th {
  background: var(--lt-surface-soft);
  color: #fff;
  text-align: left;
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.article-content code,
.article-content pre {
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: #0a111c;
  color: #e2e7ef;
}

.article-content pre {
  padding: 18px;
}

.article-content .wp-block-image,
.article-content figure {
  margin: 30px 0;
}

.article-content .wp-block-image img,
.article-content figure img,
.wp-block-image img {
  border-radius: 6px;
}

.post-nav,
.related-posts,
.comments-panel {
  width: min(900px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.post-nav {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.post-nav a {
  display: block;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: var(--lt-surface);
  color: var(--lt-accent-2);
  font-size: 13px;
  font-weight: 700;
}

.post-nav a:hover {
  border-color: var(--lt-border-strong);
}

.related-posts {
  margin-top: 42px;
}

.related-posts .section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  color: #fff;
  font-size: 25px;
  letter-spacing: 0;
}

.content-grid {
  gap: 24px;
}

.sidebar {
  top: 88px;
}

.widget-title {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0;
}

.topic-list a,
.mini-story,
.comment-body {
  border-color: var(--lt-border);
  border-radius: 4px;
  background: var(--lt-surface-soft);
  color: #d9dee8;
}

.archive-header,
.search-header {
  margin-bottom: 26px;
}

/* Footer */
.site-footer {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--lt-border);
  background: #080d16;
  color: #c5cbd6;
}

.footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  padding: 0 0 38px;
  grid-template-columns: 1.18fr .92fr .78fr 1.12fr;
  gap: 46px;
  align-items: start;
}

.brand--footer {
  min-width: 0;
  margin: 0 0 18px;
}

.brand--footer .brand-text strong {
  font-size: 21px;
}

.brand--footer .brand-text small {
  font-size: 9.5px;
}

.footer-brand p {
  max-width: 36ch;
  margin: 0;
  color: #8f9aad;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: #f5f6f8;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.footer-links a {
  color: #969fb0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--lt-accent-2);
}

.footer-contact__form {
  display: grid;
  gap: 8px;
}

.footer-contact select,
.footer-contact textarea,
.footer-contact input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--lt-border);
  border-radius: 4px;
  background: #0d1522;
  color: #dce1e9;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
}

.footer-contact textarea {
  min-height: 68px;
  resize: vertical;
}

.footer-contact__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 8px;
}

.footer-contact__check {
  display: grid;
  grid-template-columns: auto 48px;
  align-items: center;
  gap: 8px;
  color: #9ba5b6;
  font-size: 11px;
}

.footer-contact__check input {
  min-height: 36px;
  text-align: center;
}

.footer-contact button {
  min-height: 38px;
  border: 1px solid var(--lt-accent);
  border-radius: 4px;
  background: var(--lt-accent);
  color: #11151d;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.footer-contact button:hover {
  background: var(--lt-accent-2);
}

.footer-legal {
  display: grid;
  padding-top: 24px;
  border-top: 1px solid var(--lt-border);
  grid-template-columns: auto minmax(280px, 1fr);
  gap: 12px 30px;
  align-items: center;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a,
.footer-legal p {
  color: #7f899a;
  font-size: 11.5px;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0;
  text-align: right;
}

.footer-legal a:hover {
  color: var(--lt-accent-2);
}

.footer-keywords {
  grid-column: 1 / -1;
  text-align: center !important;
}

/* Light theme */
body.lt-theme-light {
  --lt-bg: #f6f7f9;
  --lt-bg-elevated: #eef1f5;
  --lt-surface: #fff;
  --lt-surface-soft: #f1f3f6;
  --lt-surface-accent: #e8ecf2;
  --lt-text: #121722;
  --lt-muted: #606b7c;
  --lt-border: rgba(25, 35, 52, .14);
  background: var(--lt-bg);
  color: var(--lt-text);
}

body.lt-theme-light::before {
  display: none;
}

body.lt-theme-light .site-header {
  border-bottom-color: var(--lt-border);
  background: rgba(255, 255, 255, .92);
}

body.lt-theme-light .brand-white,
body.lt-theme-light .main-nav .nav-list > li > a,
body.lt-theme-light .nav-dropdown > summary,
body.lt-theme-light .header-action,
body.lt-theme-light .feed-heading h2,
body.lt-theme-light .story-card__title,
body.lt-theme-light .story-card__title a,
body.lt-theme-light .article-header h1,
body.lt-theme-light .article-content h2,
body.lt-theme-light .article-content h3,
body.lt-theme-light .section-heading h2,
body.lt-theme-light .publication-cta h2 {
  color: #171d28;
}

body.lt-theme-light .main-nav .nav-list > li > a:hover,
body.lt-theme-light .main-nav .nav-list > li > a.is-current,
body.lt-theme-light .nav-dropdown > summary:hover,
body.lt-theme-light .nav-dropdown[open] > summary,
body.lt-theme-light .header-action--ghost:hover,
body.lt-theme-light .header-action--icon:hover {
  background: #edf0f4;
}

body.lt-theme-light .blog-hero,
body.lt-theme-light .publication-cta {
  background: #eef1f5;
}

body.lt-theme-light .blog-hero__title,
body.lt-theme-light .publication-cta h2 {
  color: #121722;
}

body.lt-theme-light .blog-hero__dek,
body.lt-theme-light .feed-heading p,
body.lt-theme-light .story-card__excerpt,
body.lt-theme-light .article-dek,
body.lt-theme-light .article-content p,
body.lt-theme-light .article-content li {
  color: #536074;
}

body.lt-theme-light .blog-hero::after {
  color: rgba(18, 23, 34, .035);
}

body.lt-theme-light .search-form--site .search-field,
body.lt-theme-light .search-form .search-field {
  border-color: var(--lt-border);
  background: #fff;
  color: #171d28;
}

body.lt-theme-light .topic-nav {
  background: rgba(255, 255, 255, .92);
}

body.lt-theme-light .topic-nav a {
  color: #536074;
}

body.lt-theme-light .story-card,
body.lt-theme-light .article,
body.lt-theme-light .article--single,
body.lt-theme-light .article--page,
body.lt-theme-light .article--intro,
body.lt-theme-light .sidebar .widget,
body.lt-theme-light .post-nav a,
body.lt-theme-light .pagination .page-numbers {
  background: #fff;
}

body.lt-theme-light .article-content {
  color: #303a49;
}

/* Responsive */
@media (max-width: 1450px) {
  .header-inner {
    padding: 0 16px;
    gap: 8px;
  }

  .brand {
    min-width: 172px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .main-nav .nav-list > li > a,
  .nav-dropdown > summary,
  .header-action {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 10.8px;
  }

  .header-action--verify {
    display: none;
  }
}

@media (max-width: 1280px) {
  .header-action--signin {
    display: none;
  }

  .nav-item--templates summary {
    max-width: 126px;
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .mobile-nav > summary {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--lt-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav__icon {
    display: grid;
    width: 18px;
    gap: 4px;
  }

  .mobile-nav__icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-nav__panel {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 125;
    display: grid;
    max-height: calc(100vh - 64px);
    overflow: auto;
    padding: 14px max(24px, calc((100vw - 760px) / 2)) 20px;
    border-bottom: 1px solid var(--lt-border);
    background: rgba(8, 13, 22, .98);
    box-shadow: var(--lt-shadow);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .admin-bar .mobile-nav__panel {
    top: 96px;
    max-height: calc(100vh - 96px);
  }

  .mobile-nav__panel a {
    display: flex;
    min-height: 44px;
    padding: 0 12px;
    align-items: center;
    border-radius: 4px;
    color: #dce1e9;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-nav__panel a:hover,
  .mobile-nav__panel a[aria-current="page"] {
    background: var(--lt-surface-accent);
    color: #fff;
  }

  .header-actions {
    order: 3;
  }

  body.lt-theme-light .mobile-nav > summary {
    background: #f0f2f5;
    color: #171d28;
  }

  body.lt-theme-light .mobile-nav__panel {
    background: rgba(255, 255, 255, .98);
  }

  body.lt-theme-light .mobile-nav__panel a {
    color: #303a49;
  }

  .blog-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lt-wrap,
  .footer-inner {
    width: min(100% - 36px, var(--lt-max));
  }

  .blog-hero {
    padding: 48px 0 38px;
  }

  .blog-hero__inner,
  .feed-heading,
  .publication-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-hero__title {
    font-size: 40px;
  }

  .blog-hero__search {
    max-width: 560px;
  }

  .post-grid > .story-card,
  .post-grid > .story-card:first-child {
    grid-column: span 6;
  }

  .post-grid > .story-card:first-child .story-card__media {
    aspect-ratio: 16 / 9;
  }

  .post-grid > .story-card:first-child .story-card__title {
    font-size: 22px;
  }

  .publication-cta__actions {
    justify-content: flex-start;
  }

  .article--single,
  .article--page,
  .article--intro,
  .post-nav,
  .related-posts,
  .comments-panel {
    width: min(100% - 36px, 900px);
  }

  .article--single {
    padding: 38px 38px 46px;
  }

  .article-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .mobile-nav__panel {
    top: 110px;
    max-height: calc(100vh - 110px);
  }
}

@media (max-width: 680px) {
  .site-header,
  .header-inner {
    height: 60px;
    min-height: 60px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    display: none;
  }

  .header-action--icon {
    display: none;
  }

  .header-action--accent {
    min-height: 40px;
    padding: 0 11px;
    font-size: 12px;
  }

  .mobile-nav > summary {
    width: 42px;
    height: 42px;
  }

  .mobile-nav__panel,
  .admin-bar .mobile-nav__panel {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 12px 14px 18px;
    grid-template-columns: 1fr;
  }

  .admin-bar .mobile-nav__panel {
    top: 106px;
    max-height: calc(100vh - 106px);
  }

  .main--blog {
    padding-top: 60px;
  }

  .main {
    padding-top: 92px;
  }

  .main--blog {
    padding-top: 60px;
  }

  .lt-wrap,
  .footer-inner {
    width: min(100% - 28px, var(--lt-max));
  }

  .blog-hero {
    padding: 38px 0 32px;
  }

  .blog-hero::after {
    display: none;
  }

  .blog-hero__title {
    font-size: 34px;
    line-height: 1.12;
  }

  .blog-hero__dek {
    margin-top: 14px;
    font-size: 15px;
  }

  .blog-hero__search .search-form,
  .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 7px;
  }

  .search-form--site .search-submit,
  .search-form .search-submit {
    min-width: 0;
    padding: 0 10px;
  }

  .topic-nav__inner {
    min-height: 50px;
  }

  .topic-nav__inner > span {
    display: none;
  }

  .section-shell--feed {
    padding-top: 34px;
  }

  .feed-heading {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .feed-heading h2 {
    font-size: 24px;
  }

  .feed-heading p {
    display: none;
  }

  .post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .post-grid > .story-card,
  .post-grid > .story-card:first-child {
    grid-column: 1;
  }

  .story-card__body {
    padding: 17px;
  }

  .story-card__title,
  .post-grid > .story-card:first-child .story-card__title {
    font-size: 20px;
  }

  .story-card__excerpt {
    font-size: 13.5px;
    -webkit-line-clamp: 2;
  }

  .publication-cta {
    margin-top: 40px;
  }

  .publication-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .article--single,
  .article--page,
  .article--intro,
  .post-nav,
  .related-posts,
  .comments-panel {
    width: min(100% - 28px, 900px);
  }

  .article--single,
  .article--page,
  .article--intro {
    padding: 26px 20px 34px;
  }

  .article-header h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .article-dek {
    font-size: 16px;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.72;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding-top: 38px;
  }

  .footer-grid {
    padding-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 44ch;
  }

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

  .footer-legal p,
  .footer-keywords {
    text-align: left !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Exact LearnTPRM navigation replica */
.site-header {
  height: 65px;
  border: 1px solid rgba(34, 41, 57, .5);
  border-width: 0 0 1px;
  background: rgba(14, 19, 32, .8);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: 100%;
  max-width: none;
  height: 64px;
  min-height: 64px;
  padding: 0 40px;
  gap: 0;
}

.brand {
  display: flex;
  width: auto;
  min-width: 0;
  height: 41px;
  margin: 0 16px 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  color: #ede9de;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.brand-title {
  display: block;
  height: 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
}

.brand-title sup {
  position: static;
  margin: 0;
  color: #8f98aa;
  font-size: 8px;
  font-weight: 700;
  vertical-align: super;
}

.brand-dot {
  margin-left: 2px;
  color: #8f98aa;
  font-size: 12px;
  font-weight: 700;
}

.brand-tagline {
  display: block;
  color: #ddad31;
  font-size: 10px;
  font-weight: 600;
  line-height: 12.5px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
}

.main-nav .nav-list > li {
  position: relative;
}

.main-nav .nav-list > li > a,
.nav-dropdown > summary {
  display: inline-flex;
  width: auto;
  max-width: none;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ede9de;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.main-nav .nav-list > li > a:hover,
.nav-dropdown > summary:hover {
  background: #182132;
  color: #ede9de;
}

.main-nav .nav-list > li > a[aria-current="page"] {
  background: transparent;
  box-shadow: none;
  color: #ede9de;
}

.main-nav .nav-link--gold {
  background-image: linear-gradient(135deg, #ddad31, #edc55e);
  background-clip: text;
  color: #ddad31 !important;
  font-weight: 600 !important;
}

.nav-dropdown > summary {
  cursor: default;
}

.nav-dropdown[open] > summary {
  padding: 0 12px;
  border-radius: 10px;
  background: #ddad31;
  color: #080c16;
}

.menu-chevron {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform .2s ease;
}

.nav-dropdown[open] .menu-chevron {
  transform: rotate(180deg);
}

.mega-menu,
.case-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 150;
  overflow: visible;
  transform: translateX(-50%);
  border: 1px solid #222939;
  border-radius: 12px;
  background: #0e1320;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: block;
  width: 1100px;
  max-height: none;
  padding: 24px;
  transform: translateX(-50%);
  columns: 4;
  column-gap: 24px;
}

.mega-group {
  margin: 0 0 16px;
  break-inside: avoid;
}

.mega-title {
  display: block;
  margin: 0 0 8px;
  color: #ddad31;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.mega-menu a {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 4px;
  color: #ede9de;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  white-space: normal;
}

.mega-menu a:hover,
.case-menu a:hover {
  background: #182132;
  color: #ede9de;
}

.case-menu {
  display: block;
  padding: 12px;
}

.case-menu--studies {
  left: 50%;
  width: 320px;
  transform: translateX(-50%);
}

.case-menu--templates {
  width: 340px;
}

.case-menu a,
.case-menu.case-menu--studies a,
.case-menu.case-menu--templates a {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 4px;
  color: #ede9de;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  white-space: normal;
}

.header-actions {
  display: flex;
  width: auto;
  min-width: 0;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-action,
.header-action--ghost {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ede9de;
  box-shadow: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.header-action:hover {
  background: #182132;
  color: #ede9de;
}

.header-action--verify {
  font-weight: 700;
}

.header-action--icon {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 10px;
}

.header-action--icon svg {
  width: 16px;
  height: 16px;
}

.header-action--accent {
  height: 36px;
  min-height: 36px;
  margin: 0;
  padding: 0 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ddad31, #edc55e);
  color: #080c16;
  font-weight: 600;
  box-shadow: none;
}

.header-action--accent:hover {
  background: linear-gradient(135deg, #e2b43a, #f1cc69);
  color: #080c16;
  filter: none;
}

.mobile-nav {
  display: none;
}

body.lt-theme-light .site-header {
  border-bottom-color: rgba(209, 213, 219, .7);
  background: rgba(255, 255, 255, .84);
}

body.lt-theme-light .brand-white,
body.lt-theme-light .main-nav .nav-list > li > a,
body.lt-theme-light .nav-dropdown > summary,
body.lt-theme-light .header-action {
  color: #151923;
}

body.lt-theme-light .nav-dropdown[open] > summary,
body.lt-theme-light .header-action--accent {
  color: #080c16;
}

@media (min-width: 1691px) and (max-width: 1799px) {
  .main-nav .nav-list {
    gap: 2px;
  }

  .main-nav .nav-list > li > a,
  .nav-dropdown > summary {
    padding-right: 9px;
    padding-left: 9px;
  }

  .nav-dropdown--knowledge .mega-menu {
    left: calc(50% + 54px);
  }
}

@media (max-width: 1690px) {
  .header-inner {
    padding: 0 24px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .mobile-nav > summary {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 8px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ede9de;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav > summary:hover {
    background: transparent;
  }

  .mobile-nav > summary svg {
    width: 24px;
    height: 24px;
  }

  .mobile-nav__close {
    display: none;
  }

  .mobile-nav[open] .mobile-nav__open {
    display: none;
  }

  .mobile-nav[open] .mobile-nav__close {
    display: block;
  }

  .mobile-nav__panel {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 140;
    display: block;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    border: 1px solid rgba(34, 41, 57, .5);
    border-width: 1px 0 0;
    background: rgba(14, 19, 32, .96);
    box-shadow: none;
    backdrop-filter: blur(16px);
  }

  .admin-bar .mobile-nav__panel {
    top: 104px;
    max-height: calc(80vh - 32px);
  }

  .mobile-nav__inner {
    display: flex;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav__primary,
  .mobile-nav__heading {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #ede9de;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .mobile-nav__link {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 10px 24px;
    border-radius: 12px;
    color: #ede9de;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .mobile-nav__panel .mobile-nav__link {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 10px 24px;
    border-radius: 12px;
    background: transparent;
    color: #ede9de;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .mobile-nav__panel .mobile-nav__primary,
  .mobile-nav__panel .mobile-nav__heading {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    color: #ede9de;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .mobile-nav__panel .mobile-nav__link--gold {
    color: #ddad31;
    font-weight: 600;
  }

  .mobile-nav__panel .mobile-nav__link--strong {
    font-weight: 600;
  }

  .mobile-nav__link:hover,
  .mobile-nav__primary:hover {
    background: #182132;
    color: #ede9de;
  }

  .mobile-nav__link--gold {
    color: #ddad31;
    font-weight: 600;
  }

  .mobile-nav__link--strong {
    font-weight: 600;
  }

  .mobile-nav__group {
    display: block;
  }

  .mobile-nav__theme {
    display: flex;
    width: 100%;
    min-height: 40px;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #ede9de;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
  }

  .mobile-nav__actions {
    display: grid;
    padding-top: 4px;
    gap: 4px;
  }

  .mobile-nav__button {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
  }

  .mobile-nav__button--secondary {
    border: 1px solid rgba(221, 173, 49, .3);
    background: #080c16;
    color: #ddad31;
    font-weight: 500;
  }

  .mobile-nav__button--primary {
    border: 0;
    background: linear-gradient(135deg, #ddad31, #edc55e);
    color: #080c16;
    font-weight: 600;
  }

  body.lt-theme-light .mobile-nav > summary,
  body.lt-theme-light .mobile-nav__primary,
  body.lt-theme-light .mobile-nav__heading,
  body.lt-theme-light .mobile-nav__link,
  body.lt-theme-light .mobile-nav__theme {
    color: #151923;
  }

  body.lt-theme-light .mobile-nav__panel {
    border-top-color: rgba(209, 213, 219, .7);
    background: rgba(255, 255, 255, .97);
  }
}

@media (max-width: 1023px) {
  .brand-tagline {
    display: none;
  }

  .brand {
    height: 28px;
  }
}

@media (max-width: 782px) {
  .admin-bar .mobile-nav__panel {
    top: 118px;
    max-height: calc(80vh - 46px);
  }
}

@media (max-width: 680px) {
  .site-header,
  .header-inner {
    height: 65px;
    min-height: 64px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .brand-title {
    font-size: 20px;
    line-height: 28px;
  }

  .main--blog {
    padding-top: 65px;
  }

  .main {
    padding-top: 97px;
  }

  .main--blog {
    padding-top: 65px;
  }
}
