/* ==========================================================================
   INDEX.CSS — Homepage Styles | The Isle Cheats
   ========================================================================== */

/* --- Hero Stage (bg spans copy -> trust -> stats -> Discord) --- */
.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bottom-anchored so baked-in THE ISLE wordmark stays fully visible */
  object-position: 68% 100%;
  min-height: 100%;
  transform: scale(1.02);
  filter: blur(1.2px) brightness(0.78);
}

/* Soft exit fade ONLY under Discord — keeps wordmark uncropped */
.hero-stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(11, 9, 20, 0.82) 0%,
    rgba(11, 9, 20, 0.55) 38%,
    rgba(11, 9, 20, 0.32) 100%
  );
}

/* Animated purple glow blobs */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-blob1 8s ease-in-out infinite alternate;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 12%;
  right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-blob2 10s ease-in-out infinite alternate;
}

@keyframes hero-blob1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.2); }
}

@keyframes hero-blob2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, -40px) scale(1.15); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex: 0 0 auto;
  padding-top: calc(var(--header-height) + 8px);
}

/*
  Left column + open right art lane.
  CSS Grid column 1 = copy (flush left). Column 2 = empty (background art).
*/
.hero-main {
  display: grid !important;
  grid-template-columns: minmax(280px, 42vw) 1fr;
  justify-content: stretch;
  align-items: start;
  justify-items: start;
  width: 100%;
  flex: 0 0 auto;
  padding-top: 28px;
  padding-bottom: 8px;
  box-sizing: border-box;
}

/* Flush-left copy — never centered in the viewport */
.hero-content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 640px;
  margin: 0 !important;
  padding: 0;
  text-align: left !important;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin: 0 0 22px 0;
}

.hero-stage h1 {
  font-size: clamp(1.85rem, 1.15rem + 3.2vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-main);
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  text-align: left !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 0.84rem + 0.4vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  width: 100%;
  margin: 0 0 28px 0;
  text-align: left !important;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start !important;
  gap: 14px;
  margin: 0 0 18px 0;
  width: auto;
  max-width: 100%;
}

.hero-ctas .btn {
  margin: 0;
  flex: 0 0 auto;
}

