* {
  box-sizing: border-box;
}

body {
  background-color: #1e201e;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  position: relative;
  z-index: -2;
}

.site-wrapper {
  background-color: #1e201e;
}

@font-face {
  font-family: "PPCirka";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/PPCirka/PPCirka-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PPCirka";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/PPCirka/PPCirka-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-300.woff2") format("woff2");
  font-display: swap;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(/assets/video/ezgif-4-25017e4f0a.gif);
  z-index: 300;
  width: 100%;
  height: 300vh;
  opacity: 0.03;
  pointer-events: none;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 2.6rem;
  z-index: 100;
  transition:
    top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease-in-out;
}

.header-desktop.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-desktop nav > div:first-child a {
  display: flex;
  align-items: center;
}

.header-desktop nav > div:first-child img {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: "PPCirka", sans-serif;
  color: #fcf7eb;
  font-size: 1.4rem;
  font-weight: 100;
  text-decoration: none;
}

.nav-dropdown {
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "PPCirka", sans-serif;
  color: #fcf7eb;
  font-size: 1.4rem;
  font-weight: 100;
}

.nav-dropdown-toggle img,
.lang-menu img {
  width: 0.75rem;
  height: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: -3px;
}

.nav-dropdown.is-open .nav-dropdown-toggle img {
  transform: rotate(180deg);
}

.lang-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-button,
.nav-dropdown-toggle {
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.nav-links:hover .nav-link:not(:hover),
.nav-links:hover .nav-button:not(:hover),
.nav-links:hover .nav-dropdown-toggle:not(:hover) {
  filter: blur(1.5px);
}

.nav-button {
  cursor: pointer;
  font-family: "Roboto", sans-serif !important;
  font-weight: 100;
  font-size: 1.2rem;
  color: #fcf7eb;
  background: transparent;
  border: 1px solid #fcf7eb;
  padding: 15px 35px;
  border-radius: 45px;
}

.studio-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 9rem 3rem 2.5rem 3rem;
  z-index: 4;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.studio-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(252, 247, 235, 0.14);
  z-index: -1;
}

.nav-dropdown.is-open ~ .studio-dropdown,
.header-desktop.dropdown-open .studio-dropdown {
  pointer-events: auto;
  visibility: visible;
}

.studio-dropdown__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(600px, 1.32fr);
  gap: 3rem;
  align-items: start;
}

.studio-dropdown__intro {
  max-width: 42rem;
  color: #fcf7eb;
}

.studio-dropdown__intro h2 {
  font-family: "PPCirka", serif;
  font-size: 2.4rem;
  line-height: 0.95;
  font-weight: 300;
  margin: 0 0 1.3rem;
  color: #fcf7eb;
  max-width: 18ch;
}

.studio-dropdown__intro p {
  display: block;
  font-family: "Roboto", sans-serif;
  color: rgba(252, 247, 235, 0.72);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 100;
  max-width: 35rem;
  margin: 0;
}

.studio-dropdown__grid {
  width: 100%;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.studio-dropdown__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(252, 247, 235, 0.16);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(252, 247, 235, 0.045);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}

.studio-dropdown__card:hover {
  transform: translateY(-5px);
  background: rgba(252, 247, 235, 0.08);
  border-color: rgba(252, 247, 235, 0.35);
}

.studio-dropdown__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: rgba(252, 247, 235, 0.08);
}

.studio-dropdown__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.06);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.studio-dropdown__card:hover .studio-dropdown__image img {
  transform: scale(1);
  filter: contrast(1.05);
}

.studio-dropdown__card > div:last-child {
  min-height: 6.6rem;
  padding: 0.9rem;
}

.studio-dropdown__card h3 {
  display: block;
  font-family: "PPCirka", serif;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 300;
  color: #fcf7eb;
  margin: 0 0 0.55rem;
}

.studio-dropdown__card p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 100;
  color: rgba(252, 247, 235, 0.65);
  margin: 0;
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.2rem;
  }

  .nav-link,
  .nav-button,
  .nav-dropdown-toggle {
    font-size: 1.15rem;
  }

  .studio-dropdown {
    padding-top: 8rem;
  }

  .studio-dropdown__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .studio-dropdown__intro {
    max-width: 44rem;
  }

  .studio-dropdown__intro h2 {
    max-width: 20ch;
  }

  .studio-dropdown__grid {
    max-width: none;
    justify-self: stretch;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #fcf7eb;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fcf7eb;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #1e201e;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #fcf7eb;
  font-family: "PPCirka", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #fcf7eb;
  font-family: "PPCirka", sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #fcf7eb;
  margin: 0 0.5rem;
}

main {
  padding: 12rem 8rem 0rem 8rem;
  background-color: #1e201e;
}

h1 {
  color: #fcf7eb;
  font-weight: 200;
  font-family: "PPCirka", sans-serif;
  font-size: 3.8rem;
  margin-bottom: 0.8rem;
}

.desktop-only {
  display: inline;
}
.mobile-only {
  display: none;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #fff3;
  margin-top: 2rem;
}

.about-intro-wrapper {
  width: 80%;
  margin-top: 4rem;
}

main h2 {
  color: #fcf7eb;
  font-weight: 200;
  font-family: "PPCirka", sans-serif;
  font-size: 2.7rem;
  margin-bottom: 2rem;
}

