:root {
  --blue: #0052ff;
  --blue-light: #3a75ff;
  --blue-dark: #0038cc;
  --blue-faint: #eef3ff;
  --blue-mid: #dce8ff;
  --bg: #f8f9fc;
  --white: #ffffff;
  --dark: #080d1a;
  --dark-2: #111827;
  --text: #1c2333;
  --text-mid: #4a5568;
  --text-light: #8c9ab0;
  --border: #e4e9f2;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 10px rgba(8, 13, 26, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 52, 255, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 52, 255, 0.13);
  --shadow-cta: 0 12px 40px rgba(0, 52, 255, 0.35);
  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
::selection {
  background: var(--blue);
  color: #fff;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ---- PROGRESS ---- */
#pbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0052ff, #5b8fff);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- HERO ---- */
.hero {
  padding-top: 40px ;
  padding-bottom: 2.5rem;
  background: linear-gradient(165deg, #edf1ff 0%, #f8f9fc 55%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 52, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-faint);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.cat-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.post-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
  letter-spacing: 0.01em;
  max-width: 820px;
  margin-bottom: 1.8rem;
}
.post-title em {
  font-style: normal;
  color: var(--blue);
  font-weight: 900;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #5b8fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 52, 255, 0.28);
  flex-shrink: 0;
}

.author-txt {
  display: flex;
  flex-direction: column;
}
.aname {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--t);
}
.aname:hover {
  color: var(--blue);
}
.arole {
  font-size: 0.74rem;
  letter-spacing:0px;
  color: var(--text-light);
}
.mdiv {
  width: 1px;
  height: 22px;
  background: var(--border);
}
.mi {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.8rem;
  letter-spacing:0px;
  color: var(--text-light);
}
.mi svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ---- LAYOUT ---- */
.post-body {
  padding: 3rem 0 4rem;
}
.layout {
  display: grid;
  grid-template-columns: 1fr 292px;
  gap: 3.5rem;
  align-items: start;
}

/* ---- ARTICLE ---- */
.post-article {
  min-width: 0;
}

/* Featured visual */
figure.fimg {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.8rem;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(135deg, #060e24 0%, #0a1a52 45%, #0d2272 80%, #0052ff 100%);
}
.fimg-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}
.fgfx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(460px, 88%);
}
.fcard {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.9rem 0.7rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background var(--t);
}
.fcard:hover {
  background: rgba(255, 255, 255, 0.12);
}
.fnum {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.28rem;
  letter-spacing: 0.01em;
}
.fnum span {
  color: #7aaeff;
}
.flbl {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fbadge {
  background: rgba(0, 52, 255, 0.35);
  border: 1px solid rgba(0, 82, 255, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
figcaption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.7rem;
  font-style: italic;
}
/* Article typography (SENİN KODUN - DOKUNULMADI) */
.post-article p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.82;
  font-weight: 400;
}
.post-article strong {
  color: var(--dark);
  font-weight: 600;
}
.post-article em {
  color: var(--blue-dark);
  font-style: italic;
}

.post-article h2 {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin: 3rem 0 1.1rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  scroll-margin-top: 96px;
  position: relative;
  padding-left: 1.1rem;
}
.post-article h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5px;
  height: 68%;
  background: var(--blue);
  border-radius: 2px;
}
.post-article h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  scroll-margin-top: 96px;
}

.post-article ul {
  list-style: none;
  margin: 0.8rem 0 1.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.post-article ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--blue-faint);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  font-size: 0.96rem;
  line-height: 1.62;
  transition:
    background var(--t),
    transform var(--t);
}
.post-article ul li:hover {
  background: #d8e5ff;
  transform: translateX(3px);
}
.post-article ul li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.06rem;
}

.post-article code {
  background: var(--blue-faint);
  color: var(--blue-dark);
  padding: 0.1em 0.4em;
  border-radius: 5px;
  font-size: 0.86em;
  font-family: 'Courier New', monospace;
  border: 1px solid var(--blue-mid);
}

/* ════════════════════════════════════════════════════════
   EKSİK OLAN ALANLAR (BURADAN İTİBAREN EKLENDİ)
════════════════════════════════════════════════════════ */

/* --- DİĞER BAŞLIKLAR (H1, H4, H5, H6) --- */
.post-article h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin: 1rem 0 2.5rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}
.post-article h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.8rem 0 0.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.post-article h5 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
}
.post-article h6 {
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 1.5rem 0 0.5rem;
}

