@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0d1117;
  --bg-card: #161b22;
  --bg-hover: #1c2333;
  --accent: #4a7c59;
  --accent-hover: #5a9c6b;
  --text-primary: #f0f6fc;
  --text-secondary: #8b949e;
  --text-muted: #484f58;
  --border: #30363d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.header__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header__title a {
  color: var(--text-primary);
  text-decoration: none;
}

.header__accent {
  color: var(--accent);
}

.header__tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  font-weight: 400;
}

/* Category Bar */
.categories {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.categories__list {
  display: flex;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  list-style: none;
  min-width: max-content;
  justify-content: center;
}

.categories__btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.categories__btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.categories__btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Rating */
.card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.card__stars {
  color: #f0b429;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.card__reviews {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Product Grid */
.products {
  padding: 2rem 0;
  flex: 1;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Product Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  background: #1e2530;
  padding: 12px;
}

.card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.card__desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.card__btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.65rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: auto;
}

.card__btn:hover {
  background: var(--accent);
  color: #fff;
}

/* No products message */
.products__empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 3rem 1rem;
  font-size: 1rem;
}

.products__empty emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: auto;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 600px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Media Queries */
@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .header {
    padding: 2rem 0;
  }

  .header__title {
    font-size: 3rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb__list li {
  color: var(--text-secondary);
}

.breadcrumb__list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb__list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__list a:hover {
  color: var(--accent);
}

/* Detail Page */
.detail {
  padding: 2rem 0;
  flex: 1;
}

.detail-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.detail-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.detail-name {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.detail-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.detail-stars {
  color: #f0b429;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.detail-reviews {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.detail-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.detail-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Why section */
.detail-why {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.detail-why-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.detail-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.detail-why-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* Back button */
.detail-back {
  display: inline-block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.detail-back:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (min-width: 768px) {
  .detail-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .detail-image-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    position: sticky;
    top: 80px;
  }

  .detail-image {
    height: 100%;
    min-height: 380px;
  }

  .detail-info {
    flex: 1;
  }

  .detail-name {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .detail-image-wrap {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

/* Search Bar */
.search-bar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.search-bar__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar__input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-bar__input::placeholder {
  color: var(--text-muted);
}

.search-bar__input:focus {
  border-color: var(--accent);
}

.search-bar__clear {
  position: absolute;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: none;
  line-height: 1;
  transition: color 0.2s ease;
}

.search-bar__clear:hover {
  color: var(--text-primary);
}

.search-bar__clear--visible {
  display: block;
}

.search-bar__reset {
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-bar__reset:hover {
  background: var(--accent-hover);
}

/* Category Page Header */
.cat-header {
  padding: 2rem 0;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.cat-header__emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cat-header__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cat-header__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .cat-header__title {
    font-size: 2.5rem;
  }

  .cat-header__emoji {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cat-header {
    padding: 3rem 0;
  }

  .cat-header__title {
    font-size: 3rem;
  }

  .cat-header__emoji {
    font-size: 4rem;
  }
}

/* Newsletter */
.newsletter {
  background: var(--accent);
  padding: 3rem 0;
  text-align: center;
}

.newsletter__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.newsletter__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: background 0.2s ease;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__input:focus {
  background: rgba(255, 255, 255, 0.25);
}

.newsletter__btn {
  background: #fff;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.newsletter__btn:hover {
  opacity: 0.9;
}

.newsletter__success {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* About Page */
.about-hero {
  padding: 3rem 0;
  text-align: center;
}

.about-hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-hero__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.about-hero__text:last-child {
  margin-bottom: 0;
}

/* About Criteria */
.about-criteria {
  padding: 3rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-criteria__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.about-criteria__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.about-criteria__card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
}

.about-criteria__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.about-criteria__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-criteria__desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* About Disclosure */
.about-disclosure {
  padding: 3rem 0;
}

.about-disclosure__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-disclosure__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.about-disclosure__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .newsletter__title {
    font-size: 1.75rem;
  }

  .about-hero__title {
    font-size: 2.5rem;
  }

  .about-criteria__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .newsletter {
    padding: 4rem 0;
  }

  .newsletter__title {
    font-size: 2rem;
  }

  .about-hero {
    padding: 4rem 0;
  }

  .about-hero__title {
    font-size: 3rem;
  }

  .about-criteria {
    padding: 4rem 0;
  }

  .about-disclosure {
    padding: 4rem 0;
  }
}

/* Header Nav */
.header__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.header__nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header__nav a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.header__nav--active {
  color: var(--text-primary) !important;
  border-bottom-color: var(--accent) !important;
}

/* Guides Listing */
.guides-hero {
  padding: 2.5rem 0;
  text-align: center;
}

.guides-hero__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.guides-hero__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.guides {
  padding: 2rem 0;
  flex: 1;
}

.guides__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.guide-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--bg-hover);
}

.guide-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.guide-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.guide-card__desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.guide-card__meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.guide-card__btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: auto;
}

.guide-card__btn:hover {
  background: var(--accent);
  color: #fff;
}

/* Guide Article */
.guide-article {
  flex: 1;
}

.guide-article__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.guide-article__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 1.5rem;
  background: var(--bg-hover);
}

.guide-article__content {
  max-width: 680px;
  margin: 0 auto;
}

.guide-article__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.guide-article__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.guide-article__date,
.guide-article__reading {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.guide-article__title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.guide-article__heading {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.guide-article__heading--h2 {
  font-size: 1.3rem;
}

.guide-article__heading--h3 {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.guide-article__text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.guide-article__list {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.guide-article__list li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.guide-article__list li::marker {
  color: var(--accent);
}

/* Related Products in Guide */
.guide-related {
  padding: 2.5rem 1rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
}

.guide-related__title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.guide-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.guide-related__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-related__card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.guide-related__image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-hover);
}

.guide-related__body {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.guide-related__badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.guide-related__name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.guide-related__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.guide-related__btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.35rem 0.75rem;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.guide-related__btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 640px) {
  .guides__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guides-hero__title {
    font-size: 2.25rem;
  }

  .guide-article__title {
    font-size: 2rem;
  }

  .guide-article__image {
    height: 350px;
  }

  .guide-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-related__card {
    flex-direction: column;
  }

  .guide-related__image {
    width: 100%;
    height: 140px;
  }
}

@media (min-width: 1024px) {
  .guides-hero {
    padding: 3.5rem 0;
  }

  .guides-hero__title {
    font-size: 2.75rem;
  }

  .guide-article__title {
    font-size: 2.25rem;
  }

  .guide-article__image {
    height: 400px;
  }

  .guide-article__inner {
    padding: 3rem 1rem;
  }
}
