/* ================================================================
   Статья блога
   ================================================================ */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.article-hdr {
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.article-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--acc-soft);
  color: var(--acc-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.article-hdr h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--acc-2);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.article-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
}
.article-meta {
  font-size: 13px;
  color: var(--mut);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--acc-soft);
}
.article-cover svg { display: block; width: 100%; height: auto; }

.article-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--acc-2);
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
  scroll-margin-top: 80px;
}
.article-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 22px 0 10px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.article-body li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 6px;
}
.article-body b, .article-body strong { color: var(--acc-2); }

/* Инлайн-CTA внутри абзаца */
.article-inline-cta {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(1, 105, 111, 0.25);
}
.article-inline-cta:hover { transform: translateY(-2px); }

/* Таблица технических характеристик */
.article-tech {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  overflow: hidden;
}
.article-tech th,
.article-tech td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
}
.article-tech th {
  background: var(--acc-soft);
  color: var(--acc-2);
  font-weight: 700;
  width: 42%;
}
.article-tech tr:last-child th,
.article-tech tr:last-child td { border-bottom: none; }

/* Ингредиенты — карточки */
.article-ingredients {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}
.article-ingredient {
  padding: 14px 16px;
  background: var(--acc-soft);
  border-radius: 12px;
  border-left: 3px solid var(--acc);
}
.article-ingredient h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--acc-2);
  margin: 0 0 4px;
}
.article-ingredient p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

/* Блок «купить» после статьи */
.article-buy {
  margin: 40px 0 32px;
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(31, 169, 131, 0.06), rgba(212, 165, 116, 0.06));
  border: 1px solid rgba(31, 169, 131, 0.15);
}
.article-buy h2 { margin-top: 0 !important; }
.article-buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.article-buy-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.article-buy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(1, 105, 111, 0.15);
}
.article-buy-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--acc-soft);
}
.article-buy-body {
  padding: 14px 16px 16px;
}
.article-buy-sku {
  font-size: 11px;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.article-buy-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 38px;
}
.article-buy-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--acc-2);
  margin-bottom: 8px;
}
.article-buy-cta {
  font-size: 12.5px;
  color: var(--acc-2);
  font-weight: 700;
}

/* FAQ */
.article-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 24px;
}
.article-faq-item {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.article-faq-item[open] {
  box-shadow: 0 4px 12px rgba(15, 93, 75, 0.08);
}
.article-faq-item summary {
  padding: 14px 18px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.article-faq-item summary::-webkit-details-marker { display: none; }
.article-faq-item summary::after {
  content: '';
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2301696F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.article-faq-item[open] summary::after { transform: rotate(180deg); }
.article-faq-body {
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mut);
}
.article-faq-body p { margin: 0 0 8px; }
.article-faq-body p:last-child { margin: 0; }
.article-faq-body a { color: var(--acc-2); }

/* Related-блок */
.article-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 12px 0 32px;
}
.article-related-card {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, transform 0.25s;
}
.article-related-card:hover {
  background: var(--acc-soft);
  transform: translateY(-2px);
}
.article-related-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--acc-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.article-related-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

/* Финальный CTA */
.article-cta-final {
  margin: 40px 0;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, #0F5D4B, #01696F);
  color: #fff;
  border-radius: 20px;
}
.article-cta-final h2 {
  color: #fff !important;
  margin-top: 0 !important;
}
.article-cta-final p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0 0 20px;
}
.article-cta-final-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.article-cta-final .btn {
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s;
}
.article-cta-final .btn:hover { transform: translateY(-2px); }
.article-cta-final .btn-primary {
  background: #fff;
  color: var(--acc-2);
}
.article-cta-final .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Mobile */
@media (max-width: 640px) {
  .article { padding: 0 12px 24px; }
  .article-hdr { padding: 16px 0 14px; }
  .article-cover { border-radius: 12px; margin-bottom: 20px; }
  .article-body h2 { margin: 24px 0 10px; }
  .article-buy { padding: 20px 14px; margin: 24px 0; }
  .article-cta-final { padding: 24px 16px; margin: 28px 0; }
}