main h3 {
  color: #fcf7eb;
  font-weight: 200;
  font-family: "PPCirka", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

main p {
  color: #fcf7eb;
  font-size: 1.4rem;
  font-weight: 100;
}

main a {
  color: #b90b0b;
  text-decoration: none;
  font-weight: 100;
  font-size: 1.4rem;
}

.tattoo-images {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
  margin-top: 4rem;
}

.tattoo-pflege-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.example-item {
  width: 33%;
  max-height: 600px;
}

.example-item-double {
  width: 50%;
  max-height: 600px;
}

.large-example {
  width: 100%;
  height: 750px;
}

.example-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-item-double img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

article {
  padding: 2rem 8rem 6rem 8rem;
}

.spacing-article {
  margin-top: 5rem;
}

article h2 {
  color: #fcf7eb;
  font-weight: 200;
  font-family: "PPCirka", sans-serif;
  font-size: 2.7rem;
  margin-bottom: 2rem;
}

article h3 {
  color: #fcf7eb;
  font-weight: 200;
  font-family: "PPCirka", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

article p {
  color: #fcf7eb;
  font-size: 1.4rem;
  font-weight: 100;
}

article ul li {
  color: #fcf7eb;
  font-size: 1.4rem;
  font-weight: 100;
}

article ol li {
  color: #fcf7eb;
  font-size: 1.4rem;
  font-weight: 100;
}

article a {
  color: #b90b0b;
  text-decoration: none;
  font-weight: 100;
  font-size: 1.4rem;
}

.line-2 {
  width: 100%;
  height: 1px;
  background-color: #fff3;
  margin: 4rem 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.link-btn-wrapper {
  display: flex;
  align-items: center;
}

.button-container {
  height: 52px;
}

.cta-btn-hero {
  cursor: pointer;
  font-family: "PPCirka", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  color: #fcf7eb;
  border: 1px solid #fcf7eb;
  padding: 14px 26px;
  border-radius: 45px;
  transition: background 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  margin: 0;
}

.cta-btn-hero:hover {
  background: #fcf7eb;
  color: #1e201e;
}

.cta-link-hero {
  display: flex;
  gap: 3px;
  align-items: center;
  text-decoration: none;
  color: #fcf7eb;
  font-family: "PPCirka", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
}

.articles-bottom {
  margin-top: 8rem;
  border-top: 1px solid #363636;
}

.articles-bottom h2 {
  color: #fcf7eb;
  font-weight: 200;
  font-family: "PPCirka", sans-serif;
  font-size: 2.7rem;
  margin-bottom: 2rem;
}

.suggested-articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.blog-item {
  background-color: #2f2f2f;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
}

.blog-text {
  padding: 1rem;
}

.blog-img {
  width: 100%;
  height: 320px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-item h4 {
  margin: 0;
  font-family: "PPCirka", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #fcf7eb;
  text-decoration: none;
}

.blog-item p {
  color: #fcf7eb;
  font-size: 1.3rem;
  font-weight: 100;
}

.blog-cta {
  display: flex;
  align-items: center;
  gap: 3px;
}

.blog-layout a.blog-item {
  display: block;
}

.blog-layout a {
  text-decoration: none;
}

.blog-cta {
  font-family: "PPCirka", sans-serif;
  color: #fcf7eb;
  font-size: 1.3rem;
  font-weight: 100;
  text-decoration: 1px solid underline !important;
  text-underline-offset: 2px !important;
  display: inline-block;
}

.blog-cta img {
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-cta:hover img {
  transform: rotate(360deg);
}

footer {
  background-color: #fcf7eb;
  padding: 4rem 8rem 0 8rem;
  min-height: 10vh;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-footer {
  width: 180px;
}

.social-links-layout {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  width: 65px;
  border-radius: 100%;
  border: 1px solid #363636;
  cursor: pointer;
}

.social-links-mobile {
  display: none;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 7rem 0;
}

.constent-linked {
  font-family: "PPCirka", sans-serif;
  font-weight: 200;
  font-size: 3rem;
  text-decoration: none;
  color: #363636;
}

.footer-item a .line2 {
  display: inline-flex;
  align-items: center;
}

.footer-item a .line2 img {
  margin-left: -8px;
}

.footer-item {
  width: 50%;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 6rem;
}

.quick-links h6 {
  font-family: "PPCirka", sans-serif;
  font-weight: 200;
  font-size: 1.8rem;
  margin: 0;
  color: #363636;
}

.quick-links ul {
  padding: 0;
}

.quick-links ul li {
  list-style: none;
  line-height: 1.7rem;
}

.quick-links a {
  font-size: 1.2rem;
  color: #363636;
  font-weight: 200;
  text-decoration: none;
}

.site-divider-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.line-divider-footer {
  width: 100%;
  height: 1px;
  background-color: #363636;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.footer-bottom p {
  color: #363636;
  font-size: 0.9rem;
  font-weight: 200;
  margin: 0;
}

.credits {
  color: #363636;
  font-size: 0.9rem;
  font-weight: 200;
  text-decoration: none;
}

.credits:hover {
  color: #03aed2;
}

.text {
  height: 1.4rem;
  line-height: 1.4rem;
  overflow: hidden !important;
  position: relative;
  display: inline-block;
}

.text.play .letter {
  transform: translateY(-100%);
}

.text .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.024, 1);
  position: relative;
}

.letter:nth-child(1) {
  transition-delay: 0s;
}
.letter:nth-child(2) {
  transition-delay: 0.015s;
}
.letter:nth-child(3) {
  transition-delay: 0.03s;
}
.letter:nth-child(4) {
  transition-delay: 0.045s;
}
.letter:nth-child(5) {
  transition-delay: 0.06s;
}
.letter:nth-child(6) {
  transition-delay: 0.075s;
}
.letter:nth-child(7) {
  transition-delay: 0.09s;
}
.letter:nth-child(8) {
  transition-delay: 0.105s;
}
.letter:nth-child(9) {
  transition-delay: 0.12s;
}
.letter:nth-child(10) {
  transition-delay: 0.135s;
}
.letter:nth-child(11) {
  transition-delay: 0.15s;
}
.letter:nth-child(12) {
  transition-delay: 0.165s;
}
.letter:nth-child(13) {
  transition-delay: 0.18s;
}
.letter:nth-child(14) {
  transition-delay: 0.195s;
}
.letter:nth-child(15) {
  transition-delay: 0.21s;
}
.letter:nth-child(16) {
  transition-delay: 0.225s;
}
.letter:nth-child(17) {
  transition-delay: 0.24s;
}
.letter:nth-child(18) {
  transition-delay: 0.255s;
}
.letter:nth-child(19) {
  transition-delay: 0.27s;
}
.letter:nth-child(20) {
  transition-delay: 0.285s;
}
.letter:nth-child(21) {
  transition-delay: 0.3s;
}
.letter:nth-child(22) {
  transition-delay: 0.315s;
}
.letter:nth-child(23) {
  transition-delay: 0.33s;
}
.letter:nth-child(24) {
  transition-delay: 0.345s;
}
.letter:nth-child(25) {
  transition-delay: 0.36s;
}
.letter:nth-child(26) {
  transition-delay: 0.375s;
}
.letter:nth-child(27) {
  transition-delay: 0.39s;
}
.letter:nth-child(28) {
  transition-delay: 0.405s;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #25d366 0%, #1fae55 100%);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow:
    0 127px 36px 0 rgba(0, 0, 0, 0),
    0 82px 33px 0 rgba(0, 0, 0, 0.01),
    0 46px 28px 0 rgba(0, 0, 0, 0.05),
    0 20px 20px 0 rgba(0, 0, 0, 0.09),
    0 5px 11px 0 rgba(0, 0, 0, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  animation: floatPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp p {
  margin: 0;
  color: #fcf7eb;
  font-weight: 300;
}

.floating-whatsapp img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  animation-play-state: paused;
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 3px;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    padding: 12px;
  }

  .floating-whatsapp p {
    display: none;
  }
  .floating-whatsapp img {
    width: 24px;
    height: 24px;
  }
  .noise {
    height: 150vh;
    opacity: 0.06;
  }
  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  main {
    padding: 35% 5% 15% 5%;
  }

  h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .title-s {
    font-size: 2.7rem !important;
  }

  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline;
  }

  .line {
    margin-top: 0;
  }

  .about-intro-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }

  article h2,
  main h2 {
    font-size: 2.2rem;
  }

  article h3,
  main h2 {
    font-size: 1.8rem;
  }

  main p,
  article p {
    font-size: 1.3rem;
  }

  .tattoo-images {
    flex-direction: column;
  }
  .example-item {
    width: 100%;
  }

  .example-item-double {
    width: 100%;
  }

  article {
    padding: 5% 5% 15% 5%;
  }

  .hero-buttons {
    margin-top: 3rem;
  }

  .link-btn-wrapper {
    display: none;
  }

  .line-2 {
    margin-top: 2.5rem;
  }

  .imageContainer {
    width: 500%;
  }

  .imageContainer .image {
    height: 370px;
  }

  .scroll-images-text {
    width: 100%;
  }

  .scroll-images-text h2 {
    font-size: 2.8rem;
  }

  .scroll-images {
    padding-bottom: 25%;
  }
  .suggested-articles {
    grid-template-columns: 1fr;
  }
  .articles-bottom h2 {
    font-size: 2.2rem;
  }

  footer {
    padding: 3rem 5% 0 5%;
  }
  .footer-top {
    display: none;
  }
  .constent-linked {
    font-size: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 4rem;
    margin: 7rem 0 2rem 0;
  }
  .quick-links {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-item {
    width: 100%;
  }
  .social-links-mobile {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .noise {
    height: 150vh;
    opacity: 0.06;
  }
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }

  main {
    padding: 20% 5% 0% 5%;
  }

  h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
  }

  .rmv {
    display: none;
  }

  article h2,
  main h2 {
    font-size: 2.2rem;
  }

  article h3,
  main h2 {
    font-size: 1.8rem;
  }

  main p,
  article p {
    font-size: 1.3rem;
  }

  .line {
    margin-top: 0;
  }

  .about-intro-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }

  .section-padding {
    padding: 10% 5% 15% 5%;
  }

  .hero-buttons {
    margin-top: 3rem;
  }

  .link-btn-wrapper {
    display: none;
  }

  .line-2 {
    margin-top: 4rem;
  }

  .imageContainer {
    width: 400%;
  }

  .imageContainer .image {
    height: 400px;
  }

  .scroll-images-text {
    width: 100%;
  }

  .scroll-images-text h2 {
    font-size: 3rem;
  }

  .scroll-images {
    padding-bottom: 15%;
  }
  .suggested-articles {
    grid-template-columns: 1fr 1fr;
  }
  .articles-bottom h2 {
    font-size: 2.2rem;
  }

  article {
    padding: 5% 5% 15% 5%;
  }

  footer {
    padding: 1rem 5% 0 5%;
  }
  .footer-top {
    display: none;
  }
  .constent-linked {
    font-size: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 4rem;
    margin: 7rem 0 2rem 0;
  }
  .quick-links {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-item {
    width: 100%;
  }
  .social-links-mobile {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }

  main {
    padding: 15% 5% 6rem 5%;
  }

  .section-padding {
    padding: 6rem 5%;
  }

  .scroll-images {
    padding-bottom: 10%;
  }

  .imageContainer {
    height: 400px;
    width: 200%;
  }

  footer {
    padding: 4rem 5% 0 5%;
  }

  .quick-links {
    gap: 2rem;
  }

  .constent-linked {
    font-size: 2.6rem;
  }
  .suggested-articles {
    grid-template-columns: 1fr 1fr;
  }
  .articles-bottom h2 {
    font-size: 2.2rem;
  }
}

/* --------------------------------------------------------------------------
   Blog article refinement v3: editorial, spacious, brand-led Sayagata layout
   -------------------------------------------------------------------------- */

:root {
  --blog-bg: #1e201e;
  --blog-ink: #fcf7eb;
  --blog-ink-strong: rgba(252, 247, 235, 0.96);
  --blog-muted: rgba(252, 247, 235, 0.68);
  --blog-soft: rgba(252, 247, 235, 0.46);
  --blog-faint: rgba(252, 247, 235, 0.28);
  --blog-rule: rgba(252, 247, 235, 0.16);
  --blog-rule-strong: rgba(252, 247, 235, 0.26);
  --blog-accent: #b90b0b;
  --blog-accent-soft: rgba(185, 11, 11, 0.76);
}

main.blog-main {
  padding: 10.8rem 8rem 0 8rem;
  background-color: var(--blog-bg);
}

.blog-hero {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.blog-hero__topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem 0 0.8rem;
  border-top: 1px solid var(--blog-rule);
  border-bottom: 1px solid var(--blog-rule);
}

.blog-kicker,
.blog-share__label,
.article-rail__title,
.article-cta__copy p,
.related-articles__kicker,
.related-card__topline,
.related-card__meta {
  margin: 0;
  color: var(--blog-soft);
  font-family: "Roboto", sans-serif;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  color: var(--blog-muted);
  font-family: "Roboto", sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 200;
}

.blog-article-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0.72rem 0.16rem 0;
  border-radius: 50%;
  background: var(--blog-faint);
}

.blog-main h1.title {
  max-width: 1140px;
  margin: 2.35rem 0 1.15rem;
  color: var(--blog-ink);
  font-family: "PPCirka", sans-serif;
  font-size: clamp(2.45rem, 3.45vw, 3.45rem);
  line-height: 1.02;
  font-weight: 200;
  letter-spacing: -0.032em;
}

.blog-main h1.title span {
  display: inline;
  color: rgba(252, 247, 235, 0.68);
}

.blog-main .line {
  margin-top: 0;
  background-color: var(--blog-rule);
}

.blog-hero__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: clamp(2.5rem, 6vw, 6.2rem);
  align-items: start;
  margin-top: 2.15rem;
}

