/* ═══════════════════════════════════════════════════════════
   MattTheGardenGuy — ChatGPT Design System (Deduplicated)
   ═══════════════════════════════════════════════════════════ */

/* ── Global Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }

/* ── Hero ── */
.mtgg-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 3rem;
  color: #fff;
  overflow: hidden;
}
.mtgg-hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 3rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
}
.mtgg-hero-title span { color: #7cb342; }
.mtgg-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  line-height: 1.7;
}

/* ── Hero Photo (circular) ── */
.mtgg-hero-photo {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ── Buttons ── */
.mtgg-btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: #67a233;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.mtgg-btn-primary:hover {
  background: #558a2a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(103,162,51,0.35);
}

.mtgg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #67a233;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.mtgg-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  color: #fff;
}
.mtgg-btn--alt {
  background: linear-gradient(#d68b3a, #b86e26);
  color: #fff;
  border: none;
}
.mtgg-btn--alt:hover {
  background: linear-gradient(#c47a2e, #a5601f);
  color: #fff;
}
.mtgg-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.mtgg-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.mtgg-link{font-weight:800;color:#67a233;text-decoration:none;}
.mtgg-link:hover{text-decoration:underline;}

/* ── Grow / Harvest / Eat Steps ── */
.mtgg-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1rem;
  background: #f7f4ee;
}
.mtgg-step {
  text-align: center;
  text-decoration: none;
  color: #374151;
  transition: all 0.25s ease;
}
.mtgg-step:hover {
  transform: translateY(-3px);
  color: #67a233;
}
.mtgg-icon {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}
.mtgg-label {
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Start Here Section ── */
.mtgg-start-here {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
  background: #f3efe7;
  border-radius: 16px;
  padding: 2.5rem;
}
.mtgg-start-card { flex: 1.2; }
.mtgg-start-card h2 {
  font-size: 1.8rem;
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.mtgg-start-card p {
  color: #666;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.mtgg-checklist-card {
  flex: 0.8;
  display: flex;
  align-items: center;
}
.mtgg-subscribe {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: 100%;
}
.mtgg-subscribe h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.mtgg-subscribe p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.mtgg-subscribe-btn {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: #374151;
  color: #fff;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mtgg-subscribe-btn:hover {
  background: #555;
  color: #fff;
}

/* ── Latest from Garden ── */
.mtgg-latest {
  margin-bottom: 2.5rem;
}
.mtgg-latest h2 {
  font-size: 1.4rem;
  color: #374151;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #374151;
  display: inline-block;
}

/* ── View All Posts Button ── */
.mtgg-view-all-btn {
  display: inline-block;
  padding: 0.6rem 2rem;
  background: #8B6914;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mtgg-view-all-btn:hover {
  background: #7a5c10;
  color: #fff;
  transform: translateY(-1px);
}


/* ── Video Grid + Cards ── */
.mtgg-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mtgg-video-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a3a1a 0%, #3d5a2a 100%);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mtgg-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: #fff;
}
.mtgg-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.mtgg-video-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  flex: 1;
}
.mtgg-video-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}
.mtgg-video-content h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: #fff;
}
.mtgg-video-content h3 .accent { color: #7cb342; }
.mtgg-video-content p {
  font-size: 0.85rem;
  opacity: 0.85;
}
.mtgg-play-btn {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 48px;
  height: 48px;
  background: #d8832d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  z-index: 2;
  transition: all 0.25s ease;
}
.mtgg-play-btn:hover {
  background: #c0721f;
  transform: scale(1.08);
}

/* ── Footer ── */
.mtgg-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 0;
}
.mtgg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}
.mtgg-footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}
.mtgg-footer-col a {
  display: block;
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.mtgg-footer-col a:hover { color: #67a233; }
.mtgg-footer-brand h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.mtgg-footer-brand .tagline {
  color: #67a233;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.mtgg-footer-brand .subtext {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.mtgg-footer-brand .ownership {
  font-size: 0.82rem;
  color: #888;
}
.mtgg-footer-brand .ownership strong { color: #ccc; }
.mtgg-footer-bottom {
  text-align: center;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #777;
  max-width: 1200px;
  margin: 0 auto;
}


/* ── Hub Page Hero ── */
.mtgg-hub-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.mtgg-hub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.mtgg-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #f4c430;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.mtgg-hub-hero-content h1 {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.mtgg-hub-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── Hub Pillars ── */
.mtgg-hub-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}
.mtgg-pillar {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
.mtgg-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.mtgg-pillar-link {
  text-decoration: none;
  color: #374151;
  display: block;
}
.mtgg-pillar-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.mtgg-pillar h3 {
  padding: 1rem 1.2rem 0.3rem;
  font-size: 1.05rem;
  color: #374151;
}
.mtgg-pillar p {
  padding: 0 1.2rem 1.2rem;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ── Hub Latest ── */
.mtgg-hub-latest {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}
.mtgg-hub-latest h2 {
  font-size: 1.4rem;
  color: #374151;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #374151;
  display: inline-block;
}

/* ── Hub CTA ── */
.mtgg-hub-cta {
  background: #f7f4ee;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 2rem;
}
.mtgg-hub-cta h2 {
  font-size: 1.6rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-hub-cta p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ── Blog ── */
.mtgg-blog-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  text-align: center;
}
.mtgg-blog-intro h1 {
  font-size: 2rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-blog-intro p {
  color: #666;
  font-size: 1rem;
}
.blog-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 1.5rem 0;
}
.blog-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.blog-item h3 a {
  color: #374151;
  text-decoration: none;
}
.blog-item h3 a:hover { color: #67a233; }
.blog-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}


/* ── About Page ── */
.mtgg-about-v3 {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.mtgg-about-v3 .about-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mtgg-about-v3 .about-hero h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-about-v3 .about-hero p {
  color: #666;
  font-size: 1.05rem;
}
.mtgg-about-v3 .about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  border: 4px solid #f3efe7;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.mtgg-about-v3 .about-section {
  margin-bottom: 2rem;
}
.mtgg-about-v3 .about-section h2 {
  font-size: 1.4rem;
  color: #67a233;
  margin-bottom: 0.6rem;
}
.mtgg-about-v3 .about-section p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── Grow Together ── */
.mtgg-gt {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.mtgg-gt-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mtgg-gt-hero h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-gt-hero p {
  color: #666;
  font-size: 1.05rem;
}
.mtgg-gt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.mtgg-gt-card {
  background: #f7f4ee;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.25s ease;
}
.mtgg-gt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.mtgg-gt-card h3 {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-gt-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ── Support Page ── */
.mtgg-support {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.mtgg-support-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mtgg-support-hero h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-support-hero p {
  color: #666;
  font-size: 1.05rem;
}
.mtgg-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mtgg-support-card {
  background: #f7f4ee;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s ease;
}
.mtgg-support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.mtgg-support-card h3 {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-support-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}


/* ── Build Your Garden Page ── */
.mtgg-bygg-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mtgg-bygg-hero {
  text-align: center;
  padding: 3rem 2rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.mtgg-bygg-hero h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.mtgg-bygg-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.mtgg-bygg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.mtgg-bygg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
.mtgg-bygg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.mtgg-bygg-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.mtgg-bygg-card h3 {
  padding: 1rem 1.2rem 0.3rem;
  font-size: 1.05rem;
  color: #374151;
}
.mtgg-bygg-card p {
  padding: 0 1.2rem 1.2rem;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ── Start with Basics Page (REAL ChatGPT CSS) ── */
.mtgg-start-page{max-width:1200px;margin:0 auto;padding:24px 18px 70px;}
.mtgg-start-hero{position:relative;border-radius:20px;overflow:hidden;min-height:420px;margin:18px auto 28px;background-image:var(--hero-bg);background-size:cover;background-position:center;background-repeat:no-repeat;}
.mtgg-start-hero__overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(0,0,0,.82),rgba(0,0,0,.55),rgba(0,0,0,.20));}
.mtgg-start-hero__content{position:relative;z-index:2;padding:86px 64px;max-width:640px;color:#fff;}
.mtgg-start-hero .mtgg-start-hero__content{color:#ffffff !important;}
.mtgg-start-hero .mtgg-start-hero__content *:not(strong){color:inherit !important;}
.mtgg-start-hero__eyebrow{letter-spacing:.14em;text-transform:uppercase;font-size:.78rem;opacity:.88;margin-bottom:10px;}
.mtgg-start-hero__title{font-size:clamp(38px,4.8vw,58px);line-height:1.06;margin:0 0 14px;font-weight:800;text-shadow:0 3px 18px rgba(0,0,0,.55);}
.mtgg-start-hero__title span{opacity:.7;margin:0 8px;}
.mtgg-start-hero__title strong{color:#d68b3a !important;font-weight:800;}
.mtgg-start-hero__text{font-size:1.05rem;line-height:1.6;opacity:.95;margin:0 0 20px;max-width:560px;text-shadow:0 3px 18px rgba(0,0,0,.50);}
.mtgg-start-section{margin:36px auto;}
.mtgg-start-section__row{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:18px;}
.mtgg-start-section__title{font-size:clamp(26px,3.2vw,40px);margin:0;font-weight:800;color:#2a2a2a;}
.mtgg-three{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.mtgg-info-card{display:flex;gap:14px;align-items:flex-start;background:#f7f4ee;border-radius:16px;padding:18px;text-decoration:none;color:inherit;box-shadow:0 10px 26px rgba(0,0,0,.06);transition:transform .18s ease,box-shadow .18s ease;}
.mtgg-info-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(0,0,0,.10);}
.mtgg-info-card__icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:#fff;font-size:22px;flex-shrink:0;}
.mtgg-info-card__body h3{margin:0 0 6px;font-size:1.05rem;font-weight:900;}
.mtgg-info-card__body p{margin:0;color:#555;line-height:1.45;}
.mtgg-latest-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.mtgg-post-card{background:#fff;border-radius:16px;overflow:hidden;text-decoration:none;color:inherit;box-shadow:0 10px 26px rgba(0,0,0,.08);transition:transform .18s ease,box-shadow .18s ease;}
.mtgg-post-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,.12);}
.mtgg-post-card__img{background-image:var(--card-bg);background-size:cover;background-position:center;height:120px;position:relative;}
.mtgg-tag{position:absolute;left:12px;top:12px;background:linear-gradient(#d68b3a,#b86e26);color:#fff;padding:6px 10px;border-radius:999px;font-weight:900;font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;}
.mtgg-post-card__body{padding:14px 14px 16px;}
.mtgg-post-card__body h3{margin:0 0 8px;font-size:1rem;line-height:1.25;font-weight:900;}
.mtgg-post-card__body p{margin:0;color:#555;font-size:.92rem;line-height:1.4;}
.mtgg-center{display:flex;justify-content:center;margin-top:18px;}
.mtgg-bottom-cta{margin:52px auto 0;background:#efe8dc;border-radius:26px;padding:56px 28px;text-align:center;box-shadow:0 14px 40px rgba(0,0,0,.08);}
.mtgg-bottom-cta__inner{max-width:760px;margin:0 auto;padding:0 !important;background:transparent !important;border-radius:0 !important;box-shadow:none !important;}
.mtgg-bottom-cta h2{margin:0 0 10px;font-size:clamp(24px,3vw,34px);font-weight:900;line-height:1.1;}
.mtgg-bottom-cta p{margin:0 auto 18px;max-width:620px;color:#444;line-height:1.55;}
.mtgg-bottom-cta__buttons{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:8px;}
.mtgg-bottom-cta .mtgg-btn--alt{background:linear-gradient(#d68b3a,#b86e26);color:#fff !important;}
.mtgg-bottom-cta .mtgg-btn--ghost{background:#2f6f3e !important;border:1px solid rgba(0,0,0,.10) !important;color:#ffffff !important;box-shadow:0 10px 24px rgba(0,0,0,.16);}
.mtgg-social-note{display:block;margin-top:14px;font-size:.9rem;color:#666;}
@media (max-width:900px){.mtgg-start-hero__content{padding:54px 22px;}.mtgg-three{grid-template-columns:1fr;}.mtgg-latest-grid{grid-template-columns:1fr 1fr;}.mtgg-bottom-cta{padding:44px 22px;}}
@media (max-width:520px){.mtgg-latest-grid{grid-template-columns:1fr;}}

/* ── Garden Picks ── */
.mtgg-gp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.mtgg-gp-hero {
  text-align: center;
  margin-bottom: 2rem;
}
.mtgg-gp-hero h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.mtgg-gp-hero p {
  color: #666;
  font-size: 1.05rem;
}
.mtgg-gp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.mtgg-gp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  text-decoration: none;
  color: #374151;
}
.mtgg-gp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.mtgg-gp-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.mtgg-gp-card h3 {
  padding: 1rem 1.2rem 0.3rem;
  font-size: 1rem;
}
.mtgg-gp-card p {
  padding: 0 1.2rem 1.2rem;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .mtgg-hub-pillars { grid-template-columns: repeat(2, 1fr); }
  .mtgg-bygg-grid { grid-template-columns: repeat(2, 1fr); }
  .mtgg-gp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mtgg-hero { min-height: 360px; padding: 3rem 1.5rem 2.5rem; }
  .mtgg-hero-title { font-size: 2rem; }
  .mtgg-hero-subtitle { font-size: 1rem; }
  .mtgg-hero-photo { display: none; }

  .mtgg-steps { gap: 1.5rem; padding: 1.5rem 1rem; }
  .mtgg-icon { font-size: 1.8rem; }
  .mtgg-label { font-size: 0.85rem; }

  .mtgg-start-here { flex-direction: column; padding: 1.5rem; }
  .mtgg-start-card h2 { font-size: 1.4rem; }

  .mtgg-video-grid { grid-template-columns: 1fr; }

  .mtgg-footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }

  .mtgg-hub-hero { min-height: 280px; padding: 3rem 1.5rem; }
  .mtgg-hub-hero-content h1 { font-size: 1.8rem; }
  .mtgg-hub-pillars { grid-template-columns: 1fr; }

  .mtgg-gt-cards { grid-template-columns: 1fr; }
  .mtgg-support-grid { grid-template-columns: 1fr; }
  .mtgg-bygg-grid { grid-template-columns: 1fr; }
  .mtgg-start-grid { grid-template-columns: 1fr; }
  .mtgg-gp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mtgg-hero-title { font-size: 1.6rem; }
  .mtgg-hero-subtitle { font-size: 0.9rem; }
  .mtgg-steps { gap: 1rem; }
  .mtgg-btn-primary { padding: 0.7rem 1.6rem; font-size: 0.9rem; }
}
