/*
Theme Name: Liquid Web Developers Blog
Theme URI: https://liquidwebdevelopers.com/blog
Author: Liquid Web Developers
Author URI: https://liquidwebdevelopers.com
Description: Blog theme matching the Liquid Web Developers website design. A classic PHP theme for the /blog section â€” navy + blue palette, system-sans typography, pill buttons, card grid, and a long-form article layout that mirrors the main Next.js site.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liquidweb-blog
*/

/* =========================================================================
   Design tokens (translated from the site's Tailwind config + globals.css)
   ========================================================================= */


   :root {
  --font-sans:
  "Reddit Sans",
    /* "Inter", */

    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  /* navy */
  --navy-50: #eef2f9;
  --navy-100: #d6e0ef;
  --navy-600: #1b2a4a;
  --navy-700: #142036;
  --navy-800: #0e1729;
  --navy-900: #0a101e;

  /* brand blue */
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
  --brand-400: #60a5fa;
  --brand-500: #3b82f6;
  --brand-600: #2d6ed7;
  --brand-700: #10a803;
  --brand-800: #0d8602;

  /* slate (grays used throughout) */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;

  --white: #ffffff;

  --max-content: 1200px;
  --shadow-card: 0 1px 3px rgba(10, 16, 30, 0.06), 0 8px 24px rgba(10, 16, 30, 0.06);
  --radius-lg: 0.75rem;   /* rounded-xl */
  --radius-2xl: 1rem;     /* rounded-2xl */
  --radius-3xl: 1.5rem;   /* rounded-3xl */
}

/* =========================================================================
   Base / reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
}

a { color: var(--brand-600); text-decoration: none; transition: 0.2s ease-in-out; }
a:hover { color: var(--brand-700); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { color: var(--navy-800); line-height: 1.2; margin: 0; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: auto; z-index: 100;
  background: var(--brand-600); color: #fff; padding: 0.5rem 1rem; border-radius: 0.5rem;
}
.skip-link:focus { left: 1rem; top: 1rem; color: #fff; }

/* =========================================================================
   Layout helpers  (mirror .container-x)
   ========================================================================= */
.container-x {
  width: 100%;
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;   /* px-5 */
  padding-right: 1.25rem;
}
@media (min-width: 640px)  { .container-x { padding-left: 1.5rem;  padding-right: 1.5rem; } }  /* sm px-6 */
@media (min-width: 1024px) { .container-x { padding-left: 2rem;    padding-right: 2rem; } }    /* lg px-8 */

/* =========================================================================
   Buttons (mirror .btn / .btn-primary / .btn-secondary / .btn-ghost)
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.875rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  line-height: 1; cursor: pointer; transition: all .15s ease; border: 1px solid transparent;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand-500); }
.btn-primary   { background: var(--brand-600); color: #fff; }
.btn-primary:hover   { background: var(--brand-700); color: #fff; }
.btn-secondary { background: var(--navy-800); color: #fff; }
.btn-secondary:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy-800); border-color: var(--navy-100); }
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-600); }

.floating_btns .btn {

 padding: 0.875rem 0.8rem;

}

/* =========================================================================
   Typographic helpers (mirror .eyebrow / .h-section / .prose-body / .card)
   ========================================================================= */
.eyebrow {
  font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--brand-600); margin: 0;
}
.prose-body { font-size: 1rem; line-height: 1.75; color: var(--slate-600); }

.card {
  border-radius: var(--radius-2xl); border: 1px solid var(--slate-100);
  background: #fff; padding: 1.5rem; box-shadow: var(--shadow-card);
}