/* Premium hero CTAs — match reference (icon + label, side-by-side) */
.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: clamp(48px, 6.5vw, 52px);
  min-height: 48px;
  padding: 0 clamp(14px, 2vw, 22px);
  border-radius: 14px;
  font-size: clamp(0.8rem, 0.74rem + 0.25vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-primary {
  background: linear-gradient(180deg, #c084fc 0%, #a855f7 42%, #9333ea 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.35),
    0 8px 28px rgba(168, 85, 247, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  background: linear-gradient(180deg, #d8b4fe 0%, #b56ef9 42%, #a855f7 100%);
  box-shadow:
    0 0 0 1px rgba(192, 132, 252, 0.5),
    0 12px 36px rgba(168, 85, 247, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-transform: none;
  font-weight: 600;
}

.btn-hero-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.btn-hero-primary .btn-icon {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.hero-features-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: left;
}
.hero-features-link:hover {
  color: var(--accent-primary);
}

/* Bottom trust strip — icon left, copy right, vertical dividers */
.hero-trust-bar {
  width: 100%;
  padding: 0;
  margin-top: 28px;
}

/* Light spacer between trust bar and stats */
.hero-isle-gap {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 28px;
  flex-shrink: 0;
  pointer-events: none;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 14px 22px;
  background: rgba(11, 9, 20, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
  padding: 4px 10px;
  min-width: 0;
}

.hero-trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-trust-copy strong {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero-trust-copy span {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-trust-divider {
  width: 1px;
  height: 44px;
  background: rgba(168, 85, 247, 0.28);
  flex-shrink: 0;
}

/* ─── Feature Grid ────────────────────────────────────────────────────────── */
.features-section { background: transparent; }

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: var(--shadow-purple);
}

.feature-card:hover::before { opacity: 1; }

.feature-card-icon {
  margin-bottom: 20px;
}

.feature-card:hover .feature-card-icon.icon-box {
  border-color: rgba(232, 121, 249, 0.85);
  box-shadow: none;
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: auto;
}

.feature-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  transition: var(--transition);
}

.feature-card-link:hover { color: var(--accent-hover); gap: 10px; }
.feature-card-link .arrow { font-size: 1rem; transition: var(--transition); }

/* ─── Compatibility Matrix ────────────────────────────────────────────────── */
.compat-section {
  background: rgba(24, 20, 37, 0.28);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.compat-table-wrap h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compat-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.compat-table td {
  padding: 12px 14px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

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

.compat-table tr:hover td { background: rgba(168, 85, 247, 0.04); }

.compat-status-ok  { color: #22c55e; font-weight: 700; }
.compat-status-no  { color: #ef4444; font-weight: 700; }

/* ─── Quick-Start ─────────────────────────────────────────────────────────── */
.quickstart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quickstart-steps { display: flex; flex-direction: column; gap: 24px; }

.quickstart-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.08));
  border: 2px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.quickstart-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.quickstart-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickstart-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.quickstart-cta-wrap p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ─── Reviews Section ─────────────────────────────────────────────────────── */
.reviews-section {
  padding: 80px 0;
  overflow: hidden;
  background: rgba(24, 20, 37, 0.25);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-marquee-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reviews-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 52s linear infinite;
}

.reviews-marquee:hover,
.reviews-marquee:focus-within {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    justify-content: center;
  }

  .reviews-marquee .review-card[aria-hidden="true"] {
    display: none;
  }
}

.review-card {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 18px;
  background: #181425;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 0;
  margin: 0;
}

.review-text {
  flex: 1;
  font-size: 0.88rem;
  color: #d1d5db;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

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

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name { font-size: 0.85rem; font-weight: 600; color: #FFFFFF; }
.review-time,
.review-date { font-size: 0.75rem; color: #B4B4BE; }

@media (max-width: 820px) {
  .review-card {
    width: min(280px, 82vw);
  }
}

/* ─── Social Proof Bar (lives inside hero-stage on same bg) ───────────────── */
.social-proof {
  padding: 20px 0 32px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  text-align: left;
  background: transparent;
}

.social-proof-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat-item { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--text-main); line-height: 1; }
.stat-label  { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: var(--border-color); }

/* ─── Responsive ──────────────────────────────────────────────────────────── */

/* Laptops & small desktops */
@media (max-width: 1366px) {
  .hero-main {
    grid-template-columns: minmax(260px, 46vw) 1fr;
    padding-top: 22px;
  }
  .stat-number { font-size: clamp(1.7rem, 2.2vw, 2.1rem); }
}

/* Mid desktop — features → 2 columns before tablet */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 20px 18px;
  }
  .hero-trust-divider { display: none; }
}

/* Tablets (iPad Air / Pro portrait) — 2-col feature grids */
@media (max-width: 820px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-inner { padding-top: calc(var(--header-height) + 10px); }
  .hero-main {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
  }
  .hero-ctas {
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
  }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-secondary {
    width: auto;
    flex: 1 1 auto;
    min-width: min(100%, 180px);
    justify-content: center;
  }

  .hero-trust {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 14px;
  }
  .hero-trust-divider { display: none; }
  .hero-trust-item { padding: 0; }

  .compat-grid     { grid-template-columns: 1fr; }
  .quickstart-grid { grid-template-columns: 1fr; }
  .quickstart-visual { display: none; }
  .social-proof-stats { gap: 28px; }
  .stat-divider { display: none; }
  .social-proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
  }
  .preview-btn { font-size: 0.8rem; padding: 8px 14px 8px 8px; max-width: 100%; min-height: 44px; }
  .preview-btn-icon { width: 30px; height: 30px; }
  .discord-btn { font-size: 0.82rem; padding: 12px 14px; max-width: 100%; min-height: 44px; }
}

/* Standard mobile */
@media (max-width: 430px) {
  .features-grid { grid-template-columns: 1fr; gap: 14px; }

  .hero-stage { min-height: auto; }
  .hero-bg img { object-position: 72% 100%; }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-secondary {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }
  .social-proof-stats {
    gap: 20px 28px;
    margin-bottom: 28px;
  }
  .stat-number { font-size: 1.65rem; }
  .stat-label { font-size: 0.75rem; }
}

/* Small mobile (SE / Fold) */
@media (max-width: 375px) {
  .hero-stage h1 {
    font-size: clamp(1.65rem, 7.2vw, 1.95rem);
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 5px 10px;
    margin-bottom: 14px;
  }
  .hero-ctas { gap: 10px; margin-bottom: 14px; }
  .btn-hero-primary,
  .btn-hero-secondary {
    height: 48px;
    font-size: 0.8rem;
    gap: 8px;
  }
  .features-grid { gap: 12px; }
}

/* ─── Home Blogs & Tips ───────────────────────────────────────────────────── */
.home-blogs {
  padding: 88px 0 96px;
  background: #0a0812;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-blogs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.home-blogs-intro {
  max-width: 640px;
}

.home-blogs-intro h2 {
  font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}

.home-blogs-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 520px;
}

.home-blogs-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 10px;
  background: rgba(14, 10, 22, 0.85);
  color: #f3f0ff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.home-blogs-cta:hover {
  color: #ffffff;
  border-color: rgba(168, 85, 247, 0.8);
  background: rgba(168, 85, 247, 0.12);
}

.home-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 16px;
  background: rgba(14, 10, 22, 0.55);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.home-blog-card:hover {
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-3px);
  color: inherit;
}

.home-blog-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(168, 85, 247, 0.12);
}

.home-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-blog-card-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.home-blog-card h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-main);
}

.home-blog-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-blogs-links {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-blogs-links a {
  color: #e8e6f0;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 230, 240, 0.35);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.home-blogs-links a:hover {
  color: var(--accent-primary);
  text-decoration-color: var(--accent-primary);
}

@media (max-width: 1366px) {
  .home-blogs-grid { gap: 22px; }
}

@media (max-width: 820px) {
  .home-blogs-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .home-blogs { padding: clamp(48px, 8vw, 72px) 0; }
  .home-blogs-header { margin-bottom: 28px; align-items: flex-start; }
}

@media (max-width: 430px) {
  .home-blogs-grid { grid-template-columns: 1fr; }
  .home-blogs-cta { white-space: normal; width: 100%; justify-content: center; min-height: 44px; }
}

@media (max-width: 375px) {
  .home-blog-card { padding: 12px; }
  .home-blog-card h3 { font-size: 0.9rem; }
}