/* MTM Start Here Shelf — shared (v2) */

.mtm-start {
  max-width: 1120px;
  margin: 1.15rem auto 1.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  color: #111827; /* default dark text */
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.mtm-start__head h2 {
  margin: 0 0 .25rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.mtm-start__head p {
  margin: 0 0 .9rem;
  color: #4b5563;
  line-height: 1.5;
  max-width: 70ch;
}

.mtm-start__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

@media (max-width: 900px) {
  .mtm-start__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .mtm-start__grid { grid-template-columns: 1fr; }
}

.mtm-start__card {
  display: block;
  padding: .85rem .9rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease;
}

.mtm-start__card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.mtm-start__title {
  margin: 0 0 .2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.mtm-start__desc {
  margin: 0;
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.35rem;
}

/* Keep links consistent (inherit) */
.mtm-start a,
.mtm-start a:visited {
  color: inherit;
  -webkit-text-fill-color: inherit;
}

/* =========================================================
   Home-only: Frosted Dark Start Here (hero-dark)
   ========================================================= */
.page-home.hero-dark .mtm-start {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: #f8fafc; /* make titles/links white */
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.page-home.hero-dark .mtm-start__head p {
  color: rgba(248,250,252,.78);
}

.page-home.hero-dark .mtm-start__desc {
  color: rgba(248,250,252,.72);
}

.page-home.hero-dark .mtm-start__card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.page-home.hero-dark .mtm-start__card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
