/* =========================================
   Blog Article Styles (Dark UI, Accessible)
   Base: #0f172a background, Mulish font
   ========================================= */

:root{
  --bg: #0f172a;

  /* Slightly softer than pure white for long reads on dark bg */
  --text: #e6edf6;
  --text-muted: #b9c6d8;

  /* Brand-ish accents (tweak if you have exact brand accent) */
  --accent: #53EEF8;          /* primary accent */
  --accent-2: #EBFD53;        /* secondary accent */
  --surface: #121c33;         /* card-like surfaces on bg */
  --surface-2: #0b1329;       /* subtle contrast surface */
  --border: rgba(255,255,255,.12);

  /* Focus ring color (high visibility) */
  --focus: #EBFD53;

  /* Link underline */
  --link: #53EEF8;
  --link-hover: #7af4fb;

  /* Typography scale */
  --fs-base: 18px;
  --lh-base: 1.75;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ------------ Article base ------------ */
.blog-article{
  background: var(--bg);
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding: 24px 0 56px;
}

.blog-article body:before {
    background-image: none!important;
}

.blog-article .content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px; 
}

.blog-article .content,
.blog-article .entry-content {
  width: 100%;
}

.blog-article *{
  box-sizing: border-box;
}

.blog-article p{
  margin: 0 0 1.05em;
  color: var(--text);
}

/* Comfortable measure for reading */
.blog-article .content{
  max-width: 760px;
}

/* ------------ Headings (H1/H2/H3) + mobile ------------ */
.blog-article h1,
.blog-article h2,
.blog-article h3{
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 1.2em 0 0.6em;
  scroll-margin-top: 92px; /* if you have sticky header */
}

.blog-article h1{
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 0;
}

.blog-article h2{
  font-size: clamp(22px, 2.4vw, 30px);
  padding-top: .2em;
}

.blog-article h3{
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
}

/* Optional: subtle divider under headings */
.blog-article h2::after{
  content: "";
  display: block;
  margin-top: 10px;
  height: 2px;
  width: 56px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .9;
}

/* H2 */
.blog-article h2{
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #B1ECEF;
  position: relative;
  margin-top: 1.6em;
}


/* H3 */
.blog-article h3{
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: #B1ECEF;
  margin-top: 1.4em;
}

/* ------------ Inline links (underlined, accessible) ------------ */
.blog-article a{
  color: var(--link);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(83,238,248,.65);
  transition: color .15s ease, text-decoration-color .15s ease, background .15s ease;
  border-radius: 6px;
}

.blog-article a:hover{
  color: var(--link-hover);
  text-decoration-color: rgba(83,238,248,.95);
}

.blog-article a:active{
  opacity: .9;
}

