/* =========================================================
   GCShorts / GearChoice – Core Styles (Mobile-first, CWV-safe)
   - Consolidated from your minified CSS
   - Keeps your current look, removes duplicates, fixes bugs
   - Notes:
     • Re-enabled --accent (was commented out but referenced)
     • Ensures sticky nav + scrollable tabs on mobile
     • Avoid CLS: stable logo/ad sizes; no layout shifts
     • Adds prefers-reduced-motion, focus-visible
   ========================================================= */

/* ===== CSS Variables ===== */
:root{
  --primary:#1d3557;
  --accent:#e63946;           /* re-enabled (was commented) */
  --light:#f1faee;
  --dark:#333;
  --gray:#666;
  --light-gray:#f8f9fa;
  --border:#e0e0e0;
  --shadow:0 4px 12px rgba(0,0,0,.08);
  --transition:all .3s ease;
}

/* ===== Reset / Base ===== */
*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family: "Anek Devanagari", sans-serif;
  color:var(--dark);
  line-height:1.6;
  background:#fff;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:var(--primary);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--accent)}
a:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

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

/* Helpful for images without width/height (reduces CLS if used) */
/* .lcp-img{aspect-ratio:1200/630;object-fit:cover} */

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

/* ===== Header ===== */
.site-header{
  display:flex;justify-content:space-between;align-items:center;
  position:relative;z-index:100;box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.header-container{display:flex;justify-content:space-between;align-items:center;gap:12px}

.logo img{
  width:150px;height:auto;display:block;transition:var(--transition);
  /* Provide a stable inline height in HTML where possible to eliminate CLS */
}
.logo:hover img{transform:scale(1.05)}

.ad-slot{
  display:flex;justify-content:center;align-items:center;
  min-height:90px; /* stable height to avoid CLS */
  background:var(--light-gray);border-radius:4px;overflow:hidden;margin:0 10px;
}

/* ===== Navigation (sticky + scrollable on mobile) ===== */
.site-nav{
  position:sticky;top:0;z-index:1000;
  background:#fafafa;border-top:1px solid #000;border-bottom:1px solid #000;
  transition:all .3s ease;
}
.site-nav.scrolled{background:#f5f5f5;box-shadow:0 2px 10px rgba(0,0,0,.1)}

.nav-container{display:flex;justify-content:center}
.nav-menu{
  display:flex;gap:1rem;
  list-style:none;padding:.5rem 0;margin:0;
  overflow-x:auto;white-space:nowrap;flex-wrap:nowrap;
  -webkit-overflow-scrolling:touch;
}
.nav-menu::-webkit-scrollbar{display:none}
.nav-menu li{flex:0 0 auto}
.nav-menu a{
  font-weight:600;font-size:1rem;position:relative;color:#111;display:inline-block;
}
.nav-menu a::after{
  content:"";position:absolute;left:0;bottom:-2px;height:2px;width:0;
  background:var(--accent);transition:var(--transition);
}
.nav-menu a:hover::after{
  
  /* width:100% */

}

@media (min-width:768px){
  .nav-menu{overflow:visible;justify-content:center}
}

/* ===== Breadcrumb ===== */
.breadcrumb{

  /* margin:12px 0 20px; */

}
.breadcrumb ol{
  display:flex;flex-wrap:wrap;list-style:none;font-size:.9rem;color:#000;gap:0;
}
.breadcrumb li:not(:last-child)::after{
  content:"›";margin:0 8px;color:var(--gray)
}
.breadcrumb a{color:#000}
.breadcrumb a:hover{color:var(--accent)}

/* ===== Article Header / Meta ===== */
.article-header{
  /* margin-bottom:24px */
}
.article-title{
  font-size:2rem;line-height:1.2;color:var(--primary);margin:8px 0 0;
}

.category-tag{
  display:inline-block;background:transparent;color:#aa1414;border:2px solid #aa1414;
  border-radius:20px;padding:4px 12px;font-size:.75rem;font-weight:600;letter-spacing:.5px;
  text-transform:uppercase;transition:var(--transition);
}
.category-tag:hover{background:var(--accent);color:#fff;transform:translateY(-3px);box-shadow:var(--shadow)}

.meta-row{
  display:flex;justify-content:space-between;align-items:center;gap:15px;margin-top:18px;
  background:transparent;border:none;box-shadow:none;padding:0;flex-wrap:wrap;
}

.author-block{display:flex;align-items:center;gap:12px}
.author-block img{
  width:30px;height:30px;
  border-radius:50%;object-fit:cover;border:2px solid var(--light);box-shadow:var(--shadow)
}
.author-text{
  /* line-height:1.4 */

}
.author-text span{font-weight:600;color:var(--primary);font-size:0.8rem;}
.author-text time{font-size:.8rem;color:var(--gray)}

.share-block{display:flex;gap:10px}
.share-btn{
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  background:var(--light);color:inherit;
}
.share-btn:hover{transform:scale(1.1);box-shadow:0 4px 8px rgba(0,0,0,.2);background:var(--accent);color:#fff}
.share-btn.fb{background:#3b5998;color:#fff}
.share-btn.tw{background:#1da1f2;color:#fff}

/* ===== Article Content ===== */
.article-content{ text-align: justify;}
.article-content p{
  
  /* margin-bottom:1rem; */
  text-align: justify;
  
  font-size:1.1rem}
.article-content p a{color:#aa1414;text-decoration:underline}

.article-content h1,
.article-content h2{
  position:relative; /* enables decorative underline */
  padding-bottom:8px;margin:1rem 0 .75rem;
}
.article-content h1::after{
  content:"";position:absolute;left:0;bottom:0;width:80px;height:3px;background:var(--accent)
}
.article-content h2{font-size:1rem}
.article-content h2::after{
  content:"";position:absolute;left:0;bottom:0;width:60px;height:2px;background:var(--accent)
}

.article-content img{
  width:100%!important;max-width:100%!important;height:auto!important;display:block!important;
  margin:24px auto;border-radius:8px;box-shadow:var(--shadow);
  object-fit:cover!important;transition:transform .5s ease;
}
.article-content img:hover{transform:scale(1.02)}

/* ===== FAQ ===== */
.faq-section{margin-top:40px}
.faq-section h2{
  font-size:1.8rem;color:var(--primary);margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid var(--border)
}
.faq-item{
  margin-bottom:15px;border:1px solid var(--border);border-radius:8px;overflow:hidden;transition:var(--transition)
}
.faq-item:hover{border-color:var(--accent)}
.faq-item summary{
  padding:6px 10px;background:var(--light-gray);cursor:pointer;font-weight:600;font-size:0.8rem;color:var(--primary);
  list-style:none;position:relative;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";position:absolute;right:16px;top:50%;transform:translateY(-50%);font-size:1.2rem;transition:var(--transition)
}
.faq-item[open] summary::after{content:"−"}
.faq-item[open]{border-color:var(--accent);box-shadow:0 5px 15px rgba(230,57,70,.1)}
.faq-item div{padding:16px;background:#fff}

/* ===== Cards / Lists ===== */
.article-card{
  /* padding:5px; */
  background:#fff;
  border-radius:5px
}

.article-list{

  display:grid;
  /* gap:1rem; */

  grid-template-columns:repeat(2,1fr); /* mobile-first: 2 cols */
}
@media (min-width:768px){
  .article-list{
    /* gap:1.25rem */
  }
}
@media (min-width:992px){
  .article-list{grid-template-columns:repeat(4,1fr);
    /* gap:1.5rem */
  
  }

}

/* ===== Layout: Sidebars ===== */
.main-wrapper{
  display:flex;
  /* gap:30px; */
  max-width:1600px;
  /* margin:20px auto; */
  flex-wrap:wrap;

}
.left-sidebar{flex:0 0 280px;order:1}
.main-content-container{flex:1;order:2}
.right-sidebar{flex:0 0 280px;order:3}

.sidebar{
  background:#f8f9fa;border-radius:8px;padding:20px;box-shadow:0 2px 10px rgba(0,0,0,.05);
  content-visibility:auto; /* speed initial paint of main content */
  contain-intrinsic-size:800px 600px; /* rough fallback size to reduce CLS */
}
.sidebar h3{
  font-size:1.25rem;color:#1d3557;margin-bottom:15px;padding-bottom:8px;border-bottom:2px solid var(--accent)
}
.sidebar ul{list-style:none;padding:0;margin:0 0 22px}
.sidebar li{margin-bottom:12px}
.sidebar a{
  color:#455A64;display:block;padding:8px 0;transition:var(--transition);font-weight:500
}
.sidebar a:hover{color:var(--accent);padding-left:5px}

@media (max-width:1200px){
  .left-sidebar,.right-sidebar{flex:0 0 calc(50% - 15px)}
  .main-content-container{order:1;flex:1 0 100%;margin-bottom:20px}
}
@media (max-width:768px){
  .left-sidebar,.right-sidebar{flex:0 0 100%;display:none}
  .sidebar{padding:16px}
  .mobile-sidebars{display:block;order:3;width:100%}
  .mobile-sidebars .left-sidebar,.mobile-sidebars .right-sidebar{display:block;margin-bottom:20px}
}

/* ===== Footer (dark) ===== */
.site-footer{
  background:#0d1117;color:#c9d1d9;padding:40px 0;margin-top:24px
}
.site-footer a{color:#c9d1d9}
.site-footer a:hover{text-decoration:underline}

.footer-grid{
  display:grid;gap:24px;grid-template-columns:repeat(2,minmax(0,1fr));
}
.footer-brand p{margin-top:12px;color:#9aa4af;line-height:1.6}
.footer-heading{font-size:1rem;margin:0 0 12px;color:#fff}
.footer-links{list-style:none;margin:0;padding:0}
.footer-links li{margin:8px 0}
.copyright{
  text-align:center;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.6);font-size:.9rem;margin-top:20px
}

@media (min-width:768px){
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (min-width:1100px){
  .footer-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width:520px){
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{text-align:center}
  .footer-brand img{margin:0 auto;display:block}
}

/* ===== Typography scale for headings across sections ===== */
article h1,section h1,nav h1,aside h1{
  font-size:1.4rem;line-height:1.3;font-weight:700;margin:1rem 0
}
@media (max-width:768px){
  article h1,section h1,nav h1,aside h1{font-size:1.6rem}
}
@media (max-width:480px){
  article h1,section h1,nav h1,aside h1{font-size:1.4rem}
}

/* ===== Responsive tweaks ===== */
@media (max-width:992px){
  .header-container{flex-direction:column;gap:15px}
  .ad-slot{width:100%;max-width:728px}
}
@media (max-width:768px){
  .site-nav{position:static}
  .breadcrumb ol{font-size:.8rem}
  .category-tag{font-size:.75rem;padding:4px 10px}
  .meta-row{flex-direction:row;align-items:center;justify-content:space-between}
  .author-block,.share-block{flex-direction:row;width:auto;margin-top:0}
  .article-title{font-size:1.8rem!important;text-align: justify;}
  .article-content h2{font-size:1rem!important; text-align: justify;}
  .article-content p{font-size:1.05rem!important}
  .faq-item summary{padding:6px;font-size:0.8rem!important}
  .nav-menu{padding:10px 0}
}
@media (max-width:480px){
  .article-title{font-size:1.4rem!important;text-align: justify;}
  .article-content{font-size:0.8rem!important;text-align: justify;}
  .faq-section h2{font-size:1.5rem}
  .sub_heading{
    font-size:12px;
    margin:5px 0px 5px 0px;
  }
   .breadcrumb ol{font-size:.6rem}
   .article-card{
    margin:0px;
    padding:0px;
   }
   .top-menu-bar{
    display: none;
   }
}

 .sub_heading{
    font-size:12px;
    margin:5px 0px 5px 0px;
  }

/* ===== Breaking Bar (compact, minimal CLS) ===== */
.breaking{
  margin:.25rem .5rem;background:#d60000;color:#fff;border-radius:999px
}
.breaking:hover{background:#c40000}
.breaking__wrap{
  display:flex;align-items:center;gap:.5rem;padding:.25rem .5rem;min-height:30px
}
.breaking__label{
  font:700 .8rem/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding:.15rem .45rem;background:rgba(255,255,255,.12);border-radius:999px;white-space:nowrap
}
.breaking__sep{width:1px;height:1em;background:rgba(255,255,255,.35)}
.breaking__text{
  flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff;font-size:.85rem
}
.breaking__text:hover,.breaking__text:focus{color:#fff;text-decoration:underline;text-underline-offset:2px;outline:0}
.breaking__close{
  width:22px;height:22px;display:flex;align-items:center;justify-content:center;border-radius:999px;background:transparent;cursor:pointer;line-height:1
}
.breaking__close:hover{background:rgba(255,255,255,.22)}
.breaking__dismiss{display:none}
.breaking__dismiss:checked + .breaking__wrap{display:none}

@media (min-width:768px){
  .breaking{margin:.4rem auto;max-width:1200px}
}

/* ===== Motion safety ===== */
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
/* ===== Top Utility Menu (left time, right links, single-row) ===== */
.top-menu-bar{background:#000;color:#fff;font-size:.85rem;line-height:1;position:relative;z-index:20}
.top-menu-wrap{
  width:100%;max-width:none;padding:.5rem .75rem;
  display:flex;align-items:center;flex-wrap:nowrap;white-space:nowrap;
  gap:.75rem;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none
}
.top-menu-wrap::-webkit-scrollbar{display:none}

.top-menu-left{flex:0 0 auto;white-space:inherit}
.top-menu-time time{font-variant-numeric:tabular-nums}

.top-menu-links{
  list-style:none;margin:0;padding:0;
  display:flex;align-items:center;gap:.75rem;white-space:inherit;
  flex:0 0 auto;margin-left:auto /* pushes links to right edge */
}
.top-menu-links li{display:inline}
.top-menu-links a{color:#dbeafe;text-decoration:none;font-weight:500}
.top-menu-links a:hover{
  text-decoration:underline;opacity:.9
}

/* tighter spacing on very small screens (still single row) */
@media (max-width:480px){
  .top-menu-bar{font-size:.8rem}
  .top-menu-wrap{gap:.5rem}
  .top-menu-links{gap:.5rem}
}

/* Card styling only on archives/listing */
.article-list .article-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  padding:5px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.article-list .article-card:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 12px rgba(0,0,0,.15);
  border-color:rgba(0,0,0,.2);
}

/* Single post page reset (no card look) */
.article-content .article-card{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  text-align: justify;
}

/* ===== Related Posts — Mobile-first Compact List View ===== */
.related-posts-section{
  margin:12px 0;
}
.related-posts-title{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.2;
  font-weight:700;
  color:#1d3557;
}

/* List container */
.related-posts-list{
  display:block;
}

/* Each item */
.related-post-list-item{
  border-bottom:1px solid rgba(0,0,0,.08);
}
.related-post-list-item:last-child{
  border-bottom:0;
}

/* Clickable row */
.related-post-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  text-decoration:none;
  color:#111;
  -webkit-tap-highlight-color: transparent;
}

/* Thumbnail (square, rounded) */
.related-post-thumb{
  flex:0 0 48px;
  width:48px;
  height:48px;
  border-radius:8px;
  overflow:hidden;
  background:#f3f4f6;
}
.related-post-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Text area */
.related-post-list-content{
  min-width:0;      /* enables ellipsis */
  flex:1;
  display:flex;
  flex-direction:column;
  gap:4px;
}

/* Title: clamp to 2 lines */
.related-post-list-title{
  font-size:.95rem;
  line-height:1.25;
  font-weight:600;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Meta: small + subtle */
.related-post-list-meta{
  font-size:.78rem;
  color:#6b7280;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Hover/focus (accessible) */
.related-post-link:hover .related-post-list-title{
  color:#1d3557;
}
.related-post-link:focus-visible{
  outline:2px solid #e63946;
  outline-offset:2px;
  border-radius:6px;
}

/* Tighten on very small phones */
@media (max-width:380px){
  .related-post-link{ gap:8px; }
  .related-post-list-title{ font-size:.92rem; }
  .related-post-list-meta{ font-size:.75rem; }
}

/* Slightly roomier ≥600px, still list (not grid) */
@media (min-width:600px){
  .related-post-link{ padding:12px 0; }
  .related-post-list-title{ font-size:1rem; }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  *{ transition:none!important; animation:none!important; }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px; /* spacing */
}

.nav-menu li {
  position: relative;
  padding: 0 8px;
}

.nav-menu li:not(:last-child)::after {
  content: "•"; /* dot separator */
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999; /* subtle color */
}

/* Pagination styles for:
<nav class="pagination" aria-label="Page navigation">
  <a href="https://gcshorts.com/category/india/" class="prev">← Previous</a>
  <a href="https://gcshorts.com/category/india/page/3/" class="next">Next →</a>
</nav>
*/

/* Base reset */
.pagination, .pagination * {
  box-sizing: border-box;
}

/* Layout */
.pagination {
  --pg-bg: #ffffff;
  --pg-text: #111827;
  --pg-accent: #2563eb;      /* primary brand color */
  --pg-border: #e5e7eb;
  --pg-hover: #f3f4f6;
  --pg-shadow: 0 6px 18px rgba(0,0,0,.06);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .75rem;
  margin: 1.5rem auto;
  width: fit-content;
  background: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: 9999px;     /* pill */
  box-shadow: var(--pg-shadow);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Links */
.pagination a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  color: var(--pg-text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
  position: relative;
  isolation: isolate; /* for focus ring */
}

/* Prev/Next specific tweaks (optional widths for balance) */
.pagination .prev,
.pagination .next {
  min-width: 7.25rem; /* keep the two pills visually balanced */
  justify-content: center;
}

/* Hover / Active */
.pagination a:hover {
  background: var(--pg-hover);
  transform: translateY(-1px);
}

.pagination a:active {
  transform: translateY(0);
}

/* Focus (accessible) */
.pagination a:focus-visible {
  outline: none;
  border-color: color-mix(in oklab, var(--pg-accent) 65%, white);
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px color-mix(in oklab, var(--pg-accent) 65%, transparent);
}

/* Emphasize arrow text within the link (your arrows are part of the text) */
.pagination .prev,
.pagination .next {
  color: var(--pg-accent);
}

/* Subtle divider dot between buttons on wide screens */
.pagination::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--pg-border);
  border-radius: 50%;
  margin-left: .25rem;
  margin-right: .25rem;
  order: 0; /* placed after .prev by DOM flow */
}
.pagination a + a {
  order: 1;
}

/* Remove the divider on small screens where we stack */
@media (max-width: 460px) {
  .pagination {
    flex-direction: column;
    gap: .5rem;
    border-radius: 1rem;
    padding: .75rem;
    width: 100%;
    max-width: 22rem;
  }
  .pagination::after {
    display: none;
  }
  .pagination .prev,
  .pagination .next {
    width: 100%;
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .pagination {
    --pg-bg: #0b1220;
    --pg-text: #e5e7eb;
    --pg-accent: #60a5fa;
    --pg-border: #1f2937;
    --pg-hover: #111827;
    --pg-shadow: 0 8px 24px rgba(0,0,0,.35);
    border-color: var(--pg-border);
  }
  .pagination a:hover {
    background: var(--pg-hover);
  }
}

/* Optional: disabled state support (if you add aria-disabled="true") */
.pagination a[aria-disabled="true"] {
  pointer-events: none;
  opacity: .45;
  filter: saturate(.6);
  border-color: transparent;
  transform: none;
}


/*******************************this is for trendning blocks**********************************************/

    /* ===== Container (boxed) ===== */
.nb-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 12px;
}

/* ===== News Bar (prefixed nb-) ===== */
.nb-bar{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans",sans-serif;
  font-size:14px;
  color:#111;
  padding:8px 0;
  border-bottom:1px solid #eaeaea;
  white-space:nowrap;
}

.nb-left{display:flex;align-items:center;gap:6px;flex:0 0 auto;font-weight:600;color:#444}
.nb-icon{display:inline-flex}
.nb-label{color:#111}

.nb-ticker{flex:1 1 auto;overflow:hidden}
.nb-list{
  display:flex;align-items:center;gap:10px;overflow-x:auto;
  list-style:none;padding:0;margin:0;
  scrollbar-width:none;-ms-overflow-style:none;
}
.nb-list::-webkit-scrollbar{display:none}
.nb-list li{flex:0 0 auto;position:relative;padding-inline:8px}
.nb-list li:first-child{padding-left:0}
.nb-list li:not(:first-child){border-left:1px solid #d8d8d8}
.nb-list a{color:#1a1a1a;text-decoration:none}
.nb-list a:hover{text-decoration:underline}

/* Social */
.nb-social{display:flex;align-items:center;gap:8px;flex:0 0 auto;margin-left:6px}
.nb-follow{font-weight:600;color:#111;margin-right:4px}
.nb-soc{
  display:inline-flex;width:28px;height:28px;
  border-radius:50%;align-items:center;justify-content:center;
  color:#fff;text-decoration:none;
}
.nb-soc:before{content:"";width:16px;height:16px;mask-size:contain;-webkit-mask-size:contain;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;background:#fff}

/* Brand colors + icons */
.nb-wa{background:#25D366}
.nb-wa:before{mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/whatsapp.svg') no-repeat;-webkit-mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/whatsapp.svg') no-repeat}
.nb-fb{background:#1877F2}
.nb-fb:before{mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/facebook.svg') no-repeat;-webkit-mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/facebook.svg') no-repeat}
.nb-x{background:#000}
.nb-x:before{mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/x.svg') no-repeat;-webkit-mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/x.svg') no-repeat}
.nb-yt{background:#FF0000}
.nb-yt:before{mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/youtube.svg') no-repeat;-webkit-mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/youtube.svg') no-repeat}
.nb-tg{background:#0088cc}
.nb-tg:before{mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/telegram.svg') no-repeat;-webkit-mask:url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/telegram.svg') no-repeat}
.nb-ig {
  background: #E4405F; /* Official Instagram pink/red */
}
.nb-ig:before {
  mask: url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/instagram.svg') no-repeat;
  -webkit-mask: url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/instagram.svg') no-repeat;
}
/* ===== Mobile tweaks ===== */
@media (max-width: 768px){
  .nb-bar{font-size:12px;gap:8px;padding:6px 0}
  .nb-soc{width:24px;height:24px}
}
@media (max-width: 520px){
  .nb-bar{font-size:11px}
  .nb-follow{display:none}
}


/*****************************this is for tredning blockls***************************************/