/* Readable About hero */
.two-about-hero{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  overflow:hidden;
}
.two-about-hero__bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter: brightness(0.72) contrast(1.05);
}
.two-about-hero__overlay{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 80%);
  /* increase bottom darkness for readability */
}
.two-about-hero__inner{
  position:relative; z-index:1;
  max-width: 900px;
  padding: 64px 24px;
}
.two-about-hero__inner h1{
  color:#ffffff;
  font-size: clamp(28px, 5vw, 44px);
  line-height:1.1;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}
.two-about-hero__inner p{
  color:#f2f4f7;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height:1.6;
  margin:0;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}
