:root {
  --guide-primary: #3a8c3a;
  --guide-primary-dark: #2e7030;
  --guide-bg: #f8faf7;
  --guide-card: #ffffff;
  --guide-text: #172018;
  --guide-muted: #68756a;
  --guide-border: #dfe7dd;
  --guide-soft: #eef4ed;
}

.guide-store-page {
  width: min(100%, 1184px);
  margin: 0 auto;
  padding: 0 16px 64px;
  color: var(--guide-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.guide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: 0 0 12px;
  padding: 12px 0;
  overflow-x: auto;
  border-bottom: 1px solid #edf2ed;
  background: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.guide-breadcrumb a {
  color: var(--guide-muted);
  text-decoration: none;
}

.guide-breadcrumb a:hover {
  color: var(--guide-text);
}

.guide-breadcrumb span {
  color: var(--guide-primary);
  font-weight: 700;
}

.guide-breadcrumb svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--guide-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-banner {
  position: relative;
  height: 260px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--guide-soft);
}

.guide-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.guide-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.56) 0%, rgba(0,0,0,.16) 62%, transparent 100%);
}

.guide-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 32px 48px;
}

.guide-banner-content span,
.guide-badge-inline,
.guide-shop-cta span,
.guide-expert-note span {
  align-self: flex-start;
  border-radius: 999px;
  background: var(--guide-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 12px;
}

.guide-banner-content h1 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.guide-banner-content p {
  max-width: 450px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.6;
}

.guide-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.guide-filters > span {
  margin-right: 4px;
  color: var(--guide-muted);
  font-size: 14px;
}

.guide-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 16px;
  border: 1px solid var(--guide-border);
  border-radius: 999px;
  color: var(--guide-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}

.guide-filters a:hover {
  background: var(--guide-soft);
}

.guide-filters a.is-active {
  border-color: var(--guide-primary);
  background: var(--guide-primary);
  color: #fff;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.guide-card-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  background: var(--guide-card);
  transition: box-shadow .2s ease, transform .2s ease;
}

.guide-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
}

.guide-product-image {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  background: var(--guide-soft);
  text-decoration: none;
}

.guide-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.guide-product-card:hover .guide-product-image img {
  transform: scale(1.04);
}

.guide-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: var(--guide-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
}

.guide-save {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
}

.guide-save svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #777;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.guide-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.guide-stars {
  color: var(--guide-primary);
  font-size: 14px;
  letter-spacing: -1px;
}

.guide-rating small {
  color: var(--guide-muted);
  font-size: 12px;
}

.guide-product-body h2,
.guide-product-body h3 {
  margin: 0;
  color: var(--guide-text);
  font-size: 15px;
  line-height: 1.32;
  letter-spacing: 0;
}

.guide-product-body h2 a,
.guide-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.guide-product-body p {
  flex: 1;
  margin: 0;
  color: var(--guide-muted);
  font-size: 13px;
  line-height: 1.6;
}

.guide-read-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--guide-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s;
}

.guide-read-button:hover {
  background: var(--guide-primary-dark);
}

.guide-shop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--guide-border);
  border-radius: 16px;
  background: var(--guide-soft);
}

.guide-shop-cta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-shop-cta h2 {
  margin: 0;
  color: var(--guide-text);
  font-size: 22px;
  letter-spacing: 0;
}

.guide-shop-cta p {
  max-width: 420px;
  margin: 0;
  color: var(--guide-muted);
  font-size: 14px;
  line-height: 1.6;
}

.guide-shop-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--guide-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.guide-shop-cta a:hover {
  background: var(--guide-primary-dark);
}

.guide-detail-page {
  padding-bottom: 72px;
}

.guide-article-page {
  max-width: 1152px;
  padding: 32px 16px 72px;
  background: #fff;
}

.guide-article-page .guide-breadcrumb {
  min-height: 0;
  margin-bottom: 24px;
  padding: 0;
  border-bottom: 0;
}