.blog-main .about-intro-wrapper {
  width: 100%;
  max-width: 1010px;
  margin: 0;
}

.blog-main p.blog-dek {
  margin: 0;
  color: rgba(252, 247, 235, 0.82);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.08rem, 1.08vw, 1.2rem);
  line-height: 1.66;
  font-weight: 200;
}

.blog-share {
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 1px solid var(--blog-rule);
}

.blog-share__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.48rem;
  margin-top: 0.85rem;
}

.blog-share a,
.blog-share button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(185, 11, 11, 0.66);
  border-radius: 0;
  background: transparent;
  color: rgba(252, 247, 235, 0.86);
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 200;
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.blog-share a:hover,
.blog-share button:hover {
  color: var(--blog-ink);
  border-color: rgba(252, 247, 235, 0.55);
  transform: translateX(3px);
}

.blog-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
  align-items: start;
  margin-top: 3.35rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--blog-rule);
}

.blog-main .tattoo-images,
.blog-article .tattoo-images {
  display: grid;
  align-items: start;
}

.blog-main .example-item-double,
.blog-article .example-item-double,
.editorial-image {
  width: 100%;
  max-height: none;
  margin: 0;
}

.editorial-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: rgba(252, 247, 235, 0.05);
  filter: saturate(0.92) contrast(1.04);
}

.blog-hero__media .editorial-image:first-child img {
  height: clamp(410px, 42vw, 690px);
}

.blog-hero__media .editorial-image:last-child {
  margin-top: clamp(2.2rem, 5vw, 5.4rem);
}

.blog-hero__media .editorial-image:last-child img {
  height: clamp(300px, 31vw, 520px);
}

.editorial-image figcaption {
  max-width: 46rem;
  margin-top: 0.65rem;
  color: var(--blog-soft);
  font-family: "Roboto", sans-serif;
  font-size: 0.86rem;
  line-height: 1.42;
  font-weight: 200;
}

article.blog-article {
  padding: 4.7rem 8rem 7rem 8rem;
  background-color: var(--blog-bg);
  counter-reset: article-section;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(150px, 205px) minmax(0, 1fr);
  gap: clamp(2.75rem, 4.8vw, 5.75rem);
  align-items: start;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.article-rail {
  position: sticky;
  top: 8.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--blog-rule-strong);
}

.article-rail ol {
  display: grid;
  gap: 0.5rem;
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: rail;
}

.article-rail li {
  margin: 0;
  padding: 0;
  color: var(--blog-muted);
  font-size: 0.94rem;
}