/* --- LİNKLER (A) --- */
.post-article a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--blue-mid);
  transition: all var(--t) var(--ease);
}
.post-article a:hover {
  color: var(--blue-dark);
  border-bottom-color: var(--blue-dark);
  background: var(--blue-faint);
}

/* --- SIRALI LİSTE (OL) - Senin UL yapına uygun tasarlandı --- */
.post-article ol {
  list-style: none;
  counter-reset: custom-counter;
  margin: 0.8rem 0 1.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.post-article ol li {
  counter-increment: custom-counter;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.96rem;
  line-height: 1.62;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}
.post-article ol li:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.post-article ol li::before {
  content: counter(custom-counter) '.';
  color: var(--blue);
  font-weight: 800;
  font-family: var(--font-h);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

/* --- ALINTI (BLOCKQUOTE) - Tavsiye/Önemli Not Kutusu --- */
.post-article blockquote {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem 1.8rem 3rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
}
.post-article blockquote p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.05rem;
}
.post-article blockquote::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.4;
  font-family: serif;
  line-height: 1;
}

/* --- PRE (Kod Blokları / Yazılım Makaleleri İçin) --- */
.post-article pre {
  background: var(--dark-2);
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 2rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Pre içindeki code etiketini sıfırlıyoruz ki senin normal code stiline girmesin */
.post-article pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}

/* --- MEDYA ELEMANLARI (Görsel, Video, Iframe) --- */
.post-article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2.5rem auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.post-article figure {
  margin: 0 0 2rem 0;
  text-align: center;
}
.post-article figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}
.post-article iframe,
.post-article video,
.post-article .ql-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

/* --- TABLOLAR --- */
.post-article .table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}
.post-article table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.post-article th,
.post-article td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.post-article th {
  background: var(--blue-faint);
  color: var(--blue-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.post-article tr:last-child td {
  border-bottom: none;
}

/* --- AYIRICI (HR) --- */
.post-article hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3.5rem 0;
}

/* Info box */
.info-box {
  background: var(--blue-faint);
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
  margin: 1.8rem 0;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.ib-icon {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ib-icon svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}
.info-box p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--dark);
}

/* Blockquote */
blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2.2rem 2.2rem 2.2rem 2.8rem;
  background: linear-gradient(130deg, #eff3ff 0%, #e8f0ff 100%);
  border-left: 5px solid var(--blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 5.5rem;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}
blockquote p {
  font-family: var(--font-h);
  font-size: 1.35rem !important;
  font-weight: 700;
  line-height: 1.4 !important;
  color: var(--dark) !important;
  margin-bottom: 0.9rem !important;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
blockquote cite {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: normal;
  font-weight: 500;
}
blockquote cite::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2.2rem 0;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.snum {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.38rem;
  letter-spacing: 0.01em;
}
.slbl {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ---- INLINE CTA CARDS (multiple placements) ---- */

/* Mid-article floating CTA — compact */
.cta-inline-compact {
  margin: 2.5rem 0;
  background: linear-gradient(120deg, #060f28 0%, #0d1f5c 50%, #0a186b 100%);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 12px 48px rgba(0, 52, 255, 0.22);
  position: relative;
  overflow: hidden;
}
.cta-inline-compact::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-ic-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 82, 255, 0.4);
  border: 1px solid rgba(0, 82, 255, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-ic-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.cta-ic-text {
  flex: 1;
  min-width: 0;
}
.cta-ic-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cta-ic-text span {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}
.cta-ic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 6px 22px rgba(0, 52, 255, 0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-ic-btn:hover {
  background: #1a6aff;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 52, 255, 0.5);
}
.cta-ic-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Trust strip inside article */
.trust-strip {
  margin: 2.2rem 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.trust-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  flex: 1;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: var(--blue);
}
.trust-cta-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.83rem;
  text-decoration: none;
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  padding: 0.4rem 0.95rem;
  transition:
    background var(--t),
    color var(--t);
  white-space: nowrap;
}
.trust-cta-link:hover {
  background: var(--blue);
  color: #fff;
}

/* Tip CTA card (after strategy sections) */
.cta-tip {
  margin: 2rem 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.cta-tip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #5b8fff);
}
.cta-tip-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.cta-tip-icon {
  width: 34px;
  height: 34px;
  background: var(--blue-faint);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-tip-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.cta-tip-head strong {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cta-tip p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 1.1rem;
}
.cta-tip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-tip-results {
  display: flex;
  gap: 1.2rem;
}
.cta-tip-result {
  text-align: center;
}
.ctr-num {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.01em;
}
.ctr-lbl {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cta-tip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.62rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 5px 18px rgba(0, 52, 255, 0.3);
}
.cta-tip-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}
.cta-tip-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ---- AUTHOR BOX ---- */
.author-box {
  margin-top: 3.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.ab-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #5b8fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  color: #fff;
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 52, 255, 0.28);
}
.ab-info h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ab-badge {
  display: inline-block;
  background: var(--blue-faint);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}
.ab-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* Tags */
.post-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.tags-lbl {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.tag {
  background: var(--bg);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.32rem 0.85rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.tag:hover {
  background: var(--blue-faint);
  color: var(--blue);
  border-color: var(--blue);
}

/* ---- BOTTOM ARTICLE CTA ---- */
.cta-bottom-article {
  margin: 2.8rem 0 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cta-bottom-article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.025) 0%, transparent 55%);
  pointer-events: none;
}
.cba-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--blue-faint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
}
.cba-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}
.cba-title {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}
.cba-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 1.5rem;
}
.cba-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.cba-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}
.cba-trust-item svg {
  width: 14px;
  height: 14px;
  fill: #22c55e;
  flex-shrink: 0;
}
.cba-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: var(--shadow-cta);
}
.cba-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 52, 255, 0.4);
}
.cba-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.cba-note {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.9rem;
}

