:root {
  --home-green: #b01616;
  --home-green-dark: #8b0000;
  --home-green-soft: #f7ead8;
  --home-cream: #f7ead8;
  --home-paper: #f5f6f8;
  --home-warm-white: #fffaf3;
  --home-ink: #222;
  --home-muted: #555;
  --home-line: #ead9c2;
  --home-gold: #b85b4d;
  --home-gutter: clamp(18px, 5vw, 160px);
  --home-radius: clamp(22px, 2vw, 36px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: var(--home-green-dark);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(139, 0, 0, 0.12);
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(18px);
}

.site-header .header-inner {
  display: flex;
  width: calc(100% - var(--home-gutter) - var(--home-gutter)) !important;
  min-height: clamp(82px, 6vw, 112px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: clamp(48px, 3.4vw, 66px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 18px 18px 18px 7px;
  border: 1px solid rgba(139, 0, 0, 0.14);
  background: var(--home-green-dark);
  color: #fff;
  font-size: clamp(17px, 1.1vw, 23px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-mark-image {
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.brand-mark-image img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--home-green-dark);
  font-size: clamp(18px, 1.25vw, 27px);
  line-height: 1.3;
}

.brand-copy small {
  color: var(--home-muted);
  font-size: clamp(12px, 0.8vw, 16px) !important;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 42px);
}

.site-nav a {
  position: relative;
  padding: 14px 0;
  color: var(--home-green-dark);
  font-size: clamp(17px, 1vw, 21px) !important;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--home-green);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: var(--home-warm-white);
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--home-green-dark);
}

body > main.home-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 92px));
  padding: clamp(62px, 6vw, 132px) var(--home-gutter);
  overflow: hidden;
  background: linear-gradient(118deg, var(--home-warm-white), var(--home-cream));
}

.hero-with-image {
  background-image:
    linear-gradient(
      96deg,
      rgba(255, 250, 243, 0.97) 0%,
      rgba(255, 250, 243, 0.91) 39%,
      rgba(247, 234, 216, 0.72) 68%,
      rgba(139, 0, 0, 0.18) 100%
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.62fr);
  width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: clamp(48px, 7vw, 140px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--home-green);
  font-size: clamp(15px, 0.85vw, 19px) !important;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content {
  max-width: 1050px;
}

.hero h1 {
  max-width: 1100px;
  margin: 0;
  color: #5f0000;
  font-size: clamp(50px, 4.4vw, 92px) !important;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-tagline {
  margin: 26px 0 0;
  color: var(--home-green-dark);
  font-size: clamp(24px, 1.55vw, 34px) !important;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.hero-description {
  max-width: 920px;
  margin: 30px 0 0;
  color: #4c4039;
  font-size: clamp(20px, 1.35vw, 30px) !important;
  font-weight: 550;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  font-size: clamp(17px, 1vw, 21px) !important;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--home-green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(139, 0, 0, 0.18);
}

.button-primary:hover {
  background: var(--home-green-dark);
}

.button-secondary {
  border-color: rgba(139, 0, 0, 0.34);
  background: rgba(255, 250, 243, 0.82);
  color: var(--home-green-dark);
}

.identity-card {
  position: relative;
  display: grid;
  min-height: clamp(390px, 27vw, 540px);
  padding: clamp(34px, 3vw, 60px);
  border: 1px solid rgba(139, 0, 0, 0.18);
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.88);
  place-items: center;
  align-content: center;
  text-align: center;
  box-shadow: 0 28px 70px rgba(88, 31, 17, 0.16);
  backdrop-filter: blur(12px);
}

.identity-card::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 91, 77, 0.32);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.identity-logo {
  display: grid;
  width: clamp(160px, 13vw, 250px);
  aspect-ratio: 1;
  margin-bottom: 24px;
  border-radius: 24px;
  place-items: center;
}

.identity-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.identity-logo span {
  display: grid;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 28px;
  background: var(--home-green-dark);
  color: #fff;
  font-size: clamp(28px, 2.2vw, 48px);
  font-weight: 900;
  letter-spacing: -0.08em;
  place-items: center;
}

.identity-card > p {
  margin: 0 0 4px;
  color: var(--home-green-dark);
  font-size: clamp(13px, 0.8vw, 17px) !important;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.identity-card h2 {
  margin: 0;
  color: var(--home-green-dark);
  font-size: clamp(34px, 2.7vw, 58px) !important;
}

.identity-card > span {
  margin-top: 12px;
  color: var(--home-muted);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 650;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% - var(--home-gutter) - var(--home-gutter));
  margin: clamp(34px, 3vw, 60px) auto 0;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(90, 40, 28, 0.08);
}

.service-strip a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 132px;
  padding: 24px clamp(22px, 2.5vw, 48px);
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: background 180ms ease;
}

.service-strip a + a {
  border-left: 1px solid var(--home-line);
}