.custom-logo-link img {
  max-width: 160px;
}
@media (max-width: 640px) {
  .custom-logo-link img {
    max-width: 120px;
  }
}
/* =========================================================================
   Header (mirror components/Header.tsx)
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--slate-100);
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.site-header__inner {
  display: flex; height: 4rem; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--navy-800); }
.brand:hover { color: var(--navy-800); }
.brand__mark {
  display: grid; place-items: center; height: 2rem; width: 2rem; border-radius: 0.5rem;
  background: var(--brand-600); color: #fff; font-size: 0.875rem; font-weight: 700;
}
.brand__name { display: none; }
@media (min-width: 640px) { .brand__name { display: inline; } }

.primary-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.primary-nav a {
  border-radius: 9999px; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  color: var(--navy-700);
}
.primary-nav a:hover { color: var(--brand-600); }

.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.25rem; }
.dropdown {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  width: 18rem; border-radius: var(--radius-2xl); border: 1px solid var(--slate-100);
  background: #fff; padding: 0.5rem; box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transition: opacity .12s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; }
.dropdown a {
  display: block; border-radius: var(--radius-lg); padding: 0.5rem 0.75rem;
  font-size: 0.875rem; color: var(--navy-700); font-weight: 400;
}
.dropdown a:hover { background: var(--slate-50); color: var(--brand-600); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }

.menu-toggle {
      background-color: var(--brand-50);
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: .75rem;
    color: var(--slate-700);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.menu-toggle span i{
  width: 1rem;
  height: .125rem;
  background-color: var(--slate-700);
  display: block;
  margin: 0.25rem auto;
  position: relative;
  top: 0;
  transition: all .15s ease;
}
body.menu-open {
  overflow: hidden;
}
.menu-open .menu-toggle span i:nth-child(1){
  transform: rotate(45deg);
  top: 0.2rem;
}
.menu-open .menu-toggle span i:nth-child(2){
  transform: rotate(-45deg);
  top: -0.2rem;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; border-top: 1px solid var(--slate-100); background: #fff;
    max-height: calc(100dvh - 65px);
    height: 100dvh;
    overflow: hidden;
    overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav__list { display: flex; flex-direction: column; padding: 0.75rem 1.5rem; }
.mobile-nav__list > div > a {
  display: block; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; color: var(--navy-800);
}
.mobile-nav__sub { margin: 0 0 0.5rem 0.75rem; border-left: 1px solid var(--slate-100); padding-left: 0.75rem; }
.mobile-nav__sub a { display: block; padding: 0.375rem 0; font-size: 0.875rem; color: var(--slate-600); font-weight: 400; }
.mobile-nav .btn-primary { margin-top: 0.75rem; }

.mobile-header {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-nav__sub a { padding: 0.3rem 0; }
  .mobile-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }
  .mobile-header .btn{
    padding: .625rem 1.5rem;
}
}
@media (max-width: 640px){
    span.blog_post_card_sr {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 1rem;
    line-height: normal;
    border-radius: .5rem;
}
.page-hero h1 {
    font-size: 2rem;
}
}

/* =========================================================================
   Breadcrumbs (mirror components/Breadcrumbs.tsx)
   ========================================================================= */
.breadcrumbs { padding-top: 2rem; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  list-style: none; margin: 0; padding: 0; font-size: 0.875rem; color: var(--slate-500);
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs a { color: var(--slate-500); }
.breadcrumbs a:hover { color: var(--brand-600); }
.breadcrumbs [aria-current="page"] { color: var(--navy-700); }

/* =========================================================================
   Sections / page headers
   ========================================================================= */
.section { padding-top: 3rem; padding-bottom: 3rem; }
.page-hero { padding-top: 2rem; padding-bottom: 0; }
.page-hero h1 {
  margin-top: 0.5rem; font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy-800); line-height: 1;
}
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { 
  .page-hero .lead { max-width: 44rem; }
}
.page-hero .lead { margin-top: 1rem; font-size: 1.125rem; }

/* =========================================================================
   Post card grid (mirror blog index cards)
   ========================================================================= */
.card-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.post-card { display: flex; flex-direction: column; transition: border-color .15s ease; overflow: hidden; padding: 0; }
/* .post-card:hover { border-color: var(--brand-500); } */
.post-card__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--slate-100); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
/* .post-card:hover .post-card__thumb img { transform: scale(1.03); } */
.post-card__body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 1.5rem; border-top: var(--slate-100) 1px solid; }
@media (max-width:1024px){.post-card__body{padding: 1rem;}}
.post-card__cat {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgb(45 110 215 / 15%);
    border: rgb(45 110 215 / 15%) 1px solid;
    display: inline-block;
    color: var(--brand-600);
    padding: 2px 10px;
    border-radius: 50px;
    width: fit-content;
}
.post-card__title { margin-top: 0.5rem; font-size: 1.125rem; font-weight: 600; color: var(--navy-800); }
.post-card:hover .post-card__title { color: var(--brand-600); }
.post-card__excerpt { display: none; margin-top: 0.5rem; flex: 1 1 auto; font-size: 0.9375rem; line-height: 1.65; color: var(--slate-600); }
.post-card__meta { margin-top: 0.5rem; font-size: 0.8125rem; color: var(--slate-500); margin-bottom: 0; }
.post-card__more { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--brand-600); display: none; }

