/* ===============================
   HERO LAYOUT
   =============================== */

.hero-row {
  display: flex;
  gap: 3rem;
  align-items: stretch;   /* equal height */
  margin-bottom: 3rem;
  width: 100%;
}


/* LEFT: Triangle (wider) */
.triforce-wrapper {
  flex: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f8f9fa;;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-navigator h2 {
  margin-top: 0;
}

/* RIGHT: Navigator (narrower) */
.hero-navigator {
  flex: 2;                /* ⬅️ narrower than triangle */
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===============================
   TRIANGLE
   =============================== */

.triforce {
  width: 100%;
  max-width: 600px;       /* controls overall size */
  aspect-ratio: 100 / 86.6;
}

/* ===============================
   CTA BUTTON
   =============================== */

.center-button {
  text-align: center;
  margin-top: 2rem;
}

.btn-hero {
  font-size: 1.4em;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 500;
  border: 3px solid black;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ===============================
   ARTICLE CARDS
   =============================== */

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card-nav {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.card-nav:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}