.article-rail li::before {
  counter-increment: rail;
  content: "0" counter(rail);
  display: inline-block;
  min-width: 2rem;
  color: rgba(252, 247, 235, 0.32);
  font-family: "Roboto", sans-serif;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.article-rail a {
  color: rgba(252, 247, 235, 0.7);
  font-family: "Roboto", sans-serif;
  font-size: 0.93rem;
  line-height: 1.35;
  font-weight: 200;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.article-rail a:hover {
  color: var(--blog-ink);
  padding-left: 0.2rem;
}

.article-content {
  width: 100%;
  max-width: 1230px;
}

.blog-article .article-wrapper {
  display: grid;
  grid-template-columns: minmax(185px, 280px) minmax(0, 790px);
  column-gap: clamp(2.4rem, 4.6vw, 5.4rem);
  row-gap: 0;
  width: 100%;
  max-width: 1230px;
  margin: 0;
  padding-top: 2.75rem;
  border-top: 1px solid var(--blog-rule);
}

.blog-article .article-wrapper:first-child {
  padding-top: 0;
  border-top: 0;
}

.blog-article .article-wrapper.spacing-article,
.blog-article .article-wrapper + .article-wrapper {
  margin-top: 3.85rem;
}

.blog-article .article-wrapper > h2 {
  grid-column: 1;
  align-self: start;
  max-width: 18ch;
  margin: 0;
  color: var(--blog-ink-strong);
  font-family: "PPCirka", sans-serif;
  font-size: clamp(1.5rem, 1.38vw, 1.82rem);
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -0.018em;
}

.blog-article .article-wrapper > h2::before {
  counter-increment: article-section;
  content: "0" counter(article-section);
  display: block;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid var(--blog-accent-soft);
  color: rgba(252, 247, 235, 0.42);
  font-family: "Roboto", sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.16em;
}

.blog-article .article-wrapper > *:not(h2) {
  grid-column: 2;
  max-width: 790px;
}

.blog-article .article-wrapper h3 {
  margin: 1.75rem 0 0.42rem;
  color: rgba(252, 247, 235, 0.92);
  font-family: "PPCirka", sans-serif;
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 200;
  letter-spacing: -0.005em;
}

.blog-article .article-wrapper > h2 + h3 {
  margin-top: 0.05rem;
}

.blog-article .article-wrapper p,
.blog-article .article-wrapper ul li,
.blog-article .article-wrapper ol li {
  color: rgba(252, 247, 235, 0.78);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.04rem, 0.95vw, 1.12rem);
  line-height: 1.72;
  font-weight: 200;
}

.blog-article .article-wrapper p {
  margin: 0.72rem 0 0;
}

.blog-article .article-wrapper ul,
.blog-article .article-wrapper ol {
  margin: 0.82rem 0 1.05rem;
  padding-left: 1.1rem;
}

.blog-article .article-wrapper li::marker {
  color: rgba(252, 247, 235, 0.55);
}

.blog-article .article-wrapper ul li,
.blog-article .article-wrapper ol li {
  padding-left: 0.22rem;
}

.blog-article .article-wrapper ul li + li,
.blog-article .article-wrapper ol li + li {
  margin-top: 0.2rem;
}

.blog-article .article-wrapper a {
  color: var(--blog-ink);
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(185, 11, 11, 0.82);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.blog-article .article-wrapper a:hover {
  color: rgba(252, 247, 235, 0.66);
}

.article-image-pair {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
  width: 100%;
  max-width: 1230px;
  margin: 4.15rem 0 0;
  padding-top: 1.05rem;
  border-top: 1px solid var(--blog-rule);
}

.article-image-pair .editorial-image:first-child img {
  height: clamp(280px, 27vw, 465px);
}

.article-image-pair .editorial-image:last-child {
  margin-top: clamp(1.8rem, 4vw, 4.4rem);
}

.article-image-pair .editorial-image:last-child img {
  height: clamp(320px, 31vw, 540px);
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  width: 100%;
  max-width: 1230px;
  margin-top: 4.5rem;
  padding: 1.35rem 0 1.45rem;
  border-top: 1px solid var(--blog-rule-strong);
  border-bottom: 1px solid var(--blog-rule-strong);
}

.article-cta__copy h2 {
  max-width: 760px;
  margin: 0.42rem 0 0;
  color: var(--blog-ink);
  font-family: "PPCirka", sans-serif;
  font-size: clamp(1.45rem, 1.65vw, 1.9rem);
  line-height: 1.12;
  font-weight: 200;
  letter-spacing: -0.018em;
}

.article-cta__copy h2::before {
  display: none;
}

.blog-article .hero-buttons {
  justify-content: flex-end;
  margin-top: 0;
}

.blog-article .cta-btn-hero,
.blog-article .cta-link-hero {
  font-size: 1.02rem;
}

.related-articles {
  width: 100%;
  max-width: 1230px;
  margin-top: 5.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--blog-rule-strong);
}

.related-articles__header {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 700px);
  column-gap: clamp(2.4rem, 4.6vw, 5.4rem);
  align-items: end;
  margin-bottom: 1.35rem;
}

.related-articles__kicker {
  align-self: start;
  padding-top: 0.35rem;
}

.related-articles__header h2 {
  grid-column: 2;
  margin: 0;
  color: var(--blog-ink);
  font-family: "PPCirka", sans-serif;
  font-size: clamp(1.55rem, 1.7vw, 2rem);
  line-height: 1.08;
  font-weight: 200;
  letter-spacing: -0.02em;
}

.related-articles__header p:not(.related-articles__kicker) {
  grid-column: 2;
  max-width: 620px;
  margin: 0.55rem 0 0;
  color: var(--blog-muted);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 200;
}

.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.35vw, 1.25rem);
}

.related-article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: var(--blog-ink);
  text-decoration: none;
  border-top: 1px solid var(--blog-rule);
  border-bottom: 1px solid var(--blog-rule);
  transition:
    border-color 0.28s ease,
    transform 0.28s ease;
}

.related-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 247, 235, 0.34);
}

.related-card__image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: rgba(252, 247, 235, 0.05);
}

.related-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  height: auto;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.025);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.related-article-card:hover .related-card__image img {
  transform: scale(1.001);
  filter: saturate(0.98) contrast(1.08);
}

.related-card__content {
  display: flex;
  flex-direction: column;
  padding: 0.95rem 0 1rem;
}

.related-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(252, 247, 235, 0.42);
}

.related-article-card h3 {
  margin: 1.05rem 0 0;
  color: var(--blog-ink);
  font-family: "PPCirka", sans-serif;
  font-size: clamp(1.2rem, 1.28vw, 1.48rem);
  line-height: 1.13;
  font-weight: 200;
  letter-spacing: -0.015em;
}

.related-article-card p {
  margin: 0.72rem 0 1.15rem;
  color: var(--blog-muted);
  font-family: "Roboto", sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 200;
}

.related-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(252, 247, 235, 0.12);
  color: rgba(252, 247, 235, 0.5);
  letter-spacing: 0.08em;
}

.related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  margin-top: 1rem;
  color: rgba(252, 247, 235, 0.86);
  font-family: "PPCirka", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 200;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(185, 11, 11, 0.72);
}

.related-card__link img {
  transition: transform 0.3s ease;
}

.related-article-card:hover .related-card__link img {
  transform: translate(2px, -2px);
}

