/* Shared photo hero for country pages with a supplied image. */
.country-page .country-hero-photo { background: #063c33; }
.country-page .country-hero-photo > .country-hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 56%;
}
.country-page .country-hero-photo::before { display: none; }
.country-page .country-hero-photo::after {
  display: block; inset: 0; width: auto; height: auto;
  border: 0; border-radius: 0; box-shadow: none;
  background: linear-gradient(90deg, rgba(3,35,29,.92), rgba(3,35,29,.72) 44%, rgba(3,35,29,.08) 80%);
}
.country-page .country-hero-photo h1 { color: #fff; }
.country-page .country-hero-photo .lead,
.country-page .country-hero-photo li { color: #f1f7f3; }
.country-page .country-hero-photo .eyebrow,
.country-page .country-hero-photo li::before { color: #cde85a; }
@media (max-width: 720px) {
  .country-page .country-hero-photo::after {
    background: linear-gradient(90deg, rgba(3,35,29,.88), rgba(3,35,29,.64));
  }
}
