.schoolstart-home {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: #faf7f2;
  color: #2c2c2c;
}
.schoolstart-home::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -190px;
  right: -130px;
  border-radius: 50%;
  background: rgba(201, 169, 122, 0.2);
}
.schoolstart-home__inner {
  position: relative;
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.schoolstart-home__kicker {
  margin: 0 0 0.75rem;
  color: #4a6741;
  font: 700 0.78rem/1.4 var(--sans, "Noto Sans TC", sans-serif);
  letter-spacing: 0.12em;
}
.schoolstart-home h2 {
  margin: 0;
  color: #2c2c2c;
  font: 700 clamp(1.9rem, 4vw, 3.4rem)/1.25 var(--serif, "Noto Serif TC", serif);
}
.schoolstart-home h2 em { color: #4a6741; font-style: normal; }
.schoolstart-home__copy { margin: 1rem 0 0; color: #5e5953; line-height: 1.8; }
.schoolstart-home__proof {
  margin: 1rem 0 0;
  padding-left: 0.9rem;
  border-left: 3px solid #7a9a7e;
  color: #514d48;
  font-size: 0.88rem;
  line-height: 1.7;
}
.schoolstart-home__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.schoolstart-home__actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0.68rem 1.05rem;
  border: 1px solid #4a6741;
  border-radius: 999px;
  background: #4a6741;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.schoolstart-home__actions a:last-child { background: transparent; color: #4a6741; }
.schoolstart-home__actions a:hover,
.schoolstart-home__actions a:focus-visible { background: #3d5836; border-color: #3d5836; color: #fff; }
.schoolstart-home__actions a:focus-visible { outline: 3px solid #c9a97a; outline-offset: 3px; }
.schoolstart-home__gallery { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0.75rem; }
.schoolstart-home__gallery picture:first-child { grid-row: 1 / span 2; }
.schoolstart-home__gallery img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; border-radius: 20px; box-shadow: 0 16px 42px rgba(44, 44, 44, 0.1); }
.schoolstart-home__gallery picture:first-child img { min-height: 450px; }
@media (max-width: 820px) {
  .schoolstart-home__inner { grid-template-columns: 1fr; }
  .schoolstart-home__gallery picture:first-child img { min-height: 380px; }
}
@media (max-width: 520px) {
  .schoolstart-home { padding-inline: 1rem; }
  .schoolstart-home__gallery { grid-template-columns: 1fr 1fr; }
  .schoolstart-home__gallery picture:first-child { grid-column: 1 / -1; grid-row: auto; }
  .schoolstart-home__gallery picture:first-child img { min-height: 330px; }
}