/* High-visibility focus for keyboard users */
.blog-article a:focus-visible,
.blog-article button:focus-visible,
.blog-article [role="button"]:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* Keep links readable when they wrap */
.blog-article a{
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ------------ Tables (desktop + mobile) ------------ */
.blog-article .table-wrap{
  margin: 1.2em 0 1.6em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.blog-article table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px; /* enables horizontal scroll on small screens */
}

.blog-article thead th{
  text-align: left;
  font-weight: 800;
  color: var(--text);
  background: rgba(83,238,248,.10);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.blog-article tbody td{
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.blog-article tbody tr:nth-child(even){
  background: rgba(255,255,255,.03);
}

.blog-article tbody tr:hover{
  background: rgba(83,238,248,.06);
}

/* Mobile: horizontal scroll + sticky header feel */
.blog-article .table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blog-article .table-wrap:focus-within{
  outline: 3px solid rgba(235,253,83,.7);
  outline-offset: 3px;
}

/* Optional: add a small hint on mobile */
@media (max-width: 640px){
  .blog-article{
    font-size: 16px;
    line-height: 1.75;
  }

  .blog-article .table-hint{
    display: block;
    margin: 8px 2px 0;
    font-size: 13px;
    color: var(--text-muted);
  }

  .blog-article table{
    min-width: 560px;
  }
}
@media (min-width: 641px){
  .blog-article .table-hint{ display: none; }
}

/* ------------ "Також читайте" block ------------ */
.blog-article .also-read{
  margin: 2.2em 0 1.6em;
  padding: 18px 18px 12px;
  background: linear-gradient(180deg, rgba(83,238,248,.12), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-article .also-read__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-article .also-read__title::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(235,253,83,.18);
}

.blog-article .also-read ul{
  margin: 0;
  padding-left: 1.05em;
}

.blog-article .also-read li{
  margin: 0 0 10px;
  color: var(--text);
}

.blog-article .also-read a{
  font-weight: 700;
}

/* Mobile spacing */
@media (max-width: 640px){
  .blog-article .also-read{
    padding: 16px 14px 10px;
    border-radius: 14px;
  }
}

/* ------------ CTA block (primary) ------------ */
.blog-article .cta{
  margin: 2.4em 0 2em;
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    radial-gradient(1200px 400px at 20% 0%, rgba(83,238,248,.18), transparent 55%),
    radial-gradient(900px 380px at 90% 20%, rgba(235,253,83,.18), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}

.blog-article .cta__title{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 2.2vw, 22px);
}

.blog-article .cta__text{
  margin: 0 0 14px;
  color: var(--text-muted);
  max-width: 60ch;
}

.blog-article .cta__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Primary button */
.blog-article .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none; /* buttons shouldn’t be underlined */
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  min-height: 44px; /* touch target */
}

.blog-article .btn--primary{
  color: #06202a;
  background: linear-gradient(90deg, var(--accent), rgba(83,238,248,.78));
  border-color: rgba(83,238,248,.35);
}

.blog-article .btn--primary:hover{
  filter: brightness(1.05);
}

.blog-article .btn--primary:active{
  transform: translateY(1px);
}

/* Secondary button */
.blog-article .btn--secondary{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.blog-article .btn--secondary:hover{
  background: rgba(255,255,255,.09);
}

/* Ensure focus-visible works for links styled as buttons */
.blog-article .btn:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* Mobile CTA layout */
@media (max-width: 640px){
  .blog-article .cta{
    padding: 16px 14px;
  }
  .blog-article .cta__actions{
    flex-direction: column;
    align-items: stretch;
  }
  .blog-article .btn{
    width: 100%;
  }
}

.single-post::before {
  display: none!important;
}

/* =====================================
   Breadcrumbs (p#breadcrumbs, span-based)
===================================== */

#breadcrumbs{
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 16px 0 24px;
  color: #9fb3c8;
}

/* Зробимо breadcrumbs “рядком”, але з переносами */
#breadcrumbs > span{
  display: inline;
}

/* Внутрішні span — без зайвих стилів */
#breadcrumbs span{
  color: inherit;
}

/* Посилання */
#breadcrumbs a{
  color: #53EEF8;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(83,238,248,.6);
  border-radius: 6px;
  transition: color .15s ease, text-decoration-color .15s ease;
}

#breadcrumbs a:hover{
  color: #7af4fb;
  text-decoration-color: rgba(83,238,248,.95);
}

/* Поточна сторінка */
#breadcrumbs .breadcrumb_last{
  color: #e6edf6;
  font-weight: 600;
}

/* Focus for keyboard */
#breadcrumbs a:focus-visible{
  outline: 3px solid #EBFD53;
  outline-offset: 3px;
}

#breadcrumbs{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 14px;
  border-radius: 12px;
}

@media (max-width: 640px){
  #breadcrumbs{
    font-size: 13px;
    margin: 12px 0 18px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* Archive wrapper */
.blog-archive{
  background: transparent;
  color: #e6edf6;
  padding: 28px 0 64px;
}

.blog-archive .content{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.archive-header{
  margin: 0 0 18px;
}

.archive-title{
  margin: 0 0 8px;
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.4vw, 40px);
}

.archive-subtitle{
  color: #b9c6d8;
  max-width: 70ch;
}

/* Grid */
.post-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 960px){
  .post-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .post-grid{ grid-template-columns: 1fr; }
}

