*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--green-dark);
}
a {
  display: block;
  outline: none;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}
p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0;
}

small {
  font-size: 13px;
  color: var(--text-soft);
}
.list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
/* variables */
:root {
  --green: #485f28;
  --green-dark: #2e4a35;
  --green-soft: #6f8f76;

  --beige: #f4f1ec;
  --white: #ffffff;

  --text: #2c2c2c;
  --text-soft: #5e5e5e;

  --radius: 16px;
  --radius-small: 10px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* page */
body.page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #dddddd;
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
}
.wrapper {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
  /* padding: 16px; */
}
.section-bg {
  /* background-image: url(./images/bg.webp); */
  background: linear-gradient(to bottom, #f6f1e7 0%, #efe6d6 50%, #e6d9c3 100%);
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-block{
  display: flex;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  align-items: center;
  text-transform: uppercase;
  /* gap: 10px; */
  justify-content: space-between;
  padding: 5px;
  width: 100%;
  font-weight: 700;
  text-align: center;
}
.header-block p{
  color: var(--white);
  font-size: 25px;
  flex: 1;
  align-items: center;
}
.header-img{
  height: 60px;
  width: 60px;
}



.discount-bg{
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove{
  0%{
    filter: brightness(1);
  }
  50%{
    filter: brightness(1.3);
  }
  100%{
    filter: brightness(1);
  }
}


.benefits_list {
  padding: 12px 0 12px 18px;
  background-size: contain;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  background: var(--green);
}
.benefits_list .benefit_item {
  float: left;
  padding: 0 0 0 44px;
  width: 31%;
  font-size: 12px;
  line-height: 16px;
  position: relative;
  color: var(--white);
}
.benefits_list .benefit_item:last-child {
  width: 130px;
}
.benefits_list .benefit_item:before {
  display: block;
  content: '';
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--green-dark) center no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}
.benefits_list .benefit_item:nth-child(1):before {
  background-image: url(../images/offer3__benefit1_icon.png);
}
.benefits_list .benefit_item:nth-child(2):before {
  background-image: url(../images/offer3__benefit2_icon.png);
}
.benefits_list .benefit_item:nth-child(3):before {
  background-image: url(../images/offer3__benefit3_icon.png);
}
.btn-block {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}
.btn-block a{
  text-align: center;
}
.btn {
  position: relative;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  text-transform: uppercase;
 background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 50%, #ff5252 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(63, 95, 70, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
  width: 80%;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: liquidMove 3s infinite ease-in-out;
}
@keyframes liquidMove {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(63, 95, 70, 0.45);
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  background-color: #fff;
  position: absolute;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.price-section {
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}

.price-card {
  background: rgba(255, 250, 240, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 20px 20px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(120, 100, 60, 0.15);
  border: 1px solid rgba(160, 140, 100, 0.15);
  position: relative;
  overflow: hidden;
}

/* мягкое солнечное пятно */
.price-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 220, 160, 0.4), transparent 70%);
  z-index: 0;
}

.price-label {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.price-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 25px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.old-price {
  font-size: 24px;
  color: #9c8f7a;
  text-decoration: line-through;
  opacity: 0.7;
}

.new-price {
  font-size: 48px;
  font-weight: 700;
  /*color: var(--green-dark);*/
  position: relative;
  background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 50%, #ff5252 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
}

/* лёгкое свечение новой цены */
.new-price::after {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 5px;
  height: 12px;
  background: rgba(255, 210, 140, 0.45);
  border-radius: 10px;
  z-index: -1;
}

.price-note {
  font-size: 14px;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}
.new-price-block {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.discount-info{
  color: var(--green-dark);
    text-align: center;
    font-weight: bold;
    margin: 0px 20px 10px;
    font-size: 17px;
    text-transform: uppercase;
}

/* Флажок скидки */
.discount-badge {
  position: absolute;
  top: -22px;
  right: -25px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(70, 100, 50, 0.25);
  white-space: nowrap;
}
.card-wrapper{
  margin-top: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cards-track{
  display: flex;
  transition: transform 0.4s ease;
}
.card-item {
  background: rgba(255, 250, 240, 0.75);
  margin: 0;
  padding:20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 15px 40px rgba(120, 100, 60, 0.15);
  border: 1px solid rgba(160, 140, 100, 0.15);
  border-radius: 24px;
  min-width: 100%;
}
.card-arrow{
  position: absolute;
  cursor: pointer;
  content:'';
  width: 48px;
  height: 48px;
  top: 40%;
  animation: arrows infinite 1s linear alternate;
  z-index: 3;
}
.card-prev-arrow{
  left: 10px;
  background-image: url('../images/prev-arrow.svg');
}
.card-next-arrow{
  right: 10px;
  background-image: url('../images/next-arrow.svg');
}
@keyframes arrows {
  0%{
    transform: scale(1) translateY(-50%);
  }
  100%{
    transform: scale(1.3) translateY(-50%);
  }
}
.card-title{
  color: var(--green);
text-align: center;
font-weight: bold;
font-size: 17px;
text-transform: uppercase;
}
.benefits-title {
  font-size: 22px;
  line-height: 1.1;
  color: var(--green-dark);
  text-align: center;
  font-weight: 700;
}
.benefits-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--green);
  background: rgba(255, 250, 240, 0.6);
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(120, 100, 60, 0.08);
  backdrop-filter: blur(3px);
  margin-bottom: 20px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
  grid-template-columns: 1fr;
  width: 100%;
  gap: 18px 40px;
  background: rgba(255, 250, 240, 0.6);
  box-shadow: 0 6px 18px rgba(120, 100, 60, 0.08);
  backdrop-filter: blur(3px);
  padding: 14px 18px;
  border-radius: 14px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--green-dark);
}

.icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.icon img {
  width: 22px;
  height: 22px;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(70, 100, 50, 0.25));
}

