/* West Blount homepage — plain news-site layout */

.wb-front { margin: 0; }
.wb-front * { box-sizing: border-box; }

/* Hero */
.wb-hero {
  background: var(--wb-paper);
  border-bottom: 1px solid var(--wb-line);
  padding: 1.75rem 1.5rem;
}
.wb-hero__content {
  max-width: none;
  margin: 0;
  padding: 0;
}
.wb-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.5rem;
}
.wb-hero h1 a {
  color: inherit;
  text-decoration: none;
}
.wb-hero h1 a:hover { color: var(--wb-moss); }

/* Two-column hero: the lead story runs large, next 4 headlines run beside it */
.wb-hero__layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2rem;
  align-items: start;
}
.wb-hero__more {
  border-left: 1px solid var(--wb-line);
  padding-left: 1.75rem;
}
.wb-hero__more > .wb-eyebrow {
  display: block;
  margin-bottom: 0.9rem;
}
.wb-hero__more-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.wb-hero__more-list li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--wb-line);
}
.wb-hero__more-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wb-hero__more-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.wb-hero__more-thumb {
  flex: none;
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
}
.wb-hero__more-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wb-hero__more-text {
  min-width: 0;
}
.wb-hero__more-date {
  display: block;
  font-family: var(--wb-font-mono);
  font-size: 0.75rem;
  color: var(--wb-moss);
  margin-bottom: 0.2rem;
}
.wb-hero__more-list a {
  font-family: var(--wb-font-display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--wb-cave);
  text-decoration: none;
}
.wb-hero__more-list a:hover { color: var(--wb-moss); }

@media (max-width: 860px) {
  .wb-hero__layout { grid-template-columns: 1fr; }
  .wb-hero__more {
    border-left: none;
    border-top: 1px solid var(--wb-line);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}
.wb-dek {
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 62ch;
  color: var(--wb-ink);
}
.wb-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--wb-font-body);
  font-weight: 700;
  color: var(--wb-limestone) !important;
  background: var(--wb-moss);
  padding: 0.65rem 1.3rem;
  text-decoration: none;
  border-radius: 2px;
}
.wb-cta:hover { background: var(--wb-moss-dark); color: var(--wb-limestone) !important; }
.wb-cta--ghost {
  background: transparent;
  color: var(--wb-moss) !important;
  border: 1.5px solid var(--wb-moss);
}
.wb-cta--ghost:hover { background: var(--wb-moss); color: var(--wb-limestone) !important; }

/* Featured story with an image: image above the text, in its own column */
.wb-hero__featured--media .wb-hero__media {
  display: block;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 1rem;
}
.wb-hero__featured--media .wb-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section scaffolding */
.wb-main > section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--wb-line);
}
.wb-section-title {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}
.wb-section-dek {
  font-family: var(--wb-font-body);
  color: var(--wb-moss);
  margin: 0 0 1.75rem;
  max-width: 60ch;
}
.wb-more-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* News grid */
.wb-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.wb-news-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.wb-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.wb-news-card__media:hover img { transform: scale(1.03); }
.wb-news-card h3 { font-size: 1.15rem; margin: 0.3rem 0; }
.wb-news-card p { margin: 0; color: var(--wb-ink); }
.wb-news-card .wb-eyebrow { color: var(--wb-gold); }

@media (max-width: 640px) {
  .wb-main > section { padding: 2.25rem 1.25rem; }
}

.wb-coming-soon-splash {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.wb-coming-soon-splash__inner { max-width: 560px; }
.wb-coming-soon-splash .wb-dek { margin: 1rem auto 0; }

/* Homepage 2-column split: main content + a sidebar block (Events + school links) */
.wb-home-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.wb-schools-block {
  background: var(--wb-paper);
  border: 1px solid var(--wb-line);
  border-left: 3px solid var(--wb-gold);
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(30, 33, 27, 0.05), 0 8px 18px -8px rgba(30, 33, 27, 0.16);
  padding: 1.5rem 1.5rem 1.25rem;
  position: sticky;
  top: 1.5rem;
}
.wb-schools-block__icon {
  display: block;
  margin-bottom: 0.6rem;
}
.wb-schools-block > .wb-eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--wb-cave);
  font-family: var(--wb-font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}
.wb-schools-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wb-schools-block__list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--wb-line);
}
.wb-schools-block__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wb-schools-block__list a {
  font-family: var(--wb-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wb-ink) !important;
  text-decoration: none;
}
.wb-schools-block__list a:hover { color: var(--wb-moss) !important; }

@media (max-width: 860px) {
  .wb-home-split { grid-template-columns: 1fr; }
  .wb-schools-block { position: static; }
}
