/* ==========================================================
   METALEX BLOGS — SHARED DESIGN SYSTEM
   Fonts: Fraunces / Archivo / JetBrains Mono
   Edit brand values only in :root.
========================================================== */
:root {
  --deep: #0b2545;
  --blue: #2b5a9e;
  --sky: #4a8cd6;
  --frost: #dce7f4;
  --teal: #00acc1;
  --ice: #e8f4f7;
  --ink: #1a2332;
  --steel: #546e7a;
  --mist: #f5f7fa;
  --white: #fff;
  --green: #7bc242;
  --display: "Fraunces", Georgia, serif;
  --sans: "Archivo", Arial, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --gutter: clamp(16px, 3vw, 40px);
  --page: min(1400px, calc(100vw - (var(--gutter) * 2)));
  --article: 920px;
  --radius: 18px;
  --line: rgba(11, 37, 69, .12);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

body.no-scroll {
  overflow: hidden
}

img,
video {
  display: block;
  max-width: 100%
}

a {
  color: inherit
}

button,
input {
  font: inherit
}

button {
  cursor: pointer
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -90px;
  z-index: 10000;
  background: var(--deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px
}

.skip-link:focus {
  top: 14px
}

.wrap {
  width: var(--page);
  margin: auto
}

.blog-main {
  overflow: hidden
}

.mx-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600
}

.mx-kicker:before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor
}

.blog-hero {
  position: relative;
  background: var(--deep);
  color: #fff;
  padding: clamp(48px, 7vw, 88px) 0 42px;
  overflow: hidden
}

.blog-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 94%)
}

.blog-hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -200px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 193, .25), transparent 68%)
}

.blog-hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end
}

.blog-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.048em;
  margin: 18px 0 20px;
  max-width: 880px
}

.blog-hero h1 em {
  font-weight: 300;
  color: #b9ddff
}

.blog-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  max-width: 600px
}

.hero-note {
  border-left: 1px solid rgba(255, 255, 255, .24);
  padding-left: 24px
}

.hero-note strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px
}

.hero-note span {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .84rem;
  line-height: 1.7
}

.blog-toolbar {
  border-bottom: 1px solid var(--line);
  background: #fff
}

.toolbar-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.toolbar-copy {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .65rem;
  color: var(--steel)
}

.category-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.category-pill {
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--mist)
}

.blog-grid-section {
  padding: 36px 0 44px;
  background: var(--white)
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 90, 158, .42);
  box-shadow: 0 18px 46px rgba(11, 37, 69, .12)
}

.card-media {
  aspect-ratio: 20/9;
  background: var(--frost);
  overflow: hidden;
  position: relative
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.blog-card:hover .card-media img {
  transform: scale(1.035)
}

.card-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 37, 69, .9);
  color: #fff;
  padding: 7px 9px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em
}

.card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px
}

.card-category {
  color: var(--teal);
  font-weight: 600
}

.card-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 0.65vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--deep);
  margin: 0 0 10px
}

.card-excerpt {
  color: var(--steel);
  font-size: .86rem;
  line-height: 1.62;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden
}

.card-footer {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue)
}

.card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--frost);
  transition: .25s
}

.blog-card:hover .card-arrow {
  background: var(--blue);
  color: #fff;
  transform: translateX(2px)
}

.pagination-wrap {
  padding: 0 0 45px
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.page-link {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--deep);
  background: #fff
}

.page-link:hover,
.page-link[aria-current="page"] {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep)
}

.page-link.disabled {
  opacity: .35;
  pointer-events: none
}

.blogs-cta {
  background: var(--ice);
  padding: 32px 0
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(0, 172, 193, .22);
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 28px
}

.cta-box h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--deep)
}

.cta-box p {
  margin: 6px 0 0;
  color: var(--steel);
  font-size: .9rem
}

.mx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap
}

.mx-btn:hover {
  background: var(--deep)
}

/* Article */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--teal);
  z-index: 9999
}

.article-hero {
  position: relative;
  background: var(--deep);
  color: #fff;
  padding: clamp(46px, 6vw, 76px) 0 38px;
  overflow: hidden
}

.article-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent)
}

.article-hero .wrap {
  position: relative;
  z-index: 1
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 28px
}