/* ---- SIDEBAR ---- */
aside {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.toc-card,
.share-card,
.sidebar-cta-card,
.rp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card-head {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.card-head svg {
  width: 13px;
  height: 13px;
  fill: var(--blue);
}

/* TOC */
.toc-list {
  list-style: none;
}
.toc-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.4;
  transition:
    background var(--t),
    color var(--t);
  border-left: 2px solid transparent;
}
.toc-list a .tn {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  background: var(--bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--text-light);
  transition:
    background var(--t),
    color var(--t);
}
.toc-list a:hover,
.toc-list a.active {
  background: var(--blue-faint);
  color: var(--blue);
  border-left-color: var(--blue);
}
.toc-list a:hover .tn,
.toc-list a.active .tn {
  background: var(--blue);
  color: #fff;
}

/* Reading progress */
.rp-card {
  background: var(--blue);
}
.rp-lbl {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}
.rp-bar-bg {
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.rp-bar-fill {
  height: 100%;
  background: #fff;
  border-radius: 3px;
  width: 0%;
  transition: width 0.15s linear;
}
.rp-pct {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Sidebar CTA */
.sidebar-cta-card {
  background: linear-gradient(145deg, #050d24 0%, #0a1848 55%, #0d2272 100%) !important;
  border: 1px solid rgba(0, 82, 255, 0.3) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.scta-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 82, 255, 0.35);
  border: 1px solid rgba(0, 82, 255, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  position: relative;
  z-index: 1;
}
.scta-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.scta-title {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.scta-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.scta-results {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.scta-r {
  text-align: center;
}
.scta-rn {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}
.scta-rl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.scta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  border: 0;
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.72rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 6px 22px rgba(0, 52, 255, 0.45);
  position: relative;
  z-index: 1;
}
.scta-btn:hover {
  background: #1a6aff;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 52, 255, 0.5);
}
.scta-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.scta-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
}

/* Share */
.share-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sbtn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--t),
    box-shadow var(--t);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
}
.sbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.sbtn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.sbtn.tw {
  background: #000;
  color: #fff;
}
.sbtn.li {
  background: #0077b5;
  color: #fff;
  justify-content: start;
}
.sbtn.wa {
  background: #25d366;
  color: #fff;
}
.sbtn.cp {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

/* Mobile TOC */
.toc-mob {
  display: none;
  margin-bottom: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.toc-mob-toggle {
  width: 100%;
  padding: 0.95rem 1.3rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}
.toc-mob-toggle svg {
  width: 17px;
  height: 17px;
  transition: transform var(--t);
}
.toc-mob.open .toc-mob-toggle svg {
  transform: rotate(180deg);
}
.toc-mob-list {
  display: none;
  padding: 0 1.3rem 1.1rem;
  flex-direction: column;
  gap: 0.3rem;
}
.toc-mob.open .toc-mob-list {
  display: flex;
}
.toc-mob-list a {
  padding: 0.45rem 0.55rem;
  font-size: 0.84rem;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 8px;
  transition:
    background var(--t),
    color var(--t);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.toc-mob-list a:hover {
  background: var(--blue-faint);
  color: var(--blue);
}
.toc-mob-list a .mn {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.77rem;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(120deg, #040c1e 0%, #071030 40%, #0b1a52 70%, #0e2380 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(91, 143, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-text {
  flex: 1;
}
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b8fff;
  margin-bottom: 0.7rem;
}
.cta-heading {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  max-width: 400px;
  margin: 0 0 1.2rem;
}
.cta-trust-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cta-tr-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.cta-tr-item svg {
  width: 14px;
  height: 14px;
  fill: #5b8fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 8px 32px rgba(0, 52, 255, 0.45);
  letter-spacing: -0.01em;
}
.cta-btn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 42px rgba(0, 52, 255, 0.5);
}
.cta-btn svg {
  width: 17px;
  height: 17px;
}

/* ---- RELATED ---- */
.related {
  padding: 5rem 0;
  background: var(--bg);
}
.sec-eye {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}
.sec-title {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pcard {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pthumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ptimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  transition: transform 0.5s;
  line-height: 1.4;
  text-align: center;
  padding: 1rem;
}
.pcard:hover .ptimg {
  transform: scale(1.05);
}
.pt1 {
  background: linear-gradient(135deg, #0a1628 0%, #0052ff 100%);
}
.pt2 {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a4080 100%);
}
.pt3 {
  background: linear-gradient(135deg, #060d20 0%, #003acc 100%);
}
.pcbody {
  padding: 1.4rem;
}
.pcat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.ptitle {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.pfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.pdate {
  font-size: 0.77rem;
  color: var(--text-light);
}
.plink {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t);
}
.plink:hover {
  gap: 0.55rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.fbrand .logo {
  color: #fff;
  margin-bottom: 0.9rem;
  display: inline-flex;
}
.fbrand p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.fsocials {
  display: flex;
  gap: 0.6rem;
}
.sicon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t);
}
.sicon:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.sicon svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.65);
}
.sicon:hover svg {
  fill: #fff;
}
.fcol h4 {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.flinks {
  list-style: none;
}
.flinks li {
  margin-bottom: 0.45rem;
}
.flinks a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  transition: color var(--t);
}
.flinks a:hover {
  color: #fff;
}
.footer-bot {
  max-width: 1180px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.65s ease forwards;
}
.fu1 {
  animation-delay: 0.08s;
  opacity: 0;
}
.fu2 {
  animation-delay: 0.18s;
  opacity: 0;
}
.fu3 {
  animation-delay: 0.28s;
  opacity: 0;
}
.toc-mob.active .toc-mob-list {
  display: flex;
}

.toc-mob.active .toc-mob-toggle svg {
  transform: rotate(180deg);
}

.toc-mob-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
  .rp-card {
    display: none;
  }
  .toc-card {
    display: none;
  }
  .toc-mob {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  nav.main {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-sub {
    max-width: none;
  }
  aside {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .author-box {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  blockquote {
    padding: 1.8rem 1.4rem 1.8rem 2rem;
  }
  .cta-inline-compact {
    flex-direction: column;
    text-align: center;
  }
  .cta-tip-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding-top: 2.5rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-article h2 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .post-article p {
    font-size: 0.9rem;
  }
  .post-article ol li {
    display: block;
  }
  .post-article h3 {
    font-size: 1.2rem;
    margin: 0rem 0 0.75rem;
  }
  .ab-av {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  .ab-info {
    text-align: center;
  }
  .sec-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 480px) {
  .post-meta {
    align-items: flex-start;
    gap: 0.2rem;
  }
  .mdiv {
    display: none;
  }
  .fgfx {
    grid-template-columns: repeat(2, 1fr);
  }
  .fgfx .fcard:last-child {
    display: none;
  }
  .trust-cta-link {
    width: 100%;
    justify-content: center;
  }
}
