:root {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --surface-soft: #f8f8f8;
  --text: #171717;
  --muted: #6e6e6e;
  --border: #e3e3e3;
  --black: #050505;
  --orange: #ff8a00;
  --orange-dark: #e97800;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --container: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #ffffff;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.brand-blog-img {
  height: 44px;
  width: auto;
  display: block;
}

.brand-blog p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.brand-blog p .bp-bit {
  color: var(--text);
  font-weight: 700;
}

.brand-blog p .bp-post {
  color: var(--orange);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--orange);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--orange);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-switcher a {
  padding: 6px 14px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--orange);
  color: #fff;
}

.site-header .btn-outline {
  color: var(--text);
}

.site-header .btn-outline:hover {
  color: #fff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border: 2px solid var(--orange);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

/* HERO */
.hero {
  padding: 24px 0 10px;
}

.hero-box {
  background: linear-gradient(135deg, #050505 0%, #0d0d0d 100%);
  border-radius: 22px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 30% 70%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 36px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-icon {
  font-size: 2.4rem;
  color: var(--orange);
  margin-bottom: 8px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content h2 {
  font-size: clamp(1.5rem, 1.8vw, 2.1rem);
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 800;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-content h2 span {
  color: var(--orange);
}

.hero-content p {
  max-width: 100%;
  color: #d4d4d4;
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.hero-content .btn {
  align-self: flex-start;
}

.hero-visual {
  position: relative;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,138,0,0.15), transparent 25%),
    radial-gradient(circle at 40% 70%, rgba(255,138,0,0.08), transparent 25%);
}

.network {
  position: absolute;
  inset: 0;
}

.network .node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #8e8e8e;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.02);
}

.network .node:nth-child(2) { top: 18%; left: 18%; }
.network .node:nth-child(3) { top: 28%; left: 55%; background: var(--orange); }
.network .node:nth-child(4) { top: 62%; left: 40%; background: var(--orange); }
.network .node:nth-child(5) { top: 72%; left: 70%; }
.network .node:nth-child(6) { top: 42%; left: 78%; background: var(--orange); }
.network .node:nth-child(7) { top: 80%; left: 18%; }
.network .node:nth-child(8) { top: 20%; left: 84%; background: var(--orange); }

.network .btc {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 24%;
  left: 64%;
  box-shadow: 0 0 36px rgba(255, 138, 0, 0.35);
}

/* HERO VIDEO */
.hero-video {
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 360px;
  padding: 0;
}

.hero-video video {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  margin-left: auto;
}

/* SECTION HEAD */
.section-head,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head h3,
.panel-head h3 {
  font-size: 1.9rem;
  font-weight: 800;
  position: relative;
  padding-left: 16px;
}

.section-head h3::before,
.panel-head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange);
}

.section-head a,
.panel-link {
  color: var(--orange);
  font-weight: 700;
}

/* FEATURED */
.featured {
  padding: 10px 0 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* CAROUSEL */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.carousel-track .post-card {
  flex: 0 0 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: #fff;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--orange);
  color: #fff;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 325px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.card-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff1e4;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  padding: 14px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.post-card h4 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 800;
}

.post-card p {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: auto;
}

.tag {
  display: inline-block;
  margin-top: 18px;
  align-self: flex-start;
  background: #fff1e4;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

/* PANELS */
.content-panels {
  padding: 10px 0 22px;
}

.panels-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr;
  gap: 18px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.recent-list {
  list-style: none;
  margin-bottom: 16px;
}

.recent-list li {
  display: grid;
  grid-template-columns: 90px 1fr 110px;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.recent-list li:last-child {
  border-bottom: none;
}

.category {
  font-size: 0.92rem;
  color: var(--orange);
  font-weight: 700;
}

.recent-list a {
  color: var(--text);
  font-weight: 500;
}

.recent-list time {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 18px;
}

.topic-chip {
  padding: 10px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
}

.newsletter-panel {
  background: var(--surface);
}

.newsletter-head {
  background: var(--black);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.newsletter-head h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.newsletter-head p {
  color: #ccc;
}

.newsletter-icon {
  font-size: 2rem;
  color: var(--orange);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 14px;
}

.newsletter-form input {
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--orange);
}

.newsletter-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ABOUT (Chi siamo) */
.about {
  padding: 24px 0 36px;
}

.about-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}

.about-image {
  position: relative;
  background: #000;
  min-height: 380px;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,138,0,0.15), transparent 60%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.about-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .tag {
  align-self: flex-start;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}

.about-content h2 span {
  color: var(--orange);
}

.about-content p {
  color: #333;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.about-tags .topic-chip {
  font-size: 0.92rem;
  padding: 8px 14px;
  background: #fff1e4;
  color: var(--orange);
  border-color: #ffd9b3;
}

@media (max-width: 980px) {
  .about-box {
    grid-template-columns: 1fr;
  }
  .about-image {
    min-height: 300px;
  }
  .about-content {
    padding: 28px;
  }
}

/* FOOTER */
.site-footer {
  padding: 0 0 28px;
}

.affiliate-notice {
  margin-top: 14px;
  background: #fff1e4;
  border: 1px solid #ffd9b3;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #5a3f15;
}

.affiliate-notice strong {
  color: var(--orange-dark);
}

.affiliate-notice .affiliate-title {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.affiliate-notice p {
  margin-bottom: 6px;
}

.affiliate-notice p:last-child {
  margin-bottom: 0;
}

.affiliate-notice a {
  color: var(--orange-dark);
  font-weight: 700;
}

.affiliate-notice a:hover {
  text-decoration: underline;
}

.affiliate-quote {
  display: block;
  font-style: italic;
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 10px 14px;
  margin: 8px 0 10px;
  border-radius: 0 8px 8px 0;
  color: var(--text);
}

.footer-box {
  background: #efefef;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}

.footer-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer-item p {
  color: #444;
  font-size: 0.96rem;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .carousel-track .post-card {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 600px) {
  .carousel-track .post-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .hero-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
  }

  .panels-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recent-list li {
    grid-template-columns: 1fr;
  }

  .recent-list time {
    text-align: left;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-meta {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .brand-blog-img {
    margin: 0 auto;
    height: 38px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 28px 22px;
  }

  .section-head,
  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ARTICLE PAGE */
.article-main {
  padding: 28px 0 40px;
}

.article-breadcrumb {
  margin-bottom: 18px;
}

.article-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.article-breadcrumb .breadcrumb-item a {
  color: var(--muted);
  font-weight: 600;
}

.article-breadcrumb .breadcrumb-item a:hover {
  color: var(--orange);
}

.article-breadcrumb .breadcrumb-item.active {
  color: var(--text);
  font-weight: 700;
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #b5b5b5;
}

.article-head {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.article-head .tag {
  margin: 0 0 16px;
}

.article-head h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.article-lead {
  color: #444;
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 820px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-meta strong {
  color: var(--text);
}

.article-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow);
  max-width: 880px;
  margin: 0 auto 32px;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 18px;
}

.article-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 36px 0 14px;
  position: relative;
  padding-left: 16px;
  color: var(--text);
}

.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--orange);
}

.article-body ul {
  margin: 0 0 20px 1.4em;
  padding: 0;
}

.article-body ul li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #333;
}

.article-body blockquote {
  border-left: 4px solid var(--orange);
  background: #fff7ee;
  margin: 26px 0;
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  color: #4a3a1f;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}

.article-body .drop-cap::first-letter {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--orange);
  float: left;
  line-height: 1;
  margin: 4px 10px 0 0;
}

/* DONATION PAGE */
.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.donation-grid.donation-grid--single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

.donation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.donation-card.lightning {
  border-color: #ffd9b3;
  background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.donation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.donation-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.donation-card .donation-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.qr-box {
  width: 220px;
  height: 220px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.qr-box canvas,
.qr-box img,
.qr-box svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.donation-address {
  width: 100%;
  background: #f6f6f6;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--text);
  word-break: break-all;
  margin-bottom: 14px;
  line-height: 1.4;
}

.donation-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.donation-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.copy-btn {
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.copy-btn:hover,
.copy-btn.copied {
  background: var(--orange);
  color: #fff;
}

.donation-amounts {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.amount-chip {
  background: #fff1e4;
  color: var(--orange);
  border: 1px solid #ffd9b3;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.amount-chip:hover {
  background: var(--orange);
  color: #fff;
}

.donation-info {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.donation-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.donation-info p {
  color: #444;
  line-height: 1.65;
  margin-bottom: 10px;
}

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

/* PRODUCT PAGE */
.product-section {
  margin-bottom: 36px;
}

.product-section .section-head {
  margin-bottom: 8px;
}

.product-intro {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 880px;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.product-icon {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: #fff1e4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 16px;
}

.product-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-image {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 14px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text);
}

.product-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.product-btn {
  align-self: flex-start;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.product-disclaimer {
  background: #fff1e4;
  border: 1px solid #ffd9b3;
  border-radius: var(--radius);
  padding: 22px 26px;
  color: #5a3f15;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 18px;
}

.product-disclaimer strong {
  color: var(--orange-dark);
}

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

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

/* RELATED */
.related {
  margin-top: 32px;
}

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

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  color: var(--text);
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.related-card .tag {
  align-self: flex-start;
  margin: 0 0 14px;
}

.related-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.related-card p {
  color: #555;
  font-size: 0.97rem;
}

/* Make brand a clickable area when wrapped in <a> */
a.brand-blog {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

@media (max-width: 760px) {
  .article-head {
    padding: 26px;
  }

  .article-body {
    padding: 28px 22px;
  }

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