.breadcrumbs a {
  text-decoration: none
}

.breadcrumbs a:hover {
  color: #fff
}

.article-category {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #8feaf2;
  font-weight: 600
}

.article-display-title {
  font-family: var(--display);
  font-size: clamp(2.8rem,3.8vw, 5.7rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.048em;
  max-width: 1120px;
  margin: 14px 0 19px
}

.article-dek {
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, .75);
  max-width: 800px;
  margin: 0
}

.article-byline {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62)
}

.featured-media {
  padding: 22px 0 0;
  background: #fff
}

.featured-media figure {
  margin: 0
}

.featured-media img {
  width: 100%;
  aspect-ratio: 23/7.7;
  object-fit: cover;
  border-radius: var(--radius)
}

.media-caption {
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .07em;
  color: var(--steel);
  padding: 9px 2px 0;
  line-height: 1.6
}

.article-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  padding: 36px 0 48px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 170px
}

.aside-label {
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px
}

.aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line)
}

.aside-list li {
  border-bottom: 1px solid var(--line)
}

.aside-list a {
  display: block;
  text-decoration: none;
  padding: 11px 0;
  font-size: .74rem;
  line-height: 1.4;
  color: var(--steel)
}

.aside-list a:hover {
  color: var(--blue)
}

.share-row {
  display: flex;
  gap: 8px;
  margin-top: 18px
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .64rem
}

.share-btn:hover {
  background: var(--frost)
}

.article-content {
  min-width: 0
}

.article-content .lead {
  font-size: 1.11rem;
  line-height: 1.84;
  color: var(--ink);
  margin: 0 0 25px
}

.article-content h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 2.3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--deep);
  margin: 34px 0 15px
}

.article-content h3 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.16;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--deep);
  margin: 31px 0 11px
}

.article-content p {
  font-size: 1rem;
  line-height: 1.86;
  color: #334257;
  margin: 0 0 19px
}

.article-content ul {
  margin: 21px 0 27px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line)
}

.article-content li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  color: #334257
}

.article-content li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--ice)
}

.pull-quote {
  margin: 31px 0;
  padding: 24px 25px 24px 28px;
  border-left: 4px solid var(--teal);
  background: var(--ice);
  font-family: var(--display);
  font-size: clamp(0.65rem, 1.3vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--deep)
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  font-style: normal
}

.inline-media {
  margin: 30px 0
}

.inline-media img {
  width: 100%;
  aspect-ratio: 22/9;
  object-fit: cover;
  border-radius: 14px
}

.video-block {
  margin: 31px 0
}

.video-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px
}

.video-head h3 {
  margin: 0
}

.video-head span {
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--steel)
}

.video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--deep);
  aspect-ratio: 23/9
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.info-note {
  margin: 27px 0;
  padding: 18px 20px;
  border: 1px solid rgba(43, 90, 158, .2);
  border-radius: 12px;
  background: var(--mist)
}

.info-note strong {
  display: block;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px
}

.info-note p {
  font-size: .88rem;
  margin: 0;
  line-height: 1.65
}

.article-end {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel)
}

.article-rail {
  min-height: 1px
}

.related-section {
  background: var(--mist);
  padding: 36px 0 42px
}

.related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px
}

.related-head h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  color: var(--deep);
  margin: 0
}

.related-head a {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue)
}

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

.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

.related-card div {
  padding: 14px
}

.related-card span {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal)
}

.related-card h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 7px 0 0;
  color: var(--deep)
}

/* Footer */
.site-footer {
  background: #071a31;
  color: #fff;
  padding: 34px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px
}

.footer-brand {
  font-family: var(--display);
  font-size: 2.05rem;
  font-style: italic
}

.footer-brand sup {
  font-family: var(--mono);
  font-size: .38em
}

.site-footer p {
  color: rgba(255, 255, 255, .58);
  font-size: .83rem;
  max-width: 420px
}

.footer-title {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8feaf2;
  margin-bottom: 10px
}

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

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  text-decoration: none
}

.footer-links a:hover {
  color: #fff
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42)
}