/* Cluster/category link list (mirror cluster idea list) */
.link-list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .link-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.link-list a {
  display: flex; align-items: flex-start; gap: 0.75rem; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100); background: #fff; padding: 1rem; color: var(--navy-800);
}
.link-list a:hover { border-color: var(--brand-500); }
.link-list .chev { margin-top: 0.125rem; color: var(--brand-600); }

.floating_btns {
    position: fixed;
    z-index: 9;
    inset-inline: 0.75rem;
    gap: 0.5rem;
    bottom: 0.75rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1rem;
    padding: .5rem;
}
@media (min-width: 1024px) { 
  .floating_btns {
    display: none;
  }
}

.floating_btns a {
    width: 100%;
}
/* =========================================================================
   Single post / article (mirror the long-form article format)
   ========================================================================= */
.article { padding-top: 1.5rem; padding-bottom: 1rem; }
.article__title {
  margin-top: 0; font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy-800);
}
@media (min-width: 1024px) { .article__title { font-size: 2.5rem; } }
.article__meta {
  margin-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--slate-500);
}
.article__meta .dot { color: var(--slate-300); }
.article__meta a { color: var(--slate-500); }
.article__meta a:hover { color: var(--brand-600); }
.article__feature { margin: 0; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-card); max-width: 100%; width: 100%;}
@media (max-width:640px){.article__title {    font-size: 1.5rem;}}
/* Prose â€” the article body typography */
.prose { margin-top: 2rem; color: var(--slate-600); font-size: 1.0625rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.25rem; }
.prose p { margin: 0; }
.prose h2 {
  margin-top: 2rem; margin-bottom: 0.5rem; font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.01em; color: var(--navy-800); scroll-margin-top: 5rem;
}
.prose h3 {
  margin-top: 2rem; margin-bottom: 0.5rem; font-size: 1.25rem; font-weight: 700;
  color: var(--navy-800); scroll-margin-top: 5rem;
}
.prose h4 { margin-top: 1.5rem; font-size: 1.05rem; font-weight: 700; color: var(--navy-700); }
@media (max-width:640px){.prose h2 { font-size: 1.25rem;}.prose , .prose p { line-height: 1.6; font-size: 1rem;}}
.prose a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--brand-700); }
.prose strong { font-weight: 700; }
.prose ul, .prose ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.prose li { margin-top: 0.5rem; }
.prose ul li::marker { color: var(--brand-500); }
.prose blockquote {
  margin: 1.5rem 0; border-left: 3px solid var(--brand-500); padding: 0.25rem 0 0.25rem 1.25rem;
  color: var(--navy-700); font-style: italic;
}
.prose img { border-radius: var(--radius-2xl); margin: 1.5rem 0; box-shadow: var(--shadow-card); }
.prose code {
  background: var(--slate-100); border-radius: 0.375rem; padding: 0.15em 0.4em;
  font-size: 0.9em; color: var(--navy-800);
}
.prose pre {
     background: #efefef; 
    color: var(--slate-800); 
    border-radius: var( 
  --radius-lg); 
    padding: 1rem 1.25rem; 
    overflow-x: auto; 
    margin: 1.5rem 0; 
}
.blog_main_grid_inner .prose p { 
    margin: 0 0 15px; 
}
.prose pre code { background: transparent; color: inherit; padding: 0; }
.prose hr { border: 0; border-top: 1px solid var(--slate-200); margin: 2.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid var(--slate-200); padding: 0.6rem 0.8rem; text-align: left; }
.prose th { background: var(--slate-50); color: var(--navy-800); font-weight: 600; }

