.expedition {
  background: var(--paper);
  color: var(--ink);
}

.expedition .eyebrow {
  color: #a94a00;
}

.expedition .section-head p,
.countries .section-head p {
  color: #46525a;
}

.expedition-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1.2rem;
}

.feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.feature:hover img {
  transform: scale(1.025);
}

.feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 8, 12, .98), rgba(3, 8, 12, .08) 75%);
}

.feature-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 2rem;
}

.feature-copy p {
  max-width: 690px;
  color: #e0e4e3;
}

.requirements {
  padding: 1.6rem;
  background: var(--ink);
  color: #fff;
}

.requirements ul {
  padding-left: 1.15rem;
}

.requirements li {
  margin: .5rem 0;
  color: #d8dee0;
}

.fee {
  padding: 1rem;
  border-left: 4px solid var(--orange);
  background: #17232d;
}

.rides {
  background: var(--night);
}

.ride-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.ride-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--night2);
  text-decoration: none;
  transition: .25s;
}

.ride-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0005;
}

.ride-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ride-copy {
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
}

.ride-year {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .16em;
}

.ride-copy p {
  color: var(--muted);
  font-size: .92rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}

.tag {
  padding: .28rem .45rem;
  background: #ffffff12;
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resources {
  background: #111b25;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.resource {
  min-height: 190px;
  padding: 1.5rem;
  border-top: 4px solid var(--orange);
  background: #f5efe4;
  color: var(--ink);
  text-decoration: none;
  transition: .2s;
}

.resource:hover {
  background: #fff;
  transform: translateY(-4px);
}

.resource span {
  display: block;
  margin-bottom: 1rem;
  color: #a84d04;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.resource p {
  color: #4e5960;
  font-size: .9rem;
}

.countries {
  background: var(--paper);
  color: var(--ink);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.country {
  position: relative;
  min-height: 150px;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid #cabfaf;
  background: #fff;
  text-decoration: none;
  transition: .2s;
}

.country:after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 105px;
  height: 105px;
  border: 18px solid #f28a2226;
  border-radius: 50%;
}

.country:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.country small {
  color: #8a4a18;
  font-weight: 900;
  text-transform: uppercase;
}

.country h3 {
  margin: .5rem 0;
}

.country p {
  margin: 0;
  color: #5b646b;
  font-size: .82rem;
}

