/* ===== FONTS ===== */




/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b354a;
  background-color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

a {
  color: #0066cc;
  text-decoration: underline;
  transition: all 0.3s ease;
}

a:hover {
  color: #004999;
  text-decoration: none;
}

a:focus,
a:active {
  outline: none;
}

b,
strong {
  font-family: "PT Sans", sans-serif, sans-serif;
}

h2 {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  margin: 18px 0;
  color: #1b354a;
}

p {
  margin: 0;
  padding: 10px 0;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5em;
  position: relative;
}

.content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  flex-grow: 1;
}

.text_section {
  background-color: #fff;
  width: 100%;
  padding-bottom: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
}

.main {
  width: 100%;
  padding: 30px;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 12px 0;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header_line_1 {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  background: url('../images/logo.svg') no-repeat center / 40px 40px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo_name {
  margin: 12px 0 0 14px;
  display: inline-block;
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 24px;
  color: #05519d;
  cursor: pointer;
  letter-spacing: 1.3px;
  line-height: 28px;
}

.social_media {
  font-size: 0;
  display: inline-flex;
  margin-left: auto;
  gap: 10px;
}

.social_media li {
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #f0f4f8;
}

.social_media li:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.vk {
  background: #f0f4f8 url('../images/vk.svg') no-repeat center / 20px 20px;
}

.ok {
  background: #f0f4f8 url('../images/ok.svg') no-repeat center / 20px 20px;
}

.header_line_2 {
  padding-bottom: 6px;
}

.links {
  padding-top: 5px;
  font-size: 0;
  margin-left: 69px;
  display: inline-block;
}

.links li {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 13px;
  color: #1b354a;
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
  letter-spacing: 0.9px;
  transition: color 0.3s;
  padding: 4px 0;
  position: relative;
}

.links li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #05519d;
  transition: width 0.3s;
}

.links li:hover::after {
  width: 100%;
}

.links li:hover {
  color: #5296db;
}

.links li:last-child {
  margin-right: 0;
}

.chosen_link {
  border-radius: 4px;
  border: 2px solid #05519d;
  padding: 4px 8px;
  background: rgba(5, 81, 157, 0.05);
}

/* ===== HEADLINE ===== */
.headline {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.15;
  margin: 25px 0;
  text-align: center;
  letter-spacing: -0.5px;
}

/* ===== ARTICLE ===== */
.article_article {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #222;
  padding: 10px 0;
}

.article_article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article_article h1 {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 1.8rem;
  margin: 1em 0 0.5em;
  font-weight: bold;
  line-height: 1.25;
  color: #1a202c;
}

.article_article h2 {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 1.5rem;
  margin: 1.2em 0 0.5em;
  font-weight: bold;
  color: #1a202c;
}

.article_article h3 {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 1.25rem;
  margin: 1em 0 0.5em;
  font-weight: bold;
  color: #1a202c;
}

.article_article p {
  margin: 1em 0;
  font-size: 18px;
  line-height: 1.7;
}

.article_article ul {
  list-style: disc;
  padding-left: 24px;
  margin: 1em 0;
}

.article_article li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 18px;
}

.article_article i {
  font-style: italic;
}

/* Yellow marker highlight — transparent on body text, visible on headings/accents */
.article_mark {
  background-color: transparent;
}

/* Accented call-to-read block (yellow bg) */
.article_cta-block {
  background-color: #fff3cd;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 1.5rem 0;
  border-left: 4px solid #f0c040;
}

.article_cta-block b {
  font-size: 1.2em;
}

.article_cta-block ul {
  margin-top: 10px;
}

/* Big centered label */
.article_label {
  text-align: center;
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
}

/* Italic quote with red left border */
.article_quote {
  border-left: 3px solid #e53935;
  padding-left: 14px;
  margin: 1rem 0;
  font-style: italic;
  color: #333;
}

/* Red colored text accent */
.article_red {
  color: #e53935;
}

/* Image caption — centered, small, italic */
.article_caption {
  text-align: center;
  font-size: 15px;
  color: #555;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 1.5rem;
}

