
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
:root {
  --brand: #FFCC00;
}
* { font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }
.navbar-brand img { height: 96px; }
.hero {
  position: relative;
  min-height: 48vh;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(1rem, 5vw, 4rem) 0;
}
.hero h1 { font-weight: 700; line-height: 1.1; font-size: clamp(1.6rem, 3.2vw, 3rem); }
.hero p.lead { font-size: clamp(1rem, 2vw, 1.25rem); max-width: 56ch; }
.section-title {
  border-bottom: 4px solid var(--brand);
  padding-bottom: .25rem;
  margin-bottom: 1rem;
}
.card-article {
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  height: 100%;
}
.card-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.25rem rgba(0,0,0,.1);
}
.card-article img { object-fit: cover; height: 180px; }
.newsletter {
  background: #f8f9fa;
  border-radius: .75rem;
  padding: 1.5rem;
}
footer a { text-decoration: none; }
footer a:hover { text-decoration: underline; }
.form-error { font-size: .9rem; }