/* Card */
.post-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.post-card__link{
  display: block;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.post-card__title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.post-card__meta{
  font-size: 13px;
  color: #9fb3c8;
  margin-bottom: 10px;
}

.post-card__excerpt{
  color: #e6edf6;
  opacity: .92;
  line-height: 1.6;
}

.post-card__more{
  margin-top: 12px;
  color: #53EEF8;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(83,238,248,.6);
}

.post-card__link:hover .post-card__more{
  text-decoration-color: rgba(83,238,248,.95);
}

/* Pagination */
.pagination{
  margin-top: 22px;
}

.pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  margin: 6px 6px 0 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #e6edf6;
  text-decoration: none;
}

.pagination .page-numbers:hover{
  border-color: rgba(83,238,248,.35);
  background: rgba(83,238,248,.08);
}

.pagination .page-numbers.current{
  background: rgba(83,238,248,.18);
  border-color: rgba(83,238,248,.35);
  color: #e6edf6;
  font-weight: 900;
}

.pagination .page-numbers:focus-visible{
  outline: 3px solid #EBFD53;
  outline-offset: 3px;
}

/* Thumbnail */
.post-card__thumb{
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.post-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Header + meta */
.post-card__header{
  margin-bottom: 10px;
}

.post-card__title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.post-card__meta{
  font-size: 13px;
  color: #9fb3c8;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.post-card__sep{
  opacity: .6;
}

.post-card__cat{
  color: #b9c6d8;
  font-weight: 700;
}

/* Hover */
.post-card__link:hover .post-card__title{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(83,238,248,.55);
}

.archive-title, .post-card__title{
  color: #e6edf6 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* Meta row */
.post-card__meta{
  font-size: 13px;
  color: #9fb3c8;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.post-card__sep{
  opacity: .6;
}

.post-card__cat{
  color: #b9c6d8;
  font-weight: 800;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 2px 8px;
  border-radius: 999px;
}

/* Author */
.post-card__author{
  color: #b9c6d8;
  font-weight: 700;
}

/* Optional: hide-only-for-screenreaders helper */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* Article Header */
.article-header{
  margin-bottom: 24px;
}

.article-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #e6edf6;
}

/* Meta row */
.article-meta{
  font-size: 14px;
  color: #9fb3c8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.article-meta a{
  color: #53EEF8;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.article-meta a:hover{
  color: #7af4fb;
}

.meta-sep{
  opacity: .5;
}

/* Tags */
.article-tags a{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none!important;
}

/* ===============================
   Related Posts
================================= */

.related-posts{
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.related-title{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px){
  .related-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.related-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.related-card:hover{
  transform: translateY(-4px);
  border-color: rgba(83,238,248,.4);
}

.related-card a{
  display: block;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}

.related-thumb{
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
  overflow: hidden;
}

.related-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
}

.related-meta{
  font-size: 12px;
  color: #9fb3c8;
}

/* UL custom bullets */

.blog-article ul{
  list-style: none;
  padding-left: 0;
}

.blog-article ul li{
  position: relative;
  padding-left: 1em;
}

.blog-article ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #53EEF8, #2acfd8);
}

/* OL styling */

.blog-article ol{
  counter-reset: blog-counter;
  list-style: none;
  padding-left: 0;
}

.blog-article ol li{
  counter-increment: blog-counter;
  position: relative;
  padding-left: 1em;
}

.blog-article ol li::before{
  content: counter(blog-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  color: #53EEF8;
}

/* Featured image (hero) */
.article-hero{
  margin: 18px 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.article-hero img.article-hero__img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ==========================
   RadioLance CTA Block
========================== */

.rl-cta{
  margin: 48px 0;
  padding: 48px 32px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(12,21,30,1) 0%,
    rgba(12,21,30,0.95) 40%,
    rgba(12,21,30,0.85) 100%
  ),
  url('../assets/images/bg-start.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(83,238,248,0.25);
  text-align: center;
}

.rl-cta__inner{
  max-width: 780px;
  margin: 0 auto;
}

.rl-cta__text{
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 28px;
  font-weight: 600;
}

/* =======================================
   RadioLance CTA – refined version
======================================= */

.rl-cta{
  margin: 64px 0;
  padding: 64px 32px;
  border-radius: 32px;
  background:
    /* Бірюзове світіння знизу */
    radial-gradient(
      ellipse at 50% 100%,
      rgba(83,238,248,0.35) 0%,
      rgba(83,238,248,0.15) 35%,
      transparent 65%
    ),

    /* Рожевий glow справа */
    radial-gradient(
      circle at 100% 20%,
      rgba(255, 90, 200, 0.18) 0%,
      rgba(255, 90, 200, 0.08) 25%,
      transparent 60%
    ),

    /* Легкий рожевий ліворуч */
    radial-gradient(
      circle at 0% 70%,
      rgba(255, 120, 220, 0.12),
      transparent 50%
    ),

    /* Основна темна база */
    linear-gradient(
      135deg,
      #06121a 0%,
      #0b1f2c 50%,
      #06121a 100%
    );
  border: 1px solid rgba(83,238,248,0.25);
  text-align: center;
}

/* текст */
.rl-cta__text{
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #e6edf6!important;
  font-weight: 400;
  margin-bottom: 42px;
}

/* кнопка */
.rl-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 72px;
  border-radius: 600px!important;
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff!important;
  text-decoration: none!important;
  background: linear-gradient(
    90deg,
    #1fd6d9 0%,
    #2b7e84 100%
  );

  border: 2px solid rgba(83,238,248,0.7);

  box-shadow:
    0 12px 28px rgba(0,0,0,0.45);

  transition: all 0.25s ease;
}

/* hover */
.rl-cta__button:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.55);
}