.service-strip a:hover {
  background: var(--home-green-soft);
}

.service-number {
  color: var(--home-gold);
  font-size: 15px;
  font-weight: 900;
}

.service-strip a > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.service-strip strong {
  color: var(--home-green-dark);
  font-size: clamp(20px, 1.25vw, 26px);
}

.service-strip small {
  color: var(--home-muted);
  font-size: clamp(14px, 0.8vw, 17px) !important;
}

.content-section,
.about-section {
  width: calc(100% - var(--home-gutter) - var(--home-gutter));
  margin: 0 auto;
  padding: clamp(90px, 8vw, 170px) 0 0;
}

.section-heading {
  display: flex;
  margin-bottom: clamp(30px, 3vw, 54px);
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  color: var(--home-green-dark);
  font-size: clamp(38px, 3vw, 64px) !important;
  letter-spacing: -0.035em;
}

.section-link {
  color: var(--home-green);
  font-size: clamp(16px, 1vw, 20px) !important;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 38px);
}

.news-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(90, 40, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(90, 40, 28, 0.12);
}

.news-visual {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--home-green-soft);
}

.news-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.news-card:hover .news-visual img {
  transform: scale(1.035);
}

.news-placeholder {
  display: grid;
  background:
    radial-gradient(circle at 85% 12%, rgba(200, 168, 107, 0.36), transparent 28%),
    linear-gradient(135deg, var(--home-green), var(--home-green-dark));
  place-items: center;
  text-decoration: none;
}

.news-placeholder span {
  display: grid;
  width: clamp(80px, 7vw, 130px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 34% 34% 34% 12%;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 900;
  place-items: center;
}

.news-content {
  display: flex;
  padding: clamp(24px, 2.1vw, 40px);
  flex-direction: column;
}

.news-meta {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--home-muted);
  font-size: clamp(16px, 0.8vw, 18px);
}

.news-meta span {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--home-green-soft);
  color: var(--home-green);
  font-weight: 800;
}

.news-content h3 {
  margin: 0;
  font-size: clamp(24px, 1.55vw, 34px) !important;
}

.news-content h3 a {
  color: var(--home-ink);
  text-decoration: none;
}

.news-content > p {
  margin: 16px 0 24px;
  color: var(--home-muted);
  line-height: 1.75;
}

.card-link {
  margin-top: auto;
  color: var(--home-green);
  font-weight: 850;
  text-decoration: none;
}

.event-section {
  position: relative;
  padding-bottom: clamp(90px, 8vw, 170px);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: clamp(18px, 2vw, 38px);
}

.event-card {
  display: grid;
  grid-template-columns: clamp(100px, 8vw, 150px) 1fr;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--home-radius);
  background: linear-gradient(135deg, #720000, var(--home-green-dark));
  color: #fff;
  overflow: hidden;
}

.event-date {
  display: grid;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  align-content: center;
  justify-items: center;
}

.event-date strong {
  font-size: clamp(42px, 3.5vw, 72px);
  line-height: 1;
}

.event-date span {
  margin-top: 10px;
  color: #d4bd8e;
  font-size: clamp(14px, 0.9vw, 18px);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.event-content {
  display: flex;
  min-width: 0;
  padding: clamp(26px, 2.4vw, 46px);
  flex-direction: column;
}

.event-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 0.8vw, 18px);
}

.event-status > span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
}

.event-status > span.open {
  background: var(--home-cream);
  color: var(--home-green-dark);
}

.event-content h3 {
  margin: 24px 0 0;
  font-size: clamp(26px, 1.7vw, 37px) !important;
}

.event-content h3 a {
  color: #fff;
  text-decoration: none;
}

.event-content > p {
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, 0.72);
}

.event-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.event-footer a {
  color: #f3c7ab;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.empty-state {
  padding: clamp(42px, 5vw, 80px);
  border: 1px dashed #bfcfc6;
  border-radius: var(--home-radius);
  background: #fff;
  text-align: center;
}

.empty-state strong {
  font-size: clamp(24px, 1.6vw, 34px);
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--home-muted);
}

.event-empty .button {
  margin-top: 24px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-bottom: clamp(90px, 8vw, 170px);
  gap: clamp(50px, 8vw, 160px);
  align-items: start;
}

.about-copy > p:last-child {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: clamp(19px, 1.25vw, 27px) !important;
  line-height: 1.9;
}

.about-points {
  border-top: 1px solid var(--home-line);
}

.about-points > div {
  display: grid;
  grid-template-columns: 52px minmax(160px, 0.45fr) 1fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--home-line);
  align-items: baseline;
  gap: 18px;
}

.about-points span {
  color: var(--home-gold);
  font-size: 14px;
  font-weight: 900;
}

.about-points strong {
  font-size: clamp(20px, 1.25vw, 27px);
}

