._1ci.img {
  object-fit: cover !important;
}

.review-cards {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.review-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  background: #fff;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-name {
  font-weight: bold;
  flex: 1;
}

.review-amount {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}

.arrow-up {
  color: green;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

.review-progress {
  height: 12px;
  background: repeating-linear-gradient(45deg, red, red 10px, #dd2222 10px, #dd2222 20px);
  border-radius: 5px;
  margin: 10px 0;
  background-size: 300% 100%;
  /* більше простору для плавності */
  animation: moveStripe 4s linear infinite;
  /* плавна довга анімація */
}

@keyframes moveStripe {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -300px 0;
    /* повільний плавний зсув */
  }
}

.review-quote {
  font-style: italic;
  padding-left: 10px;
  border-left: 3px solid green;
  color: #444;
}

.btn_n {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #29293a;
  width: 70%;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff !important;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  margin: 0 0 20px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s !important;
}

.btn_n:hover {
  background: #4a4a65 !important;
}

.btn_n:focus {
  background: #4a4a65 !important;
}

.btn_n .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

.btn_n span {
  display: block;
  width: 80%;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
      0 0 0 20px rgba(255, 255, 255, 0.1),
      0 0 0 40px rgba(255, 255, 255, 0.1),
      0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1),
      0 0 0 40px rgba(255, 255, 255, 0.1),
      0 0 0 60px rgba(255, 255, 255, 0.1),
      0 0 0 80px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 576px) {
  .btn_n {
    width: 100%;
  }
}

/* Extracted from inline styles */

.mt-30 {
  margin-top: 30px;
}

.btn_n--center {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.link-inherit {
  text-decoration: none;
  color: inherit;
}

.ser {
  outline: 0;
}

.search-icon {
  width: 22px;
}

.content-video {
  width: 100%;
  height: auto;
  display: block;
}

.footer-icons {
  height: 26px;
}

.article-figure {
  margin: 28px auto;
  text-align: center;
}

.article-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-figure--narrow {
  max-width: 520px;
}

.article-figure--hero img {
  border-radius: 4px;
}

.breadcrumbs {
  margin: 0 0 12px;
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #c00;
  text-decoration: none;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 24px;
}

.author-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006600 0%, #8b0000 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  overflow: hidden;
}

.author-badge > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-badge strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #111;
}

.author-badge > div > span {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #666;
}

.author-badge .js-current-date {
  display: inline;
  margin: 0;
  font-size: inherit;
  color: inherit;
}

.deadline-box {
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: 8px;
  background: #fff5f5;
  border: 1px solid #f0c2c2;
  color: #222;
  font-size: 16px;
  line-height: 1.45;
}

.cta-inline {
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

.cta-inline .button,
article .cta-inline a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #006600 0%, #0a3d14 50%, #8b0000 100%);
  color: #fff !important;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.cta-inline .button:hover,
article .cta-inline a.button:hover {
  color: #fff !important;
  text-decoration: none !important;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.meta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-actions button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #262626;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.meta-actions button:hover {
  background: #f5f5f5;
}

.offer-timer {
  margin: 0 auto 18px;
  padding: 12px 16px;
  max-width: 420px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.offer-timer span {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
}

.offer-timer strong {
  display: block;
  color: #cc1414;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1px;
}

.custom-comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-comment {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #f7f7f7;
  color: #111;
}

.custom-comment--reply {
  margin-left: 46px;
  border-left: 3px solid #d7d7d7;
}

.custom-comment img {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.custom-comment strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #1f1f1f;
}

.custom-comment p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.45;
}

.custom-comment span {
  color: #707070;
  font-size: 13px;
}

@media (max-width: 640px) {
  .custom-comment {
    padding: 14px;
  }

  .custom-comment--reply {
    margin-left: 18px;
  }

  .offer-timer strong {
    font-size: 26px;
  }

  .cta-inline .button,
  article .cta-inline a.button {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 15px;
  }
}
