/* Extracted from myapp/src/style/Home.css for Laravel Blade integration */
/* Paths like /hero-bg.svg, /cow-hero.svg, /cert-*.svg should exist in public/ */

.home {
  min-height: 100vh;
  background: #d8efff;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 520px;
  background: url('/hero-bg.svg') center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(900px 320px at 18% 20%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 60%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: transparent;
  transition: background 200ms ease, box-shadow 200ms ease, padding 200ms ease;
}

.topbar--scrolled {
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brandLogo {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  background: #ffffff;
  padding: 3px;
  filter: saturate(1.12) contrast(1.08);
}

.brandEmblem {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  opacity: 0.95;
}

.brandMark {
  width: 39px;
  height: 39px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navLink {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.navLink:hover { color: #ffffff; }

.navLink.isActive { position: relative; color: #ffffff; }
.navLink.isActive::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  margin: auto; width: 46px; height: 3px;
  border-radius: 999px; background: #08c2ff;
}

.donationPill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  background: linear-gradient(90deg, #08c2ff, #4df2c2);
  color: #00222c; font-weight: 800; text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 194, 255, 0.22);
}
.donationIcon {
  display: grid; place-items: center; width: 26px; height: 26px;
  border-radius: 999px; background: rgba(0,0,0,0.78);
  color: #fff; font-weight: 900; font-size: 13px;
}

.heroContent {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 10px;
  padding-top: 120px; padding-bottom: 34px;
}
.heroTitle { margin: 0 0 14px; color: #fff; font-size: clamp(34px, 4vw, 58px); line-height: 1.05; letter-spacing: -0.5px; }
.heroSubtitle { margin: 0 0 22px; max-width: 430px; color: rgba(255,255,255,0.86); font-size: 16px; }
.cta { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 30px; border-radius: 14px; background: #08c2ff; color: #fff; text-decoration: none; font-weight: 900; box-shadow: 0 18px 30px rgba(8,194,255,0.25); }
.heroMedia { display: grid; place-items: center; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); justify-self: end; transform: translate(52px, -18px); }
.cowImg { width: min(470px, 100%); height: auto; object-fit: contain; }

.cardsSection { position: relative; background: #d8efff; padding: 0 0 70px; }
.cardsGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 46px; max-width: 1040px; margin: 0 auto; transform: translateY(-78px); }
.card { position: relative; height: 156px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 22px 12px 18px; border-radius: 56px 0 56px 0; background: #fff; text-decoration: none; color: #0c394a; box-shadow: 0 18px 26px rgba(0,0,0,0.08); transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 54px; height: 54px; border-top: 4px solid; border-left: 4px solid; border-color: rgba(255,255,255,0.95); border-top-left-radius: 56px; pointer-events: none; }
.card::after { content: ''; position: absolute; right: 0; bottom: 0; width: 66px; height: 66px; border-right: 4px solid; border-bottom: 4px solid; border-color: rgba(255,255,255,0.95); border-bottom-right-radius: 56px; pointer-events: none; }
.card:hover { transform: translateY(-2px); box-shadow: 0 22px 28px rgba(0,0,0,0.1); }
.card.isActive { transform: translateY(-16px); background: linear-gradient(180deg, #00d3ff 0%, #00a8ff 100%); border-radius: 64px 0 64px 0; color: #fff; box-shadow: 0 28px 34px rgba(0,174,255,0.28); }
.card.isActive::before, .card.isActive::after { border-color: transparent; }
.cardIcon { display: grid; place-items: center; color: #00bde9; }
.cardIcon i { font-size: 32px; line-height: 1; }
.card.isActive .cardIcon { color: #fff; }
.cardLabel { font-weight: 900; font-size: 20px; text-align: center; line-height: 1.1; max-width: 150px; }

@media (max-width: 860px) {
  .nav { display: none; }
  .heroContent { grid-template-columns: 1fr; }
  .cardsGrid { grid-template-columns: repeat(2, 1fr); gap: 26px; transform: translateY(-54px); }
  .card { height: 148px; }
  .cardLabel { font-size: 18px; }
}

/* Impact */
.impact { background: #d8efff; padding: 18px 0 64px; }
.impactWrap { display: grid; grid-template-columns: 1.55fr 1fr; gap: 0; align-items: start; }
.impactWrap.container { width: 100%; max-width: none; margin: 0; }
.impactCard { background: #0a0a0a; border-radius: 0; padding: 83px 89px 89px; box-shadow: 0 26px 40px rgba(0,0,0,0.18); position: relative; z-index: 1; }
.impactTitle { margin: 0 0 22px; color: #fff; font-size: clamp(38px, 3.6vw, 62px); line-height: 1.08; letter-spacing: -0.4px; }
.impactText { margin: 0; color: rgba(255,255,255,0.86); font-size: 22px; line-height: 1.5; max-width: 650px; }
.impactLink { color: #00bde9; font-weight: 900; text-decoration: underline; text-underline-offset: 6px; }
.impactGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; justify-self: end; padding: 14px 54px 0 0; margin-left: -220px; position: relative; z-index: 2; margin-right: 120px; }
.impactImg { margin: 0; box-sizing: border-box; border-radius: 0 34px 0 34px; overflow: hidden; background: #fff; box-shadow: 0 18px 26px rgba(0,0,0,0.18); max-width: 210px; }
.impactImg img { width: 100%; height: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.impactImg.isAccent { border: 6px solid #00bde9; box-shadow: 0 20px 30px rgba(0,189,233,0.22); }
@media (min-width: 981px) { .impactGrid .impactImg:nth-child(-n + 2) { transform: translateX(-44px); } }
@media (max-width: 860px) { .impactWrap { grid-template-columns: 1fr; } .impactCard { padding: 34px 26px; } .impactText { font-size: 18px; } .impactGrid { padding: 18px 26px 0; margin-left: 0; } }

/* Certificates */
.certs { background: #d8efff; padding: 84px 0 110px; }
.certsContainer { text-align: center; }
.certsTitle { margin: 0; font-size: clamp(40px, 4vw, 66px); letter-spacing: -0.6px; }
.certsSubtitle { margin: 18px auto 0; max-width: 1180px; font-size: clamp(18px, 2.1vw, 34px); line-height: 1.2; color: rgba(0,0,0,0.82); }
.certsGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px; justify-items: center; margin-top: 68px; }
.certCard { width: 100%; max-width: 268px; background: #fff; border-radius: 26px; padding: 26px 18px 22px; box-shadow: 0 20px 34px rgba(0,0,0,0.22); }
.certImg { width: 100%; height: 160px; object-fit: contain; display: block; }
.certLabel { margin: 16px 0 0; font-size: 22px; line-height: 1.05; letter-spacing: -0.4px; }
@media (max-width: 980px) { .certsGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } .certLabel { font-size: 20px; } }
@media (max-width: 540px) { .certs { padding: 64px 0 84px; } .certsGrid { grid-template-columns: 1fr; } }

/* Better world */
.betterWorld { background: #d8efff; }
.betterWorldGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.betterWorldImg { width: 100%; height: 520px; display: block; object-fit: cover; }
.betterWorldBar { background: #0a0a0a; padding: 56px 0; }
.betterWorldBarInner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.betterWorldTitle { margin: 0; color: #fff; font-size: clamp(34px, 4vw, 56px); letter-spacing: -0.6px; }
.betterWorldActions { display: flex; justify-content: flex-end; }
.betterWorldPill { display: inline-flex; align-items: center; border-radius: 999px; text-decoration: none; overflow: hidden; box-shadow: 0 18px 30px rgba(0,0,0,0.25); background: #fff; }
.betterWorldPillLeft { display: inline-flex; align-items: center; gap: 12px; padding: 18px 26px; background: #08c2ff; color: #fff; font-weight: 900; font-size: 22px; min-width: 260px; justify-content: center; }
.betterWorldPillIcon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; background: rgba(0,0,0,0.32); }
.betterWorldPillText { white-space: nowrap; }
.betterWorldPillRight { display: inline-flex; align-items: center; justify-content: center; padding: 18px 30px; color: #111; font-weight: 900; font-size: 22px; min-width: 320px; white-space: nowrap; }
.betterWorldPillOr { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 -27px; border-radius: 999px; background: #000; color: #fff; font-weight: 900; font-size: 20px; border: 4px solid #fff; }
@media (max-width: 980px) { .betterWorldGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .betterWorldImg { height: 380px; } .betterWorldBarInner { flex-direction: column; align-items: flex-start; } .betterWorldActions { width: 100%; justify-content: flex-start; } }
@media (max-width: 640px) { .betterWorldPill { width: 100%; flex-direction: column; border-radius: 26px; align-items: stretch; } .betterWorldPillLeft, .betterWorldPillRight { min-width: 0; width: 100%; font-size: 20px; } .betterWorldPillOr { margin: -16px auto; } }

/* Communities + video */
.communityHero { background: #d8efff; padding-bottom: 86px; margin-top: 10%; }
.communityHeroTop { position: relative; padding: 100px 0 250px; overflow: hidden; background: url('/cow-hero.svg') center / cover no-repeat; }
.communityHeroTop::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 420px at 30% 0%, rgba(255,255,255,0.1), rgba(255,255,255,0) 65%), linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.84) 70%, rgba(0,0,0,0.88) 100%); }
.communityHeroInner { position: relative; z-index: 1; text-align: center; }
.communityHeroTitle { margin: 0; color: #fff; font-size: clamp(36px, 4vw, 58px); letter-spacing: -0.6px; }
.communityHeroText { margin: 16px auto 0; max-width: 1020px; color: rgba(255,255,255,0.86); font-size: 18px; line-height: 1.55; }
.communityHeroActions { margin-top: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.communityBtn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 34px; border-radius: 999px; font-weight: 900; font-size: 22px; text-decoration: none; box-shadow: 0 18px 30px rgba(0,0,0,0.25); color: #fff; }
.communityBtnIcon { display: grid; place-items: center; }
.communityBtn.isDonate { background: #08c2ff; }
.communityBtn.isLive { background: #b90000; }
.communityHeroVideoWrap { margin-top: -180px; }
.communityHeroVideo { position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 26px 44px rgba(0,0,0,0.28); background: #101010; }
.communityHeroVideoImg { width: 100%; height: 520px; display: block; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.communityHeroPlay { position: absolute; inset: 0; margin: auto; width: 126px; height: 126px; border-radius: 999px; border: 0; background: rgba(185, 0, 0, 0.9); cursor: pointer; box-shadow: 0 18px 32px rgba(0,0,0,0.45), inset 0 0 0 6px rgba(255,255,255,0.16); }
.communityHeroPlayInner { display: grid; place-items: center; width: 100%; height: 100%; border-radius: 999px; box-shadow: inset 0 0 0 3px rgba(255,255,255,0.22); }
@media (max-width: 980px) { .communityHeroTop { padding: 70px 0 170px; } .communityBtn { font-size: 20px; padding: 14px 26px; } .communityHeroVideoImg { height: 420px; } }
@media (max-width: 640px) { .communityHeroTop { padding: 62px 0 152px; } .communityHeroText { font-size: 16px; } .communityHeroVideoImg { height: 320px; } .communityHeroPlay { width: 104px; height: 104px; } }

/* Events */
.events { background: #d8efff; padding: 84px 0 110px; }
.eventsHeader { text-align: center; }
.eventsInner.container { width: 100%; max-width: none; margin: 0; }
.eventsTitle { margin: 0; font-size: clamp(46px, 5vw, 74px); letter-spacing: -0.8px; }
.eventsSubtitle { margin: 18px auto 0; max-width: 1040px; font-size: 18px; line-height: 1.5; color: rgba(0,0,0,0.8); }
.eventsGrid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, minmax(0, calc(30% + 27px))); column-gap: 27px; row-gap: 27px; padding-left: clamp(12px, 2vw, 24px); padding-right: clamp(6px, 1.2vw, 16px); }
.eventCard { position: relative; height: 520px; border-radius: 26px; overflow: hidden; background: #fff; box-shadow: 0 26px 44px rgba(0,0,0,0.18); }
.eventImg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.02); }
.eventBadge { position: absolute; top: 22px; left: 22px; width: 86px; height: 86px; border-radius: 18px; background: #08c2ff; color: #fff; display: grid; place-content: center; text-align: center; box-shadow: 0 18px 26px rgba(8,194,255,0.32); }
.eventBadgeDay { font-weight: 900; font-size: 28px; line-height: 1; }
.eventBadgeMon { font-weight: 900; font-size: 24px; line-height: 1.1; letter-spacing: 0.5px; }
.eventInfo { position: absolute; left: 22px; right: 22px; bottom: 22px; background: #fff; border-radius: 18px; padding: 18px 18px 16px; box-shadow: 0 16px 26px rgba(0,0,0,0.14); }
.eventMeta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: rgba(0,0,0,0.74); font-size: 16px; }
.eventMetaItem { display: inline-flex; align-items: center; gap: 8px; }
.eventMetaIcon { display: grid; place-items: center; color: #08c2ff; }
.eventTitle { margin: 10px 0 4px; font-size: 20px; font-weight: 900; letter-spacing: -0.2px; }
.eventLink { color: #08c2ff; font-weight: 800; text-decoration: none; }
.eventLink:hover { text-decoration: underline; text-underline-offset: 6px; }
@media (max-width: 980px) { .eventsGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding: 0 26px; } }
@media (max-width: 640px) { .eventsGrid { grid-template-columns: 1fr; padding: 0 26px; } .eventCard { height: 500px; } }

/* Donation panel */
.donatePanel { background: #d8efff; padding: 0; }
.donatePanelInner { box-sizing: border-box; width: 100%; max-width: none; margin: 0; padding: 14px 14px 0; display: grid; grid-template-columns: minmax(520px, 720px) 1fr; gap: 64px; align-items: start; background: #000 url('/cow-hero.svg') center / cover no-repeat; position: relative; overflow: visible; }
.donatePanelInner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 420px at 30% 0%, rgba(255,255,255,0.08), rgba(255,255,255,0) 65%), linear-gradient(180deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.86) 70%, rgba(0,0,0,0.9) 100%); }
.donateFormCard, .donatePanelRight { position: relative; z-index: 1; }
.donateFormCard { background: #fff; border-radius: 26px; width: 100%; max-width: 720px; padding: 50px 44px 54px; box-shadow: 0 26px 44px rgba(0,0,0,0.24); }
@media (min-width: 981px) {
  .donateFormCard { min-height: 700px; margin-top: 120px; transform: none; }
  /* add real layout space so footer never overlaps */
  .donatePanel { padding-bottom: 140px; }
}
.donateForm { display: grid; gap: 22px; }
.donateFields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 34px; }
.donateField { display: block; }
.donateInput { width: 100%; height: 54px; border-radius: 4px; border: 2px solid rgba(0,0,0,0.42); padding: 0 18px; font-size: 20px; outline: none; }
.donateInput::placeholder { color: rgba(0,0,0,0.55); }
.donateSelect { position: relative; }
.donateSelect::after { content: ''; position: absolute; right: 18px; top: 50%; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 8px solid rgba(0,0,0,0.55); transform: translateY(-50%); pointer-events: none; }
.donateSelectEl { appearance: none; background: transparent; }
.donateTextareaEl { height: 172px; padding: 18px; resize: none; }
.donateSubmit { display: inline-flex; align-items: center; justify-content: center; gap: 14px; height: 62px; padding: 0 42px; border: 0; border-radius: 999px; background: #08c2ff; color: #fff; font-weight: 900; font-size: 26px; cursor: pointer; margin: 14px auto 0; box-shadow: 0 18px 30px rgba(8,194,255,0.25); }
.donateSubmitIcon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; background: rgba(0,0,0,0.32); }
.donatePanelTitle { margin: 0; color: #fff; font-size: clamp(28px, 3.2vw, 48px); line-height: 1.08; letter-spacing: -0.6px; }
.donatePanelRight { max-width: 720px; padding-top: 0; margin-top: 5%; }
.donorCard { margin-top: 26px; background: #007c60; border-radius: 4px; padding: 26px 30px 28px; box-shadow: 0 22px 36px rgba(0,0,0,0.22); max-width: 650px; }
.donorSlider .donorCard { display: none; }
.donorSlider .donorCard.isActive { display: block; }
.donorHead { display: flex; align-items: center; gap: 18px; }
.donorAvatar { width: 58px; height: 58px; border-radius: 999px; object-fit: cover; }
.donorName { color: #fff; font-weight: 900; font-size: 20px; }
.donorRole { color: rgba(255,255,255,0.86); font-size: 16px; margin-top: 2px; }
.donorText { margin: 18px 0 0; color: rgba(255,255,255,0.86); font-size: 14px; line-height: 1.55; max-width: 560px; }
.donorDots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.donorDot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.38); }
.donorDot.isActive { background: #08c2ff; }
@media (max-width: 980px) { .donatePanelInner { grid-template-columns: 1fr; padding: 38px 26px 96px; } .donorCard { max-width: none; } }

/* Footer block inside React was removed; Laravel footer partials handle it. */

/* Theme footer (from myapp) */
.no-hero .boxed_wrapper { padding-top: 96px; }

.siteFooter {
  position: relative;
  padding: 78px 0 72px;
  background: url('/hero-bg.svg') center / cover no-repeat;
  overflow: hidden;
}
.siteFooter::before { content: ''; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0.82) 100%),
  radial-gradient(760px 320px at 30% 20%, rgba(8, 194, 255, 0.22), rgba(8, 194, 255, 0) 62%),
  radial-gradient(640px 280px at 82% 30%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 62%);
}
.siteFooterInner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.9fr 1.35fr; gap: 55px; align-items: start; }
.footerCol { min-width: 0; }
.footerBrandTop { display: flex; align-items: center; gap: 18px; }
.footerLogo { width: 150px; height: 150px; border-radius: 999px; background: #ffffff; padding: 6px; border: 3px solid #08c2ff; object-fit: cover; box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35); }
.footerBrandName { color: #ffffff; font-weight: 800; font-size: 26px; letter-spacing: 0.2px; }
.footerHeading { margin: 26px 0 22px; color: #08c2ff; font-weight: 900; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.2px; }
.footerSocial { display: flex; align-items: center; gap: 28px; margin-top: 8px; }
.footerSocialBtn { width: 58px; height: 58px; border-radius: 999px; background: #ffffff; display: grid; place-items: center; color: #08c2ff; box-shadow: 0 16px 26px rgba(0, 0, 0, 0.25); text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.footerSocialBtn:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3); }
.footerSocialBtn i { font-size: 22px; }
.footerLinks { padding-left: 10px; }
.footerLinkRow { display: grid; gap: 12px; align-items: start; justify-items: start; margin-top: 10px; }
.footerLink { display: block; color: rgba(255, 255, 255, 0.92); text-decoration: none; font-size: clamp(14px, 1.6vw, 20px); line-height: 1.16; margin-top: 0; }
.footerLink:hover { color: #ffffff; }
.footerContactList { display: grid; gap: 22px; margin-top: 10px; }
.footerContactItem { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; }
.footerContactIcon { width: 38px; height: 38px; display: grid; place-items: center; color: #08c2ff; }
.footerContactIcon i { font-size: 18px; }
.footerContactText { color: rgba(255, 255, 255, 0.9); font-size: 16px; line-height: 1.35; word-break: break-word; }
@media (max-width: 980px) { .siteFooterInner { grid-template-columns: 1fr; gap: 30px; } .footerLinks { padding-left: 0; } .footerHeading { margin-top: 22px; } }