.care-call {
  display: flex;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  padding: 20px 20px;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: 25px;
  width: 100%;
  font-weight: 700;
  text-align: center;
}
.quality-check {
  padding: 20px 20px;
  background: linear-gradient(to bottom, #f6f1e7 0%, #efe6d6 100%);
}

.quality-check__container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quality-check__title {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.quality-check__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.quality-check__item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  background: rgba(255, 250, 240, 0.65);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--green);
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(120, 100, 60, 0.08);
  backdrop-filter: blur(3px);
  margin: 0 auto 10px;
}

.quality-check__icon img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 6px rgba(70, 100, 50, 0.25));
}

.quality-check__note {
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}
.order_form {
  max-width: 520px;
  margin: 0px auto;
  padding: 20px 0;
  /* background: rgba(255, 250, 240, 0.75); */
  backdrop-filter: blur(6px);
  /* border-radius: 24px; */
  /* box-shadow: 0 15px 40px rgba(120, 100, 60, 0.15); */
  /* border: 1px solid rgba(160, 140, 100, 0.15); */
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ОБЩИЕ ПОЛЯ */
.order_form .field {
  width: 100%;
  padding: 24px 16px 24px 46px; /* место под иконку */
  border-radius: 14px;
  border: 1px solid rgba(140, 130, 110, 0.25);
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  color: var(--green);
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(120, 100, 60, 0.05);
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 20px;
}
.order_form .field::placeholder {
  color: var(--green);
}


/* КОЛИЧЕСТВО */
.order_form select.field {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%236B8E4E' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16'/%3E%3C/svg%3E");
}


#tab2 .select_1{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-size='20' font-family='Arial, Helvetica, sans-serif' font-weight='700' fill='%236B8E4E'%3E1%3C/text%3E%3C/svg%3E");
}
#tab2 .select_2{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-size='20' font-family='Arial, Helvetica, sans-serif' font-weight='700' fill='%236B8E4E'%3E2%3C/text%3E%3C/svg%3E");
}
#tab2 .select_3{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-size='20' font-family='Arial, Helvetica, sans-serif' font-weight='700' fill='%236B8E4E'%3E3%3C/text%3E%3C/svg%3E");
}

/* ИМЯ */
.order_form input[name='name'] {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%236B8E4E' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12c2.7 0 5-2.3 5-5s-2.3-5-5-5-5 2.3-5 5 2.3 5 5 5zm0 2c-4 0-8 2-8 5v1h16v-1c0-3-4-5-8-5z'/%3E%3C/svg%3E");
}

/* ТЕЛЕФОН */
.order_form input.phone {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%236B8E4E' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3V21c0 .7-.6 1.3-1.3 1.3C10.3 22.3 1.7 13.7 1.7 3.3 1.7 2.6 2.3 2 3 2h3.4c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.2 1.2l-2.2 2.2z'/%3E%3C/svg%3E");
}

/* ФОКУС */
.order_form .field:focus {
  border-color: #6b8e4e;
  box-shadow: 0 0 0 3px rgba(107, 142, 78, 0.15);
  background-color: #fff;
}

/* секція відгуків */
.reviews-section {
  padding-top: 22px;
  padding-bottom: 28px;
}

/* підсумок рейтингу */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 360px;
  margin: 4px auto 20px;
  padding: 16px 24px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(160, 140, 100, 0.18);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(120, 100, 60, 0.14);
}
.reviews-summary__score {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
}
.reviews-summary__stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 2px;
}
.reviews-summary__count {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 5px;
}

.reviews__wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.reviews__viewport {
  overflow: hidden;
  padding: 12px 0;
}
.reviews__track {
  display: flex;
  transition: transform 0.45s ease;
}

.review {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 30px 24px 24px;
  background: linear-gradient(180deg, #fffaf2 0%, #fbf3e6 100%);
  border: 1px solid rgba(160, 140, 100, 0.2);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(120, 100, 60, 0.16);
  overflow: hidden;
}
/* велика декоративна лапка */
.review::before {
  content: '\201C';
  position: absolute;
  top: 2px;
  right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(72, 95, 40, 0.1);
  pointer-events: none;
}

.review__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.review__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(70, 100, 50, 0.3);
}