/* Responsive */
@media(max-width:1050px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .article-layout {
    grid-template-columns: 150px minmax(0, 1fr)
  }

  .article-rail {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr
  }

  .footer-grid>div:last-child {
    grid-column: 1/-1
  }

  .blog-hero .wrap {
    grid-template-columns: 1fr
  }

  .hero-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 18px 0 0;
    max-width: 620px
  }
}

@media(max-width:760px) {
  .blog-hero {
    padding: 42px 0 30px
  }

  .blog-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem)
  }

  .toolbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0
  }

  .category-list {
    justify-content: flex-start
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .cta-box {
    grid-template-columns: 1fr
  }

  .article-display-title {
    font-size: clamp(2.55rem, 8vw, 4rem)
  }

  .featured-media img {
    aspect-ratio: 16/10;
    border-radius: 12px
  }

  .article-layout {
    display: block;
    padding-top: 25px
  }

  .article-aside {
    position: static;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--mist)
  }

  .aside-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    margin-bottom: 16px
  }

  .aside-list a {
    padding: 10px 0;
    font-size: .72rem
  }

  .article-aside .aside-label[style] {
    margin-top: 16px !important
  }

  .share-row {
    margin: 8px 0 0
  }

  .article-content .lead {
    font-size: 1.05rem
  }

  .related-grid {
    grid-template-columns: 1fr
  }

  .related-head {
    align-items: flex-start;
    flex-direction: column
  }

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

  .footer-grid>div:last-child {
    grid-column: auto
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important
  }
}
/* Automatic blog feed states */
.blog-feed-status {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--steel);
  text-align: center;
  font-family: var(--mono);
  font-size: .72rem;
  line-height: 1.7;
}

.blog-feed-error code {
  color: var(--deep);
  font-family: inherit;
}

/* ==========================================================
   BALANCED EDITORIAL ARTICLE WIDTH
   The hero image is a simple centred block. It is no longer
   shifted toward the text column or enlarged beyond its grid.
========================================================== */
.article-hero .wrap,
.featured-media .wrap,
.article-layout {
  width: min(1040px, calc(100vw - (var(--gutter) * 2)));
}

.article-hero .wrap {
  max-width: 1040px;
}

.article-display-title {
  max-width: 940px;
}

.article-dek {
  max-width: 720px;
}

/* Natural editorial image: centred, compact and never stretched. */
.featured-media {
  padding-top: clamp(18px, 2.4vw, 30px);
}

.featured-media .wrap {
  display: block;
}

.featured-media figure {
  width: min(880px, 100%);
  margin: 0 auto;
}

.featured-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: var(--mist);
}

.featured-media .media-caption {
  width: 100%;
  padding-top: 10px;
}

.article-layout {
  grid-template-columns: 180px minmax(0, 760px);
  justify-content: center;
  gap: clamp(28px, 4vw, 48px);
}

.article-content {
  width: 100%;
  max-width: 760px;
}

.inline-media {
  width: min(720px, 100%);
  margin-inline: auto;
}

.inline-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media(max-width:1050px) {
  .article-layout {
    grid-template-columns: 150px minmax(0, 700px);
  }
}

@media(max-width:760px) {
  .article-hero .wrap,
  .featured-media .wrap,
  .article-layout {
    width: min(100% - 32px, 700px);
  }

  .featured-media figure,
  .featured-media .media-caption,
  .article-content,
  .inline-media {
    width: 100%;
    max-width: none;
  }

  .featured-media img {
    max-height: none;
    border-radius: 9px;
  }
}
/* Sticky nav ke peeche content jaane se rokega */
:root {
  --article-scroll-offset: 180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--article-scroll-offset);
}

/* Article ke anchor sections */
.article-content section[id],
.article-content [id],
.article-body section[id],
.article-body [id] {
  scroll-margin-top: var(--article-scroll-offset);
}

/* Tablet */
@media (max-width: 991px) {
  :root {
    --article-scroll-offset: 135px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --article-scroll-offset: 95px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

.article-content [id],
.article-body [id],
article [id] {
  scroll-margin-top: 180px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 135px;
  }

  .article-content [id],
  .article-body [id],
  article [id] {
    scroll-margin-top: 135px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 95px;
  }

  .article-content [id],
  .article-body [id],
  article [id] {
    scroll-margin-top: 95px;
  }
}