@media (min-width: 1500px) {
  main.blog-main,
  article.blog-article {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .blog-main h1.title {
    max-width: 1180px;
  }
}

@media (max-width: 1200px) {
  main.blog-main {
    padding: 9.4rem 5% 0 5%;
  }

  article.blog-article {
    padding: 4rem 5% 6rem 5%;
  }

  .blog-hero__summary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-share {
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid var(--blog-rule);
    border-bottom: 1px solid var(--blog-rule);
  }

  .blog-share__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .article-rail {
    position: static;
    display: none;
  }

  .article-content,
  .blog-article .article-wrapper,
  .article-image-pair,
  .article-cta,
  .related-articles {
    max-width: none;
  }

  .blog-article .article-wrapper,
  .related-articles__header {
    grid-template-columns: minmax(170px, 245px) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-hero__media,
  .article-image-pair,
  .related-articles__grid {
    grid-template-columns: 1fr;
  }

  .blog-hero__media .editorial-image:last-child,
  .article-image-pair .editorial-image:last-child {
    margin-top: 0;
  }

  .related-card__image img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  main.blog-main {
    padding: 7.6rem 5% 0 5%;
  }

  .blog-hero__topline {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    align-items: start;
  }

  .blog-article-meta {
    justify-content: flex-start;
    gap: 0.35rem 0.85rem;
    font-size: 0.84rem;
  }

  .blog-article-meta span + span::before {
    margin-right: 0.55rem;
  }

  .blog-main h1.title {
    margin-top: 1.8rem;
    font-size: clamp(2.12rem, 10.8vw, 2.82rem);
    line-height: 1.02;
  }

  .blog-main h1.title span {
    display: block;
    margin-top: 0.16rem;
  }

  .blog-main p.blog-dek {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .blog-hero__media {
    margin-top: 2.35rem;
  }

  .blog-hero__media .editorial-image:first-child img,
  .blog-hero__media .editorial-image:last-child img,
  .article-image-pair .editorial-image:first-child img,
  .article-image-pair .editorial-image:last-child img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  article.blog-article {
    padding: 3.15rem 5% 5rem 5%;
  }

  .blog-article .article-wrapper,
  .related-articles__header {
    display: block;
  }

  .blog-article .article-wrapper.spacing-article,
  .blog-article .article-wrapper + .article-wrapper {
    margin-top: 3.1rem;
  }

  .blog-article .article-wrapper {
    padding-top: 2.1rem;
  }

  .blog-article .article-wrapper:first-child {
    padding-top: 0;
  }

  .blog-article .article-wrapper > h2 {
    max-width: none;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 1.12;
  }

  .blog-article .article-wrapper > *:not(h2) {
    max-width: none;
  }

  .blog-article .article-wrapper h3 {
    font-size: 1.1rem;
    margin-top: 1.55rem;
  }

  .blog-article .article-wrapper > h2 + h3 {
    margin-top: 0;
  }

  .blog-article .article-wrapper p,
  .blog-article .article-wrapper ul li,
  .blog-article .article-wrapper ol li {
    font-size: 1.02rem;
    line-height: 1.66;
  }

  .article-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.35rem;
    margin-top: 3.6rem;
  }

  .article-cta__copy h2 {
    font-size: 1.42rem;
  }

  .blog-article .hero-buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .related-articles {
    margin-top: 4.25rem;
  }

  .related-articles__header h2 {
    margin-top: 0.9rem;
    font-size: 1.55rem;
  }

  .related-articles__grid {
    gap: 1.5rem;
  }

  .related-article-card h3 {
    font-size: 1.28rem;
  }
}

@media print {
  .header-desktop,
  .mobile-header,
  .menu-mobile,
  .floating-whatsapp,
  .noise,
  footer,
  .blog-share,
  .article-rail,
  .article-cta,
  .related-articles {
    display: none !important;
  }

  body,
  .site-wrapper,
  main.blog-main,
  article.blog-article {
    background: #ffffff !important;
    color: #111111 !important;
  }

  main.blog-main,
  article.blog-article {
    padding: 0 !important;
  }

  .blog-main h1.title,
  .blog-main h1.title span,
  .blog-main p.blog-dek,
  .blog-article h2,
  .blog-article h3,
  .blog-article p,
  .blog-article li {
    color: #111111 !important;
  }
}

/* --------------------------------------------------------------------------
   Blog Detail Refinement v4
   -------------------------------------------------------------------------- */

.blog-quick-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(252, 247, 235, 0.14);
  border-radius: 999px;
  background: rgba(252, 247, 235, 0.035);
  color: rgba(252, 247, 235, 0.55);
}

.blog-quick-nav a {
  color: rgba(252, 247, 235, 0.76);
  font-family: "Roboto", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-quick-nav a:hover {
  color: var(--blog-ink);
}

.blog-quick-nav span {
  color: rgba(252, 247, 235, 0.34);
  font-size: 0.88rem;
}

.blog-hero__topline {
  padding-top: 0.78rem;
  padding-bottom: 0.82rem;
}

.blog-article-meta {
  font-size: 0.98rem;
}

.blog-main h1.title {
  max-width: 1220px;
  font-size: clamp(2.55rem, 3.35vw, 3.55rem);
  letter-spacing: -0.028em;
}

.blog-hero__summary {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(2.4rem, 5vw, 5.4rem);
  margin-top: 2.25rem;
}

.blog-main .about-intro-wrapper {
  max-width: 1080px;
}

.blog-main p.blog-dek {
  max-width: 1060px;
  font-size: clamp(1.18rem, 1.14vw, 1.33rem);
  line-height: 1.66;
  color: rgba(252, 247, 235, 0.84);
}

.blog-share {
  justify-self: end;
  width: min(100%, 340px);
  padding: 0.82rem;
  border: 1px solid var(--blog-rule);
  border-radius: 0;
  background: rgba(252, 247, 235, 0.032);
}

.blog-share__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.72rem;
}

.blog-share a,
.blog-share button {
  min-height: 2.55rem;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.52rem 0.62rem;
  border: 1px solid rgba(252, 247, 235, 0.12);
  border-radius: 999px;
  background: rgba(252, 247, 235, 0.042);
  color: rgba(252, 247, 235, 0.86);
  font-size: 0.9rem;
  line-height: 1.1;
  text-decoration: none;
}

.blog-share a:hover,
.blog-share button:hover {
  color: var(--blog-ink);
  border-color: rgba(252, 247, 235, 0.28);
  background: rgba(252, 247, 235, 0.075);
  transform: translateY(-1px);
}

.blog-share img,
.share-action__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.08rem;
  height: 1.08rem;
  align-items: center;
  justify-content: center;
}

.blog-share img {
  object-fit: contain;
}

.share-action__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-hero__media,
.article-image-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.blog-hero__media .editorial-image:last-child,
.article-image-pair .editorial-image:last-child {
  margin-top: 0;
}

.blog-hero__media .editorial-image,
.article-image-pair .editorial-image {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.blog-hero__media .editorial-image:first-child img,
.blog-hero__media .editorial-image:last-child img {
  height: clamp(420px, 34vw, 620px);
  aspect-ratio: 4 / 3;
}

.article-image-pair .editorial-image:first-child img,
.article-image-pair .editorial-image:last-child img {
  height: clamp(360px, 29vw, 520px);
  aspect-ratio: 4 / 3;
}

.editorial-image figcaption {
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(252, 247, 235, 0.55);
}

.article-layout {
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  max-width: 1680px;
  gap: clamp(2.6rem, 4vw, 5rem);
}

.article-content {
  max-width: 1360px;
}

.blog-article .article-wrapper {
  grid-template-columns: minmax(220px, 330px) minmax(0, 900px);
  max-width: 1360px;
  column-gap: clamp(2.8rem, 4.4vw, 5.8rem);
  padding-top: 3.1rem;
}

.blog-article .article-wrapper > h2 {
  max-width: 19ch;
  font-size: clamp(1.68rem, 1.55vw, 2.05rem);
  line-height: 1.08;
}

.blog-article .article-wrapper > *:not(h2) {
  max-width: 900px;
}

.blog-article .article-wrapper h3 {
  margin-top: 1.95rem;
  margin-bottom: 0.5rem;
  font-size: 1.28rem;
  line-height: 1.22;
}

.blog-article .article-wrapper p,
.blog-article .article-wrapper ul li,
.blog-article .article-wrapper ol li {
  font-size: clamp(1.13rem, 1.03vw, 1.23rem);
  line-height: 1.74;
  color: rgba(252, 247, 235, 0.82);
}

.blog-article .article-wrapper p {
  margin-top: 0.82rem;
}

.article-rail a {
  font-size: 1rem;
}

.article-rail li {
  font-size: 1rem;
}

@media (min-width: 901px) {
  .blog-article .article-wrapper > h2 {
    position: sticky;
    top: 8.65rem;
  }
}

.article-cta,
.related-articles {
  max-width: 1360px;
}

.related-articles {
  margin-top: 6.3rem;
  padding-top: 1.6rem;
}

.related-articles__header {
  grid-template-columns: minmax(220px, 330px) minmax(0, 780px);
  column-gap: clamp(2.8rem, 4.4vw, 5.8rem);
  margin-bottom: 1.65rem;
}

.related-articles__header h2 {
  font-size: clamp(1.72rem, 1.9vw, 2.28rem);
}

.related-articles__header p:not(.related-articles__kicker) {
  font-size: 1.08rem;
  line-height: 1.58;
}

.related-articles__grid--blog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.78rem, 1vw, 1.05rem);
}