/* Tags + share row */
.post-tags { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.post-tags a {
  display: inline-block; border-radius: 9999px; border: 1px solid var(--slate-200);
  background: var(--slate-50); padding: 0.25rem 0.75rem; font-size: 0.8125rem; color: var(--slate-600);
}
.post-tags a:hover { border-color: var(--brand-500); color: var(--brand-600); }

/* Author / next-prev */
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.post-nav a { font-size: 0.875rem; font-weight: 600; color: var(--brand-600); }
@media (min-width: 1024px) {
  .blog_grid {display: grid;grid-template-columns: 1fr 320px;}
}
@media (max-width: 1024px) {
  .blog_banner_img{
    display: none;
  }
}
.blog_banner_img svg, .blog_banner_img img {
  max-width: 100%;
  max-height: fit-content;
}
/* =========================================================================
   CTA band (mirror components/CTASection.tsx)
   ========================================================================= */
.cta-band { padding-top: 4rem; padding-bottom: 4rem; position: relative; }
.bottom_bg_block{ position: absolute; bottom:-10px; left: -25px; width: 100%; max-width: 320px;pointer-events: none;z-index: 0;}
.bottom_bg_block svg{ fill: rgba(255,255,255,0.1)}
.cta-band__inner {
  overflow: hidden; border-radius: var(--radius-3xl); background: var(--navy-800); position: relative;
  padding: 2.5rem 1.5rem; text-align: center;box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);
}
@media (min-width: 640px) { .cta-band__inner { padding-left: 3rem; padding-right: 3rem; } }
.cta-band h2 {
  margin: 0 auto; max-width: 42rem; font-size: 3rem; font-weight: 700;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
}
@media (max-width: 640px) { .cta-band h2 { font-size: 2rem; } }
.cta-band p { margin: 1rem auto 0; max-width: 42rem; color: var(--slate-300); font-size: 1.125rem; }
.cta-band__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; position: relative; }

/* =========================================================================
   Pagination
   ========================================================================= */
