



.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  position: relative;
}

.page-hero-text {
  background: linear-gradient(to right, #041e36 0%, #072e52 60%, #1565a8 100%);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
}

.page-hero-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.page-hero-image {
  overflow: hidden;
  position: relative;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1565a8 0%, rgba(21,101,168,0.25) 40%, transparent 100%);
}
/* ── FOOTER ── */
.site-footer {
  background: #1565a8;
  padding: 1.2rem 2rem;
  text-align: center;
}

.site-footer p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .page-hero { grid-template-columns: 1fr; }

  .page-hero-text {
    background: linear-gradient(to bottom, #041e36 0%, #1565a8 100%);
    padding: 2.5rem 1.5rem;
  }

  .page-hero-text h1 { font-size: 2rem; }

  .page-hero-image { min-height: 220px; }

  .page-hero-image::after {
    background: linear-gradient(to bottom, #1565a8 0%, rgba(21,101,168,0.25) 50%, transparent 100%);
  }
}