.guide-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
}

.guide-article-main {
  min-width: 0;
}

.guide-article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef6f0;
  color: var(--guide-primary);
  font-size: 12px;
  font-weight: 600;
}

.guide-article-main h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}

.guide-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  color: #9ca3af;
  font-size: 14px;
}

.guide-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-meta-item svg,
.guide-share-row svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-article-hero-image {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  background: var(--guide-soft);
}

.guide-article-hero-image img,
.guide-inline-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.guide-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.guide-share-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: border-color .15s, color .15s;
}

.guide-share-row button:hover {
  border-color: var(--guide-primary);
  color: var(--guide-primary);
}

.guide-prose {
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.guide-prose p {
  margin: 0 0 18px;
}

.guide-prose h2 {
  margin: 32px 0 12px;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.guide-tip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 26px;
}

.guide-tip-card {
  padding: 16px;
  border: 1px solid #d4eadb;
  border-radius: 12px;
  background: #f7fbf8;
}

.guide-tip-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.guide-tip-card svg,
.guide-newsletter-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--guide-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-tip-card span {
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.guide-tip-card p {
  margin: 0;
  color: #5f6b62;
  font-size: 14px;
  line-height: 1.65;
}

.guide-inline-image {
  overflow: hidden;
  margin: 24px 0 18px;
  border-radius: 12px;
}

.guide-inline-image img {
  aspect-ratio: 16 / 9;
}

.guide-inline-image figcaption {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 12px;
  text-align: center;
}

.guide-advice-box {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--guide-primary);
  border-radius: 0 12px 12px 0;
  background: #eef6f0;
}

.guide-advice-box p {
  margin: 0;
  color: #2e6337;
  font-size: 14px;
  font-weight: 700;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.guide-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #5f6b62;
  font-size: 12px;
  transition: background .15s, color .15s;
}

.guide-tags span:hover {
  background: #eef6f0;
  color: var(--guide-primary);
}

.guide-sidebar-sticky {
  position: sticky;
  top: 84px;
}

.guide-sidebar h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 15px;
  letter-spacing: 0;
}

.guide-related-list {
  display: grid;
  gap: 16px;
}

.guide-related-item {
  display: flex;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.guide-related-img {
  width: 80px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background: var(--guide-soft);
}

.guide-related-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s;
}

.guide-related-item:hover .guide-related-img img {
  transform: scale(1.05);
}

.guide-related-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color .15s;
}

.guide-related-item:hover strong {
  color: var(--guide-primary);
}

.guide-related-item small {
  display: block;
  margin-top: 6px;
  color: #9ca3af;
  font-size: 12px;
}

.guide-newsletter {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #d4eadb;
  border-radius: 18px;
  background: #f7fbf8;
}

.guide-newsletter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--guide-primary);
}

.guide-newsletter-icon svg {
  stroke: #fff;
}

.guide-newsletter h4 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 15px;
  letter-spacing: 0;
}

.guide-newsletter p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.guide-newsletter input {
  width: 100%;
  min-height: 38px;
  margin-bottom: 8px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}

.guide-newsletter input:focus {
  border-color: var(--guide-primary);
}

.guide-newsletter button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--guide-primary);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: background .15s;
}

.guide-newsletter button:hover {
  background: var(--guide-primary-dark);
}

.guide-detail-card {
  overflow: hidden;
  border: 1px solid var(--guide-border);
  border-radius: 16px;
  background: #fff;
}

.guide-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #f3f8f2, #fff);
}

.guide-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-detail-copy h1 {
  margin: 0;
  color: var(--guide-text);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.guide-detail-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--guide-muted);
  font-size: 15px;
  line-height: 1.7;
}

.guide-rating-large {
  margin-top: 4px;
}

.guide-detail-media {
  height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.guide-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.guide-detail-content {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 38px;
}

.guide-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--guide-border);
}