.related-articles__grid--blog .related-article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(252, 247, 235, 0.13);
  background: rgba(252, 247, 235, 0.035);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease;
}

.related-articles__grid--blog .related-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(252, 247, 235, 0.28);
  background: rgba(252, 247, 235, 0.055);
}

.related-articles__grid--blog .related-article-card:nth-child(1),
.related-articles__grid--blog .related-article-card:nth-child(4) {
  grid-column: span 2;
}

.related-articles__grid--blog .related-card__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  border-bottom: 1px solid rgba(252, 247, 235, 0.1);
}

.related-articles__grid--blog .related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.related-articles__grid--blog
  .related-article-card:nth-child(1)
  .related-card__image,
.related-articles__grid--blog
  .related-article-card:nth-child(4)
  .related-card__image {
  aspect-ratio: 1.85 / 1;
}

.related-card__meta-overlay {
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  bottom: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0.55rem 0.68rem;
  border: 1px solid rgba(252, 247, 235, 0.18);
  background: rgba(18, 18, 18, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(252, 247, 235, 0.84);
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card__content {
  flex: 1;
  padding: 1.05rem 1.05rem 1.1rem;
}

.related-card__category {
  margin: 0 0 0.85rem;
  color: rgba(252, 247, 235, 0.46);
  font-family: "Roboto", sans-serif;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-articles__grid--blog .related-article-card h3 {
  margin-top: 0;
  font-size: clamp(1.22rem, 1.18vw, 1.52rem);
  line-height: 1.12;
}

.related-articles__grid--blog
  .related-article-card
  p:not(.related-card__category) {
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(252, 247, 235, 0.7);
}

.related-articles__grid--blog .related-card__link {
  margin-top: auto;
  padding-top: 0.35rem;
}

@media (max-width: 1200px) {
  .blog-hero__summary {
    grid-template-columns: 1fr;
  }

  .blog-share {
    justify-self: stretch;
    width: 100%;
  }

  .blog-share__links {
    grid-template-columns: repeat(4, minmax(0, auto));
    justify-content: start;
  }

  .blog-article .article-wrapper,
  .related-articles__header {
    grid-template-columns: minmax(190px, 285px) minmax(0, 1fr);
  }

  .related-articles__grid--blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-articles__grid--blog .related-article-card:nth-child(1),
  .related-articles__grid--blog .related-article-card:nth-child(4) {
    grid-column: span 1;
  }

  .related-articles__grid--blog
    .related-article-card:nth-child(1)
    .related-card__image,
  .related-articles__grid--blog
    .related-article-card:nth-child(4)
    .related-card__image,
  .related-articles__grid--blog .related-card__image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 900px) {
  .blog-hero__media,
  .article-image-pair,
  .related-articles__grid--blog {
    grid-template-columns: 1fr;
  }

  .blog-hero__media .editorial-image:first-child img,
  .blog-hero__media .editorial-image:last-child img,
  .article-image-pair .editorial-image:first-child img,
  .article-image-pair .editorial-image:last-child img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .blog-article .article-wrapper > h2 {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-quick-nav {
    margin-bottom: 0.75rem;
  }

  .blog-quick-nav a {
    font-size: 0.88rem;
  }

  .blog-main h1.title {
    font-size: clamp(2.18rem, 10.8vw, 2.95rem);
  }

  .blog-main p.blog-dek,
  .blog-article .article-wrapper p,
  .blog-article .article-wrapper ul li,
  .blog-article .article-wrapper ol li {
    font-size: 1.08rem;
    line-height: 1.68;
  }

  .blog-share__links {
    grid-template-columns: 1fr 1fr;
  }

  .blog-share a,
  .blog-share button {
    font-size: 0.88rem;
  }

  .blog-article .article-wrapper h3 {
    font-size: 1.18rem;
  }

  .related-articles__grid--blog .related-card__image {
    aspect-ratio: 4 / 3;
  }

  .related-card__meta-overlay {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.68rem;
  }
}

/* --------------------------------------------------------------------------
   Blog Detail Refinement v5: größere Zwischenüberschriften und 3 Blogkarten
   -------------------------------------------------------------------------- */

.blog-article .article-wrapper h3 {
  margin-top: 2.55rem;
  margin-bottom: 1.02rem;
  color: #fcf7eb;
  font-size: clamp(1.68rem, 1.52vw, 2rem);
  line-height: 1.09;
  letter-spacing: -0.022em;
}

.blog-article .article-wrapper > h2 + h3,
.blog-article .article-wrapper > h3:first-of-type {
  margin-top: 0.05rem;
}

.related-articles--three
  .related-articles__header
  p:not(.related-articles__kicker) {
  max-width: 720px;
}

.related-articles--three .related-articles__grid--blog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.45vw, 1.45rem);
}

.related-articles--three .related-article-card,
.related-articles--three .related-article-card:nth-child(1),
.related-articles--three .related-article-card:nth-child(4) {
  grid-column: auto;
}

.related-articles--three .related-article-card {
  background:
    linear-gradient(
      180deg,
      rgba(252, 247, 235, 0.052),
      rgba(252, 247, 235, 0.026)
    ),
    rgba(252, 247, 235, 0.028);
  border-color: rgba(252, 247, 235, 0.16);
  box-shadow: none;
}

.related-articles--three .related-article-card:hover {
  background: rgba(252, 247, 235, 0.058);
  border-color: rgba(252, 247, 235, 0.34);
}

.related-articles--three .related-card__image,
.related-articles--three
  .related-article-card:nth-child(1)
  .related-card__image,
.related-articles--three
  .related-article-card:nth-child(4)
  .related-card__image {
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid rgba(252, 247, 235, 0.12);
}

.related-articles--three .related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
  transform: scale(1.02);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.related-articles--three .related-article-card:hover .related-card__image img {
  transform: scale(1.055);
}

.related-articles--three .related-card__meta-overlay {
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.95rem;
  padding: 0.68rem 0.78rem;
  border-color: rgba(252, 247, 235, 0.24);
  background: rgba(20, 21, 20, 0.52);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  font-size: 0.8rem;
  letter-spacing: 0.095em;
}

.related-articles--three .related-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem 1.2rem 1.25rem;
}

.related-articles--three .related-card__category {
  margin-bottom: 1rem;
  color: rgba(252, 247, 235, 0.58);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.related-articles--three .related-article-card h3 {
  margin: 0;
  font-size: clamp(1.48rem, 1.32vw, 1.78rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.related-articles--three .related-article-card p:not(.related-card__category) {
  margin: 0.92rem 0 1.2rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(252, 247, 235, 0.72);
}

.related-articles--three .related-card__link {
  margin-top: auto;
  font-size: 1.08rem;
}

@media (max-width: 1100px) {
  .related-articles--three .related-articles__grid--blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .blog-article .article-wrapper h3 {
    margin-top: 1.95rem;
    margin-bottom: 0.72rem;
    font-size: 1.56rem;
    line-height: 1.14;
  }

  .blog-article .article-wrapper > h2 + h3,
  .blog-article .article-wrapper > h3:first-of-type {
    margin-top: 0;
  }

  .related-articles--three .related-articles__grid--blog {
    grid-template-columns: 1fr;
  }

  .related-articles--three .related-card__image,
  .related-articles--three
    .related-article-card:nth-child(1)
    .related-card__image,
  .related-articles--three
    .related-article-card:nth-child(4)
    .related-card__image {
    aspect-ratio: 4 / 3;
  }

  .related-articles--three .related-card__meta-overlay {
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.72rem;
    padding: 0.58rem 0.62rem;
    font-size: 0.7rem;
  }

  .related-articles--three .related-article-card h3 {
    font-size: 1.48rem;
  }
}

/* --------------------------------------------------------------------------
   Blog Detail Refinement v6: branded related cards and separate meta items
   -------------------------------------------------------------------------- */

.blog-article-meta > span {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  border: 1px solid rgba(252, 247, 235, 0.13);
  background: rgba(252, 247, 235, 0.035);
  padding: 0.43rem 0.62rem;
}

.blog-article-meta span + span::before {
  content: none;
}

.related-articles--three {
  position: relative;
  border-top: 1px solid rgba(252, 247, 235, 0.2);
}

.related-articles--three .related-articles__header {
  align-items: end;
  padding-top: 0.3rem;
}

.related-articles--three .related-articles__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: rgba(252, 247, 235, 0.56);
}

.related-articles--three .related-articles__kicker::before {
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 1px;
  background: rgba(185, 11, 11, 0.82);
}

.related-articles--three .related-article-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(252, 247, 235, 0.17);
  background:
    linear-gradient(
      180deg,
      rgba(252, 247, 235, 0.046),
      rgba(252, 247, 235, 0.018)
    ),
    #202220;
  box-shadow:
    inset 0 1px 0 rgba(252, 247, 235, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.18);
}

.related-articles--three .related-article-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 48%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(185, 11, 11, 0.95),
    rgba(185, 11, 11, 0)
  );
  pointer-events: none;
}