.pagination { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; gap:15px; justify-content: center; min-width: 2.5rem; height: 2.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--navy-700); background: #fff;
  padding: 0 0.75rem; border-radius: 10px; border: 1px solid var(--brand-50); box-shadow: 0 3px 5px var(--brand-50); transition: all .2s ease;
}
.pagination ul.page-numbers {
  text-align: center;  
  list-style: none;
  padding-left: 0;
  margin: 0;
  border: 0;
  margin: 0 auto;
  padding: 0 0.5rem;
  box-shadow: none;
}
.pagination .page-numbers:hover { border-color: var(--brand-500); color: var(--brand-600); }
.pagination .page-numbers.current { background: var(--brand-600); border-color: var(--brand-600); color: #fff;box-shadow: none;}
.pagination .page-numbers.dots { border: 0; box-shadow: none; }
@media (max-width: 640px) { .pagination .page-numbers {
    gap: 8px;
    min-width: 1.5rem;
    height: 1.75rem;
    font-size: 0.7rem;
    padding: 0 0.75rem;
    border-radius: 5px;
}.bottom_bg_block {
    max-width: 220px;
}
}

/* =========================================================================
   Footer (mirror components/Footer.tsx)
   ========================================================================= */
.site-footer { margin-top: 0; border-top: 1px solid var(--slate-100); background: var(--navy-800); color: var(--slate-300); }
.site-footer__grid { display: grid; gap: 1.5rem; padding-top: 3.5rem; padding-bottom: 2.5rem; }
@media (max-width: 1024px) { .site-footer{padding-bottom: 4rem;} .footer-navigation { grid-column: span 2 / span 2;} .site-footer__grid {gap: 2.5rem 1.5rem}.site-footer__bottom-inner{text-align: center;}} 
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr));  } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(5, minmax(0,1fr)); } 
.site-footer__grid > div:not(:first-child) { border-left : 1px solid rgba(45,110,215,.2); padding-left: 1rem; } 
}
.site-footer .f-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #fff; }
.site-footer .f-brand .brand__mark { background: var(--brand-600); }
.site-footer .f-tagline { margin-top: 1rem; margin-bottom: 0.35rem; font-size: 0.75rem; line-height: 1.65; color: #fff; }
.site-footer .f-contact { margin-top: 0; font-size: 0.75rem; color: #fff;display: flex; line-height: 1.3; align-items: flex-start;    gap: 8px; }
.site-footer .f-contact a { color: #fff; }
.site-footer .f-contact > span svg { width: 1rem; height: auto; fill: var(--brand-600);vertical-align: middle;}
.site-footer .f-contact a:hover { color: #fff; }
.site-footer h2 { font-size: 1rem; margin: 0; font-weight: 600; color: #fff; }
.site-footer ul { margin: 0.5rem 0 0; padding: 0; list-style: none; }
.site-footer li { margin-top: 0.3rem; font-size: 0.75rem; }
.site-footer li a { color: var(--slate-300); }
.site-footer li a:hover { color: var(--brand-400); text-decoration: underline; }
.site-footer .f-all { color: var(--brand-400); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer__bottom-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding-top: 1.5rem; padding-bottom: 1.5rem; font-size: 0.75rem; color: var(--slate-400);
}
.site-footer__bottom-inner p{
  margin: 0;
}
.social-media-icons{
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}
.social-media-icons a{
  border-radius:50%; border: #fff 1px solid; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.social-media-icons a svg{
  width: 0.8rem; max-height: 1rem; fill: #fff;
}
.social-media-icons a:hover{
  border-color: var(--brand-600);
  background-color: var(--brand-600);
}
@media (min-width: 1024px) { .site-footer__bottom-inner { flex-direction: row; } }

/* =========================================================================
   Comments
   ========================================================================= */
.comments { max-width: 48rem; margin-top: 3rem; }
.comments h2 { font-size: 1.5rem; font-weight: 700; }
.comment-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.comment-list li { margin-top: 1.25rem; }
.comment-body { border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 1rem 1.25rem; background: #fff; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
  width: 100%; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 0.6rem 0.8rem;
  font: inherit; margin-top: 0.35rem; background: #fff; color: var(--navy-800);
}
.comment-form label { font-size: 0.875rem; font-weight: 600; color: var(--navy-700); display: block; margin-top: 1rem; }

/* =========================================================================
   Search form
   ========================================================================= */
.search-form { display: flex; gap: 0.5rem; max-width: 32rem; }
.search-form input[type=search] {
  flex: 1 1 auto; border: 1px solid var(--slate-200); border-radius: 9999px; padding: 0.65rem 1.1rem;
  font: inherit; background: #fff; color: var(--navy-800);
}
.search-form input[type=search]:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-100); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}


/* blog style */
header.article__header {
    margin-bottom: 1.75rem;
}
.blog_main_grid_table {
    width: 100%;
    max-width: 330px;
    flex: 0 0 330px;
    position: sticky;
    top: 70px;
    height: 100%;
}

.blog_main_grid_table #ez-toc-container {
    max-height: 100dvh;
    overflow: hidden;
    overflow-y: auto;
    border-radius: var(--radius-2xl); border: 1px solid var(--slate-100);
  background: #fff; padding: 1.5rem; box-shadow: var(--shadow-card)
}
.blog_main_grid_table p.ez-toc-title {
    display: inline-flex;
    align-items: center;
    margin: 0;
    width: calc(100% - 50px);
    font-weight: 700;
}
.blog_main_grid_table ul.ez-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog_main_grid_table ul.ez-toc-list li:not(:first-child) {
  margin-top: 8px;
}
/* .blog_main_grid_table ul.ez-toc-list li a:before{
  content: "-";
} */
.blog_main_grid_table ul.ez-toc-list li a{
  color: var(--navy-800);
  font-size: 0.8rem;
  display: flex;
  gap: 0.1rem;
  line-height: 1.5;
}
.blog_main_grid_table ul li ul {
  display: none;
}
.blog_main_grid_table ul.ez-toc-list li a:hover,
.blog_main_grid_table ul.ez-toc-list li a.active,
.blog_main_grid_table ul.ez-toc-list li a:visited {
  color: var(--brand-600);
}
.blog_main_grid_table ul.ez-toc-list li a.active{
  text-decoration: underline;
  font-weight: 500;
}
.blog_main_grid_table nav {
    margin-top: 10px;
}
.blog_main_grid {
  display: flex;
    gap: 20px;
    flex-direction: column;
}
.ez-toc-section {
    padding-top: 5rem;
}
@media (min-width:1024px){
  .blog_main_grid {
      flex-direction: row-reverse;
    }
    .ez-toc-cssicon-toggle-label {
      display: none;
    }
}
@media (max-width:1024px){
  .blog_main_grid_table {
    flex: 0 0 100%;
    position: static;
    height: auto;
    width: 100%;
    max-width: 100%;
}
.blog_main_grid_table #ez-toc-container {
    border-radius: 10px;
    padding: 0.5rem 1rem .75rem;
    position: relative;
}
.arrow-unsorted-368013{
  width: 15px;
  height: auto;
}
.arrow-unsorted-368013 *{
  fill: var(--slate-700)
}
.blog_main_grid_table p.ez-toc-title {
    width: calc(100% - 25px);
}
#ez-toc-container input[type="checkbox"] + nav, #ez-toc-widget-container input[type="checkbox"] + nav {
    opacity: 0;
    max-height: 0;
    border: none;
    display: none;
}
#ez-toc-container input[type="checkbox"]:checked + nav, #ez-toc-widget-container input[type="checkbox"]:checked + nav {
    opacity: 1;
    max-height: max-content;
    border: none;
    display: block;
}
label.ez-toc-cssicon-toggle-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px 0 0;
}
span.ez-toc-icon-toggle-span svg.list-377408 {
  display: none;
}
.cta-band {
    padding-top: 2rem;
    padding-bottom: 3rem;
}
}