.article_img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article_img-caption {
  text-align: center;
  font-size: 14px;
  color: #718096;
  margin-top: -12px;
  margin-bottom: 24px;
  font-style: italic;
}

.article_clr-red {
  color: #e53935;
}

/* Ingredient table */
.article_ingredient-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin: 2rem 0;
}

.article_ingredient-table td {
  padding: 16px;
  background: linear-gradient(135deg, #e6f3f0 0%, #d4ede8 100%);
  border-left: 4px solid #2e8b57;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.5;
}

.article_ingredient-table tr:first-child td:first-child {
  border-radius: 12px 0 0 12px;
}

.article_ingredient-table tr:first-child td:last-child {
  border-radius: 0 12px 12px 0;
}

.article_ingredient-table td:first-child {
  border-radius: 12px 0 0 12px;
}

.article_ingredient-table td:last-child {
  border-radius: 0 12px 12px 0;
}

.article_ingredient-table .article_ingredient-img {
  width: 100px;
  text-align: center;
  padding: 8px;
}

.article_ingredient-table .article_ingredient-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

/* Forum posts / testimonials */
.article_forum-post {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #f7fafc;
  border-left: 3px solid #a0aec0;
  border-radius: 0 12px 12px 0;
  transition: all 0.3s;
}

.article_forum-post:hover {
  background: #edf2f7;
  border-left-color: #718096;
}

.article_forum-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
}

.article_forum-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  box-shadow: none;
}

.article_forum-content {
  flex: 1;
}

.article_forum-content p {
  margin: 0.3rem 0;
}

/* Stages table */
.article_stages {
  margin: 2rem 0;
  border-collapse: collapse;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.article_stages th {
  background: linear-gradient(135deg, #c6f6d5, #d4edda);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: bold;
  font-family: "PT Sans", sans-serif, sans-serif;
  border-bottom: 1px solid #c6f6d5;
}

.article_stages td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  background: #fafafa;
}

/* Stock / promo block */
.article_stock {
  background: linear-gradient(135deg, #ffefc0, #fff3d6);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  margin: 1.5rem 0;
  border: 1px solid #f0d88a;
}

.article_highlight {
  font-weight: bold;
  color: #b3002d;
}

/* ===== INGREDIENT CARDS (flex layout) ===== */
.article_ingredient-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 1.25rem 0;
  background: linear-gradient(135deg, #e6f3f0 0%, #d4ede8 100%);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border-left: 4px solid #2e8b57;
  transition: all 0.3s ease;
}

.article_ingredient-row:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.article_ingredient-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid #fff;
}

.article_ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  box-shadow: none;
}