.related-articles--three .related-article-card:hover {
  border-color: rgba(252, 247, 235, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(252, 247, 235, 0.062),
      rgba(252, 247, 235, 0.024)
    ),
    #202220;
}

.related-articles--three .related-card__image,
.related-articles--three
  .related-article-card:nth-child(1)
  .related-card__image,
.related-articles--three
  .related-article-card:nth-child(4)
  .related-card__image {
  aspect-ratio: 16 / 10;
  border-bottom-color: rgba(252, 247, 235, 0.14);
  background: #151615;
}

.related-articles--three .related-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(30, 32, 30, 0.38), rgba(30, 32, 30, 0));
  pointer-events: none;
}

.related-articles--three .related-card__image img {
  filter: saturate(0.82) contrast(1.08) brightness(0.88);
  transform: scale(1.018);
}

.related-articles--three .related-article-card:hover .related-card__image img {
  filter: saturate(0.9) contrast(1.12) brightness(0.94);
  transform: scale(1.055);
}

.related-articles--three .related-card__meta-overlay {
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  letter-spacing: 0;
}

.related-card__meta-item {
  display: inline-grid;
  min-width: 7.2rem;
  gap: 0.12rem;
  padding: 0.54rem 0.64rem 0.5rem;
  border: 1px solid rgba(252, 247, 235, 0.18);
  background: rgba(20, 21, 20, 0.7);
  color: rgba(252, 247, 235, 0.86);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

.related-card__meta-label {
  color: rgba(252, 247, 235, 0.46);
  font-family: "Roboto", sans-serif;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.related-card__meta-value {
  color: rgba(252, 247, 235, 0.9);
  font-family: "Roboto", sans-serif;
  font-size: 0.84rem;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.related-articles--three .related-card__content {
  position: relative;
  padding: 1.22rem 1.18rem 1.3rem;
}

.related-articles--three .related-card__category {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  margin-bottom: 0.95rem;
  color: rgba(252, 247, 235, 0.55);
  font-size: 0.77rem;
  letter-spacing: 0.13em;
}

.related-articles--three .related-card__category::before {
  content: "";
  flex: 0 0 1.35rem;
  height: 1px;
  background: rgba(185, 11, 11, 0.74);
}

.related-articles--three .related-article-card h3 {
  color: rgba(252, 247, 235, 0.96);
  font-size: clamp(1.34rem, 1.22vw, 1.66rem);
  line-height: 1.11;
  letter-spacing: 0;
}

.related-articles--three .related-article-card p:not(.related-card__category) {
  margin: 0.85rem 0 1.18rem;
  color: rgba(252, 247, 235, 0.69);
  font-size: 1rem;
  line-height: 1.58;
}

.related-articles--three .related-card__link {
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: rgba(252, 247, 235, 0.88);
  font-size: 1.02rem;
  text-decoration-color: rgba(185, 11, 11, 0.86);
}

@media (max-width: 780px) {
  .blog-article-meta > span {
    width: fit-content;
  }

  .related-articles--three .related-card__meta-overlay {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    gap: 0.38rem;
    padding: 0;
    font-size: inherit;
  }

  .related-card__meta-item {
    min-width: 6.6rem;
    padding: 0.48rem 0.54rem 0.46rem;
  }

  .related-card__meta-label {
    font-size: 0.58rem;
  }

  .related-card__meta-value {
    font-size: 0.78rem;
  }
}

/* --------------------------------------------------------------------------
   Blog Detail Refinement v7: calmer mobile hero and complete breadcrumb
   -------------------------------------------------------------------------- */

.blog-quick-nav {
  gap: 0.48rem;
  max-width: 100%;
  margin-bottom: 1.05rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-quick-nav::-webkit-scrollbar {
  display: none;
}

.blog-quick-nav a,
.blog-quick-nav [aria-current="page"] {
  flex: 0 0 auto;
  color: rgba(252, 247, 235, 0.66);
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 200;
  text-decoration: none;
  white-space: nowrap;
}

.blog-quick-nav [aria-current="page"] {
  color: rgba(252, 247, 235, 0.9);
}

.blog-quick-nav span[aria-hidden="true"] {
  flex: 0 0 auto;
  color: rgba(252, 247, 235, 0.28);
}

.blog-hero__topline {
  gap: 1rem 2rem;
  padding: 0.88rem 0 0;
  border-bottom: 0;
}

.blog-article-meta {
  gap: 0.78rem;
}

.blog-article-meta > .blog-meta-item {
  display: inline-grid;
  min-height: 0;
  gap: 0.18rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.blog-meta-label {
  color: rgba(252, 247, 235, 0.62);
  font-family: "Roboto", sans-serif;
  font-size: 0.64rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-meta-item time,
.blog-meta-item > span:last-child {
  color: rgba(252, 247, 235, 0.92);
  font-size: 0.93rem;
  line-height: 1.1;
  font-weight: 200;
}

.blog-main h1.title {
  max-width: 1040px;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.blog-main h1.title span {
  letter-spacing: 0;
}

.blog-hero__summary {
  margin-top: 1.55rem;
}

.blog-main .about-intro-wrapper {
  max-width: 840px;
}

.blog-main p.blog-dek {
  max-width: 820px;
  font-size: clamp(1.06rem, 1vw, 1.18rem);
  line-height: 1.58;
}

@media (max-width: 768px) {
  main.blog-main {
    padding: 6.85rem 6% 0 6%;
  }

  .blog-quick-nav {
    margin-bottom: 0.82rem;
  }

  .blog-quick-nav a,
  .blog-quick-nav [aria-current="page"] {
    font-size: 0.86rem;
  }

  .blog-quick-nav [aria-current="page"] {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-hero__topline {
    padding-top: 0.72rem;
    gap: 0.72rem;
  }

  .blog-kicker {
    display: none;
  }

  .blog-article-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.48rem;
  }

  .blog-article-meta > .blog-meta-item {
    width: auto;
    min-width: 0;
    padding: 0.54rem 0.6rem 0.52rem;
    border: 1px solid rgba(252, 247, 235, 0.12);
    background: rgba(252, 247, 235, 0.028);
  }

  .blog-meta-label {
    font-size: 0.56rem;
  }

  .blog-meta-item time,
  .blog-meta-item > span:last-child {
    font-size: 0.84rem;
  }

  .blog-main h1.title {
    margin-top: 1.22rem;
    margin-bottom: 0.85rem;
    font-size: clamp(2.02rem, 9.3vw, 2.62rem);
    line-height: 1.04;
    letter-spacing: 0;
  }

  .blog-main h1.title span {
    margin-top: 0.28rem;
    color: rgba(252, 247, 235, 0.58);
    font-size: 0.78em;
    line-height: 1.08;
  }

  .blog-main .line {
    margin-top: 0;
  }

  .blog-hero__summary {
    margin-top: 1.18rem;
  }

  .blog-main p.blog-dek {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .blog-share {
    display: none;
  }

  .blog-hero__media {
    margin-top: 1.8rem;
  }

  .related-articles--three .related-card__meta-overlay {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    padding: 0.72rem;
    border-top: 1px solid rgba(252, 247, 235, 0.12);
    background: rgba(252, 247, 235, 0.026);
  }

  .related-articles--three .related-card__image,
  .related-articles--three
    .related-article-card:nth-child(1)
    .related-card__image,
  .related-articles--three
    .related-article-card:nth-child(4)
    .related-card__image {
    aspect-ratio: auto;
  }

  .related-articles--three .related-card__image::after {
    display: none;
  }

  .related-articles--three .related-card__image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .related-card__meta-item {
    min-width: 0;
    padding: 0.46rem 0.52rem;
    background: rgba(20, 21, 20, 0.44);
  }

  .related-card__meta-value {
    white-space: nowrap;
  }
}

/* --------------------------------------------------------------------------
   Blog Detail Refinement v8: clearer related cards, stronger CTA, mobile width
   -------------------------------------------------------------------------- */

.related-articles--three .related-card__meta-overlay {
  top: 0.9rem;
  bottom: auto;
}

.related-card__meta-item {
  border-color: rgba(252, 247, 235, 0.28);
  background: rgba(18, 18, 18, 0.78);
}

.related-card__meta-label {
  color: rgba(252, 247, 235, 0.72);
}

.related-card__meta-value {
  color: rgba(252, 247, 235, 0.98);
}

.related-articles--three .related-card__link {
  min-height: 2.65rem;
  align-items: center;
  gap: 0.42rem;
  margin-top: auto;
  padding: 0.64rem 0.92rem;
  border: 1px solid rgba(252, 247, 235, 0.35);
  border-radius: 999px;
  color: rgba(252, 247, 235, 0.94);
  font-family: "PPCirka", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.related-articles--three .related-card__link:hover {
  border-color: rgba(252, 247, 235, 0.86);
  background: rgba(252, 247, 235, 0.1);
}

.article-cta {
  position: relative;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 5rem;
  padding: clamp(1.55rem, 2.6vw, 2.45rem);
  border: 0;
  background: #fcf7eb;
  color: #1e201e;
}

.article-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(22rem, 46%);
  height: 2px;
  background: #b90b0b;
}

.article-cta__copy p {
  color: rgba(30, 32, 30, 0.62);
}

.article-cta__copy h2 {
  max-width: 920px;
  color: #1e201e;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 0.98;
}

.blog-article .article-cta .cta-btn-hero {
  border-color: #1e201e;
  background: #1e201e;
  color: #fcf7eb;
}

.blog-article .article-cta .cta-btn-hero:hover {
  background: transparent;
  color: #1e201e;
}

.blog-article .article-cta .cta-link-hero {
  color: #1e201e;
}

.blog-article .article-cta .cta-link-hero img {
  filter: invert(1);
}

@media (max-width: 900px) {
  .article-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .article-rail {
    display: none;
  }

  .blog-article .article-wrapper,
  .related-articles__header {
    display: block;
  }

  .blog-article .article-wrapper > h2 {
    max-width: none;
    margin-bottom: 1.25rem;
  }

  .blog-article .article-wrapper > *:not(h2) {
    max-width: none;
  }

  .article-content,
  .article-cta,
  .related-articles,
  .related-articles--three .related-articles__grid--blog,
  .related-articles--three .related-article-card {
    width: 100%;
    max-width: none;
  }

  .related-articles--three .related-articles__grid--blog {
    grid-template-columns: 1fr;
  }

  .related-articles--three .related-card__image {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .article-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .article-rail {
    display: none;
  }

  .article-content,
  .blog-article .article-wrapper,
  .blog-article .article-wrapper > *:not(h2),
  .article-cta,
  .related-articles {
    width: 100%;
    max-width: none;
  }

  .blog-article .article-wrapper {
    display: block;
    grid-template-columns: none;
  }

  .blog-article .article-wrapper > h2 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .related-articles--three .related-card__meta-overlay {
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    right: 0.72rem;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    padding: 0;
    border-top: 0;
    background: transparent;
  }

  .related-articles--three .related-card__image,
  .related-articles--three
    .related-article-card:nth-child(1)
    .related-card__image,
  .related-articles--three
    .related-article-card:nth-child(4)
    .related-card__image {
    aspect-ratio: 4 / 3;
  }

  .related-articles--three .related-card__image::after {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.05) 42%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  .related-card__meta-item {
    padding: 0.48rem 0.54rem 0.46rem;
    background: rgba(18, 18, 18, 0.76);
  }

  .related-card__meta-label {
    color: rgba(252, 247, 235, 0.72);
  }

  .related-card__meta-value {
    color: rgba(252, 247, 235, 0.98);
  }

  .related-articles--three .related-card__link {
    width: fit-content;
    min-height: 2.5rem;
    padding: 0.6rem 0.86rem;
  }

  .article-cta {
    grid-template-columns: 1fr;
    gap: 1.45rem;
    margin-top: 3.8rem;
    padding: 1.55rem;
  }

  .article-cta__copy h2 {
    font-size: clamp(1.95rem, 9.2vw, 2.55rem);
    line-height: 1.02;
  }

  .blog-article .article-cta .hero-buttons {
    width: 100%;
    gap: 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   Blog Detail Refinement v9: laptop full-width article layout
   -------------------------------------------------------------------------- */

@media (max-width: 1600px) {
  article.blog-article {
    padding-left: clamp(2rem, 4vw, 4rem);
    padding-right: clamp(2rem, 4vw, 4rem);
  }

  .article-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .article-rail {
    display: none;
  }

  .article-content,
  .blog-article .article-wrapper,
  .blog-article .article-wrapper > *:not(h2),
  .article-image-pair,
  .article-cta,
  .related-articles {
    width: 100%;
    max-width: none;
  }

  .blog-article .article-wrapper {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    column-gap: clamp(2rem, 4vw, 4.5rem);
  }

  .article-cta,
  .related-articles__header {
    max-width: none;
  }
}

@media (max-width: 1200px) {
  .blog-article .article-wrapper {
    display: block;
    grid-template-columns: none;
  }
}