.guide-info-block h2,
.guide-expert-note h2,
.guide-related-head h2 {
  margin: 0 0 14px;
  color: var(--guide-text);
  font-size: 22px;
  letter-spacing: 0;
}

.guide-info-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-info-block li {
  position: relative;
  padding-left: 26px;
  color: var(--guide-muted);
  font-size: 15px;
  line-height: 1.65;
}

.guide-info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--guide-primary);
  box-shadow: 0 0 0 5px rgba(58,140,58,.12);
}

.guide-expert-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  background: var(--guide-soft);
}

.guide-expert-note p {
  margin: 0;
  color: var(--guide-muted);
  font-size: 14px;
  line-height: 1.7;
}

.guide-related {
  margin-top: 48px;
}

.guide-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.guide-related-head a {
  color: var(--guide-primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .guide-article-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar-sticky {
    position: static;
  }

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

  .guide-card-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .guide-store-page {
    padding: 0 12px 48px;
  }

  .guide-banner {
    height: 300px;
    border-radius: 12px;
  }

  .guide-banner-content {
    padding: 24px;
  }

  .guide-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .guide-filters a,
  .guide-filters > span {
    flex: 0 0 auto;
  }

  .guide-shop-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .guide-shop-cta a {
    width: 100%;
  }

  .guide-detail-hero {
    padding: 20px;
  }

  .guide-article-meta,
  .guide-share-row {
    gap: 10px;
  }

  .guide-tip-grid {
    grid-template-columns: 1fr;
  }

  .guide-detail-media {
    height: 240px;
  }

  .guide-related-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.articles-page {
  width: min(100%, 1184px);
  margin: 0 auto;
  padding: 24px 24px 72px;
  color: #1f2937;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.articles-header {
  margin: 22px 0 40px;
}

.articles-header__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.articles-header__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf7ed;
  color: #3bb54a;
}

.articles-header__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
}

.articles-header__eyebrow,
.article-muted {
  color: #98a2b3;
  font-size: 14px;
}

.articles-header h1 {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}

.articles-header p {
  max-width: 720px;
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.65;
}

.article-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid #eef2f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.article-featured__image,
.article-card__image {
  display: block;
  overflow: hidden;
  background: #edf7ed;
}

.article-featured__image img,
.article-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .32s ease;
}

.article-featured:hover img,
.article-card:hover img {
  transform: scale(1.05);
}

.article-featured__body {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.article-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: #e8f4fd;
  color: #4a9fdb;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.article-tag--care {
  background: #edf7ed;
  color: #3bb54a;
}

.article-featured h2,
.article-card h2 {
  margin: 0 0 12px;
  color: #1f2937;
  line-height: 1.38;
  letter-spacing: 0;
}

.article-featured h2 {
  font-size: 22px;
}

.article-card h2 {
  font-size: 15px;
}

.article-featured h2 a,
.article-card h2 a {
  color: inherit;
  text-decoration: none;
}

.article-featured h2 a:hover,
.article-card h2 a:hover {
  color: #16a34a;
}

.article-featured p,
.article-card p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.article-featured p {
  font-size: 14px;
}

.article-card p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-featured__bottom,
.article-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.article-card__details {
  padding-top: 12px;
  border-top: 1px solid #f2f4f7;
}

.article-card__details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #98a2b3;
  font-size: 12px;
}

.article-card__details svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3bb54a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.article-read-link:hover {
  color: #15803d;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  overflow: hidden;
  border: 1px solid #eef2f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  transition: box-shadow .2s ease, transform .2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15,23,42,.1);
}

.article-card__image {
  height: 178px;
}

.article-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.article-card .article-card__meta-row {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .article-featured,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-featured__image {
    height: 260px;
  }

  .article-featured__body {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .articles-page {
    padding: 32px 16px 56px;
  }

  .articles-header h1 {
    font-size: 28px;
  }

  .article-featured__body,
  .article-card__body {
    padding: 20px;
  }

  .article-featured__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