.article_ingredient-desc {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== IMPORTANT NOTE ===== */
.important-note {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  border-left: 5px solid #e63946;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.1);
  position: relative;
}

.important-note::before {
  content: '!';
  position: absolute;
  top: -12px;
  left: -14px;
  width: 28px;
  height: 28px;
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  font-family: "PT Sans", sans-serif, sans-serif;
}

.important-note b {
  color: #1d1d1f;
}

.important-note .highlight {
  color: #e63946;
  font-weight: bold;
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEARTBEAT BORDER ===== */
.heartbeat-border {
  padding: 22px 20px;
  border: 3px solid #e53935;
  border-radius: 12px;
  animation: heartbeat 1.5s infinite;
  font-size: 20px;
  text-align: center;
  font-family: "PT Sans", sans-serif, sans-serif;
  margin: 24px 0;
  background: linear-gradient(135deg, #fff5f5, #fff);
  color: #c62828;
}

@keyframes heartbeat {
  0%, 30%, 100% {
    border-color: #e53935;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
  15% {
    border-color: #e53935;
    box-shadow: 0 0 12px 4px rgba(229, 57, 53, 0.25);
  }
  20%, 40% {
    border-color: transparent;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}

/* ===== STAGE LABELS ===== */
.stage-label {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 18px;
  margin-top: 1.2em;
  margin-bottom: 0;
  color: #1a202c;
}

.stage-body {
  background: #f5f5f5;
  border-left: 4px solid #ccc;
  padding: 12px 16px;
  margin: 6px 0 10px;
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  line-height: 1.6;
}

/* Application steps (1. 2. 3.) */
.article_steps {
  border: 2px solid #2e8b57;
  border-left: 5px solid #2e8b57;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 1rem 0;
}

.article_steps p {
  margin: 0.6em 0;
}

/* Centered h3 under photo */
.article_article h3 {
  text-align: center;
}

/* Testimonial text in green bg */
.article_testimonial {
  background: linear-gradient(135deg, #e8f5e9 0%, #e6f3f0 100%);
  border-left: 4px solid #2e8b57;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 1rem 0;
}

/* Blue quote block (for celebrity quotes like Guzeeva) */
.article_quote--blue {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #1976d2;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 1.5rem 0;
  font-style: italic;
}

/* Action bordered block (red border for CTA) */
.article_action {
  border: 2px solid #e53935;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 1.5rem 0;
  text-align: center;
}

/* Mechanism blocks (1. Блокирует... 2. Запускается...) */
.article_mechanism {
  border: 2px solid #2e8b57;
  border-left: 5px solid #2e8b57;
  border-radius: 10px;
  padding: 14px 20px;
  margin: 1rem 0;
}

/* ===== INFO BLOCKS ===== */
.info-block--danger {
  background: linear-gradient(135deg, #fdd9d9 0%, #fecaca 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 4px solid #e53935;
}

.info-block--success {
  background: linear-gradient(135deg, #d4ffd7 0%, #c6f6d5 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 4px solid #38a169;
}

.info-block--blue {
  background: linear-gradient(135deg, #beedff 0%, #bee3f8 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 4px solid #3182ce;
}

.info-block--info {
  background: linear-gradient(135deg, #c7f0fd 0%, #bee3f8 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 4px solid #0ea5e9;
  font-size: 17px;
}

.info-block--bordered {
  padding: 20px;
  border: 2px solid #e53935;
  border-radius: 12px;
  text-align: center;
  background: #fff8f8;
  margin: 20px 0;
}

.info-block--bordered-green {
  padding: 20px;
  border: 2px solid #38a169;
  border-radius: 12px;
  background: #f0fff4;
  margin: 20px 0;
}

/* ===== VK COMMENT FORM ===== */
.vk-container {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 15px;
  color: #353434;
}

.vk-header {
  background: linear-gradient(135deg, #edf2f7, #e2e8f0);
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.vk-logo {
  width: 16px;
  height: 16px;
  float: right;
  margin-top: -1px;
}

#push-comments {
  margin-bottom: 25px;
}

#push-comments #push_mlyjekpdfdd1 {
  padding: 2rem 0;
  width: 100%;
  border-radius: 12px;
}

#push-comments #push_mlyjekpdfdd1.hide {
  opacity: 0;
}

#push-comments #push_mlyjekpdfdd1__form {
  margin: auto;
  max-width: 90%;
}

#push-comments #push_mlyjekpdfdd1__title {
  color: #1a202c;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
}

#push-comments #push_mlyjekpdfdd1__message,
.comment-input {
  border: 2px solid #e2e8f0;
  font-size: 16px;
  box-sizing: border-box;
  padding: 12px 16px;
  height: 120px;
  width: 100%;
  border-radius: 10px;
  resize: vertical;
  transition: border-color 0.3s;
  font-family: "PT Sans", sans-serif, sans-serif;
}

#push-comments #push_mlyjekpdfdd1__message:focus,
.comment-input:focus,
.pole:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.form-label {
  color: #1a202c;
  font-weight: 600;
  padding: 8px 0 4px;
  font-size: 15px;
}

.form-description {
  color: #a0aec0;
  font-size: 13px;
  padding: 2px 0 6px;
  line-height: 18px;
}

.pole {
  border: 2px solid #e2e8f0;
  font-size: 16px;
  padding: 12px 16px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  transition: border-color 0.3s;
  font-family: "PT Sans", sans-serif, sans-serif;
}

#push-comments #push_mlyjekpdfdd1__submit {
  background: linear-gradient(135deg, #2d3748, #1a202c);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  display: inline-block;
  margin: 20px 0 0;
  transition: all 0.3s;
  font-size: 16px;
  padding: 12px 32px;
  font-family: "PT Sans", sans-serif, sans-serif;
  letter-spacing: 0.5px;
}

#push-comments #push_mlyjekpdfdd1__submit:hover {
  background: linear-gradient(135deg, #4a5568, #2d3748);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#push-comments #push_mlyjekpdfdd1__label::before,
#push-comments #push_mlyjekpdfdd1__label::after {
  content: '';
  display: none;
}

form a {
  text-decoration: none;
}

/* ===== COMMENTS BLOCK ===== */
.comments-block {
  margin-top: 10px;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.comment-item:hover {
  background: #f7fafc;
  border-color: #e2e8f0;
}

.answer-item {
  margin-left: 40px;
  position: relative;
}

.answer-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e2e8f0;
  border-radius: 3px;
}

.ava-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  transition: border-color 0.3s;
}

.comment-item:hover .ava-img {
  border-color: #cbd5e0;
}

.comment-text {
  width: 100%;
  min-width: 0;
}

.comment-top {
  display: flex;
  margin-bottom: 6px;
  justify-content: space-between;
  align-items: center;
}

.comment-name {
  font-family: "PT Sans", sans-serif, sans-serif;
  margin-left: 0;
  font-size: 15px;
  color: #1a202c;
}

.comment-date {
  color: #a0aec0;
  font-size: 13px;
}

.comment-bottom {
  margin-left: 0;
  padding: 0;
  line-height: 1.55;
  font-size: 15px;
  color: #4a5568;
}

.comment-bottom img:not(.ava-img) {
  display: block;
  max-width: 350px;
  width: 100%;
  margin-top: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===== CONTENT BOX ===== */
.contentBox {
  line-height: 1.6;
}

.contentBox ul:not(.sostavli, .dialog1) {
  list-style: disc;
  margin-left: 25px;
}

/* ===== FOOTER PRIVACY ===== */
.privacy-link {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: #1a202c;
  padding: 14px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.privacy-link:hover {
  background: #2d3748;
  color: #fff;
  opacity: 1;
}

/* ===== UTILITY ===== */
.text--center {
  text-align: center;
}

.text--large {
  font-size: 1.3em;
}

/* ===== LOADING ANIMATION ===== */
#fountainG {
  position: relative;
  width: 96px;
  height: 12px;
  margin: 10px;
}

.fountainG {
  position: absolute;
  top: 0;
  background-color: #000;
  width: 5px;
  height: 5px;
  animation: bounce_fountainG 1.5s infinite normal;
  transform: scale(.3);
  border-radius: 8px;
}

#fountainG_1 { left: 0; animation-delay: .6s; }
#fountainG_2 { left: 12px; animation-delay: .75s; }
#fountainG_3 { left: 24px; animation-delay: .9s; }
#fountainG_4 { left: 36px; animation-delay: 1.05s; }
#fountainG_5 { left: 48px; animation-delay: 1.2s; }
#fountainG_6 { left: 60px; animation-delay: 1.35s; }
#fountainG_7 { left: 72px; animation-delay: 1.5s; }
#fountainG_8 { left: 84px; animation-delay: 1.64s; }

@keyframes bounce_fountainG {
  0% { transform: scale(1); background-color: #000; }
  100% { transform: scale(.3); background-color: #fff; }
}

.load__comment {
  display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1019px) {
  .social_media {
    display: none;
  }

  .header_line_1 {
    justify-content: center;
  }

  .header_line_2 {
    text-align: center;
  }

  .container {
    width: 100%;
  }

  .links {
    height: 40px;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .headline {
    font-size: 26px;
    line-height: 1.25;
    padding: 0;
  }

  .main {
    padding: 20px 16px;
  }

  .article_article {
    padding: 10px 0;
  }

  .article_h1 { font-size: 24px; }
  .article_h2 { font-size: 22px; }
  .article_h3 { font-size: 18px; }
  .article_h4 { font-size: 16px; }

  .article_p {
    text-align: left;
    font-size: 17px;
  }

  .article_img {
    border-radius: 8px;
    margin: 16px auto;
  }

  .article_article h1 {
    font-size: 1.4rem;
  }

  .article_article p,
  .article_article li {
    font-size: 16px;
  }

  .article_ingredient-row {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .article_ingredient-img {
    width: 100px;
    height: 100px;
  }

  .article_ingredient-desc {
    text-align: left;
  }

  .article_ingredient-table .article_ingredient-img {
    width: 70px;
  }

  .article_ingredient-table .article_ingredient-img img {
    width: 60px;
    height: 60px;
  }

  .article_ingredient-table td {
    padding: 10px;
    font-size: 15px;
  }

  .article_forum-post {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .article_forum-content {
    text-align: left;
  }

  .stage-body {
    font-size: 16px;
  }

  .article_steps {
    padding: 10px 14px;
  }

  .article_mechanism {
    padding: 10px 14px;
  }

  .article_action {
    padding: 12px 14px;
  }

  .answer-item {
    margin-left: 16px;
  }

  .answer-item::before {
    left: -10px;
  }

  .info-block--danger,
  .info-block--success,
  .info-block--blue,
  .info-block--info {
    padding: 14px 16px;
  }

  .important-note {
    padding: 1.25rem 1.5rem;
  }

  .comment-item {
    padding: 10px 12px;
  }

  .ava-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .comment-bottom {
    font-size: 14px;
  }

  .comment-name {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 540px) {
  .headline {
    font-size: 22px;
    line-height: 1.3;
  }

  .heartbeat-border {
    font-size: 17px;
    padding: 16px;
  }

  .stage-label {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  body,
  .text_section {
    background: #fff;
  }

  .text_section {
    box-shadow: none;
  }

  .important-note {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .main {
    padding: 12px 10px;
  }

  .article_ingredient-desc {
    font-size: 15px;
  }

  .article_results-table td:first-child {
    width: auto;
  }

  .article_results-table tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid #ccc;
  }

  .article_results-table td {
    display: block;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .article_results-table td:last-child {
    border-bottom: none;
  }
}

/* ===== COLOR UTILITIES ===== */
.c-red    { color: #ff0000; }
.c-darkred{ color: #980000; }
.c-blue   { color: #1c4587; }
.c-green  { color: #008000; }
.c-dkgreen{ color: #274e13; }
.c-green2 { color: #37761c; }
.c-green3 { color: #38761d; }
.c-green4 { color: #4b8332; }
.c-crimson{ color: #d32f2f; }
.c-grey   { color: #757575; }
.c-dark   { color: #272727; }
.c-muted  { color: #626262; }

/* ===== INFO BOXES ===== */
.article_info-box {
  border: 3px solid #000;
  margin: 20px 0;
  border-radius: 4px;
  overflow: hidden;
}

.article_info-header {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  font-size: 15px;
}

.article_info-list {
  list-style: none;
  margin: 0;
  padding: 14px 16px 14px 16px;
}

.article_li {
  margin-bottom: 8px;
  padding-left: 0;
}

.article_info-box--blue {
  border: 3px solid #1a56c4;
  margin: 20px 0;
  border-radius: 4px;
  padding: 16px 18px;
}

.article_info-box--dashed {
  border: 2px dashed #888;
  margin: 20px 0;
  border-radius: 4px;
  padding: 16px 18px;
}

/* ===== RESULTS TABLE ===== */
.article_results-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.article_results-table td {
  border: 1px solid #ccc;
  padding: 12px 14px;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.6;
}

.article_results-table td:first-child {
  font-weight: bold;
  width: 36%;
  background: #f7f7f7;
}