.about-points p {
  margin: 0;
  color: var(--home-muted);
}

.site-footer {
  padding: clamp(30px, 3vw, 54px) var(--home-gutter);
  background: #5a0000;
  color: #fff;
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: max(0.9rem, 16px) !important;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 48px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(260px, 0.7fr) 1fr;
  }

  .news-card:last-child .news-visual {
    aspect-ratio: auto;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 900px) {
  :root {
    --home-gutter: clamp(18px, 4vw, 38px);
  }

  .site-header .header-inner {
    min-height: 82px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px var(--home-gutter) 22px;
    border-top: 1px solid var(--home-line);
    background: var(--home-warm-white);
    box-shadow: 0 18px 36px rgba(90, 40, 28, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--home-line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-with-image {
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 250, 243, 0.97) 0%,
        rgba(255, 250, 243, 0.88) 54%,
        rgba(247, 234, 216, 0.72) 100%
      ),
      var(--hero-mobile-image);
    background-position: center bottom;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .identity-card {
    min-height: 400px;
    border-radius: 34px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip a {
    min-height: 108px;
  }

  .service-strip a + a {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .news-card:last-child .news-visual {
    aspect-ratio: 16 / 9;
  }

  .about-points > div {
    grid-template-columns: 42px 1fr;
  }

  .about-points p {
    grid-column: 2;
  }

}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 17px;
  }

  .brand-mark {
    width: 46px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px) !important;
  }

  .hero-description {
    font-size: 18px !important;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .identity-card {
    min-height: 350px;
    padding: 30px 22px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    display: flex;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
  }

  .event-date strong {
    font-size: 36px;
  }

  .event-date span {
    margin: 0;
  }

  .event-status,
  .event-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-points > div {
    grid-template-columns: 34px 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared elder-friendly typography scale. Keep the homepage expressive while
   using the same semantic sizes as the rest of the site. */
.brand-mark,
.brand-copy strong,
.site-nav a {
  font-size: var(--text-nav) !important;
}

.brand-copy small,
.identity-card > p,
.service-number,
.service-strip small,
.about-points span {
  font-size: var(--text-caption) !important;
}

.eyebrow,
.news-meta,
.event-date span,
.event-status,
.site-footer > p {
  font-size: var(--text-meta) !important;
}

.hero h1 {
  font-size: var(--text-display) !important;
}

.hero-tagline,
.identity-card h2 {
  font-size: var(--text-section-title) !important;
}

.hero-description,
.about-copy > p:last-child {
  font-size: var(--text-lead) !important;
}

.button {
  font-size: var(--text-control) !important;
}

.service-strip strong,
.news-content h3,
.event-content h3,
.empty-state strong,
.about-points strong {
  font-size: var(--text-card-title) !important;
}

.section-heading h2,
.about-copy h2 {
  font-size: var(--text-section-title) !important;
}

.section-link,
.card-link,
.event-footer a {
  font-size: var(--text-nav) !important;
}

.news-content h3 a,
.event-content h3 a {
  font-size: inherit !important;
}

.news-content > p,
.event-content > p,
.about-points p,
.empty-state p {
  font-size: var(--text-body) !important;
  line-height: 1.8;
}

.event-date strong {
  font-size: var(--text-display) !important;
}

@media (max-width: 720px) {
  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip a + a {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .news-grid,
  .event-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: minmax(88px, 0.32fr) 1fr;
  }
}

.service-grid {
  width: calc(100% - var(--home-gutter) - var(--home-gutter));
  margin: clamp(34px, 3vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 30px);
}

.service-card {
  min-height: clamp(210px, 15vw, 290px);
  padding: clamp(28px, 2.5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #fff;
  color: inherit;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(90, 40, 28, .07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 0, 0, .28);
  box-shadow: 0 20px 46px rgba(90, 40, 28, .12);
}

.service-card strong {
  color: #870000;
  font-size: var(--text-card-title) !important;
  line-height: 1.35;
}

.service-card small {
  color: #555d59;
  font-size: var(--text-meta) !important;
  font-weight: 700;
  line-height: 1.6;
}

.news-carousel {
  min-width: 0;
}

.news-card[hidden] {
  display: none !important;
}

.news-carousel-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.news-carousel-controls button {
  width: 54px;
  min-width: 54px;
  min-height: 54px;
  padding: 0;
  border: 1px solid var(--home-green);
  border-radius: 50%;
  background: #fff;
  color: var(--home-green);
  font-size: var(--text-card-title) !important;
  font-weight: 800;
  cursor: pointer;
}

.news-carousel-controls button:hover {
  background: var(--home-green);
  color: #fff;
}

.news-carousel-controls span {
  min-width: 11rem;
  color: var(--home-muted);
  font-size: var(--text-meta);
  text-align: center;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-grid {
    width: calc(100% - var(--home-gutter) - var(--home-gutter));
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }
}