.blog_main_grid_inner figure.article__feature img { 
    width: 100%; 
}


.blog_banner_img img { 
    max-height: 150px; 
}

.blog_post_card { 
    padding: 1.5rem; 
    display: flex; 
    gap: 15px; 
    border: transparent 1px solid; 
    border-left: 4px solid var(--brand-400); 
    border-radius: 1rem; 
    height: 100%; 
}

span.blog_post_card_sr {
    width: 50px;
    height: 50px;
    display: flex;
    flex: 0 0 50px;
    text-align: center;
    align-items: center;
    justify-content: center;

    color: var(--brand-600);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    background-color: var(--brand-50);
    border-radius: .75rem;
}

.blog_post_card:hover {
    border-color: var(--brand-600);
}

.blog_post_card_content h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--navy-800);
    margin-bottom: 0;
}

.blog_post_card_content p, .prose p, .prose li {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--slate-600);
    margin-top: 0.4rem;
}

.blog_post_card_content {
    border-left: rgba(96,165,250,.2) 2px solid;
    padding-left: 1rem;
}

span.blog_post_card_link {
    color: var(--brand-600);
    font-weight: 600;
}

.blog_main_grid h1{
    font-size: 30px;
}
.blog_main_grid h2{
    font-size: 26px;
}
.blog_main_grid h3{
    font-size: 22px;
}
.blog_main_grid h4{
    font-size: 20px;
}
.blog_main_grid h5{
    font-size: 18px;
}
.blog_main_grid h6{
    font-size: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* navy */
    --navy-800: #e8eef8;
    --navy-700: #dbe4f2;
    --navy-600: #c3cfe2;
    --navy-100: #a9b6ca;
    --navy-50: #93a1b8;

    /* brand blue */
    --brand-50: #12203c;
    --brand-100: #dbeafe;
    --brand-400: #304b6e;
    --brand-500: #3b82f6;
    --brand-600: #60a5fa;
    --brand-700: #10a803;
    --brand-800: #0d8602;

    /* slate (grays used throughout) */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #a9b6ca;
    --slate-500: #93a1b8;
    --slate-600: #475569;
    --slate-700: #c3cfe2;
    --slate-800: #c3cfe2;
    --white: #141f38;
    --lw-border-soft: rgba(255, 255, 255, 0.07);
    --lw-border-navy: rgba(255, 255, 255, 0.14);
    --lw-surface: #111a2e;
    --lw-text: #e8eef8;
    --lw-text4: #a9b6ca;
    --lw-band: #111c31;
    --lw-surface-2: #0d1424;
  }
  .site-header {
    background-color: #111a2ee0;
    border-color: var(--lw-border-soft);
  }
  .card {
    background-color: var(--lw-surface);
    border-color: var(--lw-border-soft);
  }
  .cta-band__inner {
    --navy-800: #0a101e;
  }
  .cta-band p {
    --slate-300: #7b8ba3;
  }
  .btn-ghost {
    background-color: var(--lw-surface);
    color: var(--lw-text);
    border-color: var(--lw-border-navy);
  }
  .site-footer {
    background-color: var(--lw-band);
    border-color: var(--lw-border-soft);
  }
  .site-footer li a {
    --slate-300: #7b8ba3;
    --brand-400: #60a5fa;
  }
  .blog_post_card_content p, .prose p, .prose li,
  .prose p {
    color: #b8c4d6;
  }
  .blog_main_grid_table #ez-toc-container,
  .dropdown {
    background-color: var(--lw-surface);
    border-color: var(--lw-border-soft);
  }
  .dropdown a:hover {
    --slate-50: var(--lw-surface-2);
  }
  .prose th,
  .prose td {
    border-color: var(--lw-border-soft);
    background-color: var(--lw-surface-2);
    color: var(--lw-text);
  }
  .pagination .page-numbers,
  .mobile-nav {
    background-color: var(--lw-surface);
    border-color: var(--lw-border-soft);
    color: var(--lw-text);
  }
  .mobile-nav__sub {
    border-color: var(--lw-border-soft);
  }
  .mobile-nav__sub a {
    color: var(--lw-text4);
  }
  .floating_btns {
    background-color: var(--lw-surface-2);
    border-color: var(--lw-border-soft);
  }

.prose pre { 
    background-color: var(--lw-surface-2); 
}
}