.review__name {
  font-weight: 700;
  font-size: 17px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(72, 95, 40, 0.1);
  padding: 3px 9px;
  border-radius: 20px;
}
.review__verified img {
  width: 12px;
  height: 12px;
}

.review__date {
  font-size: 12px;
  color: #9a9a9a;
  margin-top: 4px;
}

.review__rating {
  font-size: 17px;
  letter-spacing: 2px;
  color: #f5a623;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.review__text {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  position: relative;
  z-index: 1;
}

/* крапки пагінації відгуків */
.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

/* кнопки навігації */
.reviews__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--green-dark);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reviews__btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.reviews__btn--prev {
  left: 2px;
}
.reviews__btn--next {
  right: 2px;
}



/* tabs */
.tabs-block{
  padding: 20px;
  ;
}
.tabs {
  width: 100%;
  display: flex;
  justify-content: center;

}

.tab-discount{
  position: absolute;
  top: 1px;
  right: 20px;
  font-size: 12px; 
  color: red;
  font-weight: bold;
  text-transform: none;
  animation: discountScale 2s  infinite linear alternate;
}
@keyframes discountScale{
0%{
  transform: scale(1);
}
100%{
  transform:scale(1.2);
}
}

/*.tab {*/
/*  backdrop-filter: blur(6px);*/
/*  box-shadow: 0 15px 40px rgba(120, 100, 60, 0.15);*/
/*  border: 1px solid rgba(160, 140, 100, 0.15);*/
/*  background: rgba(255, 250, 240, 0.75);*/
  /* padding: 17px; */
/*  font-size: 18px;*/
/*  cursor: pointer;*/
/*  color: var(--green-dark);*/
/*  text-transform: uppercase;*/
/*  width: 50%;*/
/*  text-align: center;*/
/*}*/
/* .tab:nth-child(1){
  border-radius: 24px 0  0 24px;
}
.tab:nth-child(2){
  border-radius:  0 24px 24px 0;
} */
.tab.active {
  color: var(--white);
  background: linear-gradient(180deg, var(--green), var(--green-dark));
}
.offer-buttons{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.offer-btn{
  border:none;
  cursor:pointer;
  width:100%;
  /* min-height:50px; */
  padding: 20px 10px;
  border-radius:12px;
  color:var(--white);
  font-size:24px;
  font-weight:700;
  /* background:linear-gradient(180deg,var(--green),var(--green-dark)); */
  background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 50%, #ff5252 100%);
  position: relative;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.15),
    inset 0 -4px 0 rgba(0,0,0,.15),
    0 8px 15px rgba(0,0,0,.14);
  transition:.25s ease;
  overflow: hidden;
}
.offer-btn::after{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: liquidMove 3s infinite ease-in-out;
}
.offer-btn:hover{
  transform:scale(1.03);
}

.offer-btn span{
  margin-left:10px;
}

.content {
  display: none;
  margin-top: 10px;
}

.content.active {
  display: block;
}
@media (max-width: 495px) {
  .header-block p {
    font-size: 20px;
  }
}
@media (max-width: 415px) {
  .discount-badge {
    right: -20px;
  }
  .new-price {
    font-size: 35px;
  }
  .price-wrapper {
    gap: 15px;
  }
  .tab {
    font-size: 16px;
  }
  .care-call{
    font-size: 20px;
  }
  .header-block p {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .header-block p {
    font-size: 18px;
  }
  .card-arrow {
    top: 30%;
  }
}
/* статья-адверторіал */
.article {
  padding: 24px 20px 4px;
  max-width: 480px;
  margin: 0 auto;
}
.article__img {
  margin: 22px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(120, 100, 60, 0.15);
}
.article__img img {
  display: block;
  width: 100%;
  height: auto;
}
.article__img figcaption {
  font-size: 13px;
  color: var(--green-dark);
  text-align: center;
  padding: 10px 14px;
  background: rgba(255, 250, 240, 0.85);
  font-style: italic;
}
.article__lead {
  position: relative;
  background: rgba(255, 250, 240, 0.85);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  padding: 20px 20px 20px 22px;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(120, 100, 60, 0.12);
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
  color: var(--green-dark);
  font-weight: 500;
}
.article__lead span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
}
.article__intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}
.article__author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 18px;
  color: var(--white);
}
.article__author-badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.article__author-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.article__author-role {
  font-size: 13px;
  opacity: 0.85;
}
.article__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
.article__body strong {
  color: var(--green-dark);
}
.article__highlight {
  background: rgba(72, 95, 40, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--green-dark) !important;
}

/* пагмнация */
.card-pagination {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 20px;
  gap: 8px;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-dot.active {
  background: #2e7d32; /* зелёный под твою тему */
  transform: scale(1.2);
}