/* active */
.rl-cta__button:active{
  transform: translateY(0);
}

/* focus accessibility */
.rl-cta__button:focus-visible{
  outline: 3px solid #53EEF8;
  outline-offset: 4px;
}

.rl-cta__button a {
    color: #ffffff!important;
  text-decoration-line: none!important;
}
.rl-cta__button a:hover {
    color: #ffffff!important;
  text-decoration-line: none!important;
}


#ez-toc-container {
    background: transparent!important;
    border: 1px solid #248297;
    border-radius: 18px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    display: table;
    margin-bottom: 1em;
    padding: 20px;
    position: relative;
    width: auto;
}

./* Easy TOC: прибрати буліти/маркери у навігації */
.blog-article .toc-box nav ul.ez-toc-list,
.blog-article .toc-box nav ul.ez-toc-list-level-1,
.blog-article .toc-box nav ul.ez-toc-list-level-2,
.blog-article .toc-box nav ul.ez-toc-list-level-3,
.blog-article .toc-box nav ol.ez-toc-list{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.blog-article .toc-box nav li{
  list-style: none !important;
  background: none !important;
}

.blog-article .toc-box nav li::marker{
  content: "" !important;
}

/* прибрати будь-які псевдо-іконки (і на li, і на a) */
.blog-article .toc-box nav li::before,
.blog-article .toc-box nav li::after,
.blog-article .toc-box nav a::before,
.blog-article .toc-box nav a::after{
  content: none !important;
  background: none !important;
}

/* вкладені рівні (залишаємо відступ, але без булітів) */
.blog-article .toc-box nav ul ul{
  padding-left: 14px !important;
  margin-top: 8px !important;
  border-left: 1px solid rgba(255,255,255,.08);
}

/* Easy TOC bullets are drawn via li::before — kill them */
.blog-article .toc-box nav li::before{
  content: none !important;
  display: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* also ensure no native markers */
.blog-article .toc-box nav li::marker{
  content: "" !important;
}

/* safety: if plugin adds icons on links */
.blog-article .toc-box nav a::before,
.blog-article .toc-box nav a::after{
  content: none !important;
  display: none !important;
}

div#ez-toc-container ul li:before {
	display: none!important;
}

.wp-block-quote {
  position: relative;
  margin: 36px 0;
  padding: 30px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.25);
}

.wp-block-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 70px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  font-family: Georgia, serif;
}

.wp-block-quote p {
  margin: 0;
  color: #f8fafc;
  font-size: 0.95rem;
  line-height: 1.33;
}

.wp-block-quote cite {
  display: block;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 0.95rem;
}