/* ========== Home page additional design tokens ========== */
:root {
  --dot-red: #e85a6f;
  --dot-yellow: #e8b94a;
  --dot-green: #5fb87a;
  --dot-blue: #5b8fd9;
  --dot-orange: #e89a4a;
}

/* ========== Home Hero (540px) ========== */
.home-hero {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background-color: #6fb3e6;
}

/* Override hero text sizes for home page */
.home-hero .hero-title {
  font-size: 56px;
  margin-bottom: 12px;
}

.home-hero .hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 32px;
  text-shadow:
    0 0 3px  rgba(0, 0, 0, 0.95),
    0 0 9px  rgba(0, 0, 0, 0.85),
    0 0 18px rgba(0, 0, 0, 0.60),
    0 0 32px rgba(0, 0, 0, 0.35);
}

.home-hero .hero-tagline {
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* ========== About Section ========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background-color: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  border: 1px solid var(--color-border-light);
}

.about--single {
  grid-template-columns: 1fr;
}

.about-text p {
  font-size: 18px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.about-image-placeholder {
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-bg);
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== News Section ========== */
.news {
  background-color: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 40px 16px;
  border: 1px solid var(--color-border-light);
}

.news-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.news-heading svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Prose content inside news body */
.news-body {
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.news-body > :first-child { margin-top: 0; }
.news-body > :last-child  { margin-bottom: 0; }

/* Hide the redundant h2 that comes from markdown ## お知らせ */
.news-body h2:first-child {
  display: none;
}

.news-body ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.news-body ul li {
  list-style: none;
  padding: 14px 8px;
  border-bottom: 1px dashed var(--color-border);
  color: var(--color-text);
  font-size: 15.5px;
}

.news-body ul li:last-child {
  border-bottom: none;
}

.news-body ul li a {
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
  transition: color 0.15s ease;
}

.news-body ul li a:hover {
  color: var(--color-primary-hover);
}

/* ========== Home Responsive ========== */
@media (max-width: 880px) {
  .home-hero          { height: 400px; }
  .home-hero .hero-title    { font-size: 40px; }
  .home-hero .hero-subtitle { font-size: 18px; }
  .home-hero .hero-tagline  { font-size: 15px; }

  .about   { grid-template-columns: 1fr; padding: 24px; }
  .news    { padding: 24px 24px 8px; }
}

@media (max-width: 640px) {
  .home-hero          { height: 320px; }
  .home-hero .hero-title    { font-size: 32px; }
  .home-hero .hero-subtitle { font-size: 15px; }
  .home-hero .hero-tagline  { font-size: 14px; }
}
