.press-main {
  background: #e9e6df;
  color: #17191a;
}

.press-main .section {
  padding: 72px 0 90px;
}

.press-intro {
  max-width: 760px;
  margin: 24px 0 42px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.press-release {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 32px;
  margin-bottom: 68px;
  background: #11171a;
  color: #f2efe8;
  border: 1px solid rgba(209, 185, 141, 0.42);
}

.press-release h3,
.press-card h3,
.press-contact h3 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.15;
}

.press-release p {
  max-width: 570px;
  margin: 0;
  color: #c8cccd;
  line-height: 1.65;
}

.press-photos {
  margin-bottom: 68px;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 22px;
}

.press-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #11171a;
  color: #f2efe8;
  border: 1px solid rgba(209, 185, 141, 0.38);
}

.press-card-wide {
  grid-column: 1 / -1;
}

.press-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.press-card-wide img {
  height: auto;
  aspect-ratio: 16 / 9;
}

.press-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.press-card-content p {
  margin: 0 0 24px;
  color: #c8cccd;
  line-height: 1.6;
}

.press-card-content .button {
  margin-top: auto;
}

.press-contact {
  padding: 34px;
  background: #d8c29a;
  color: #11171a;
}

.press-contact p {
  margin: 0 0 24px;
  line-height: 1.65;
}

.press-main .small-label {
  color: #d1b98d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

@media (max-width: 760px) {
  .press-main .section {
    padding: 50px 0 68px;
  }

  .press-release {
    align-items: flex-start;
    flex-direction: column;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card-wide {
    grid-column: auto;
  }

  .press-card img,
  .press-card-wide img {
    height: 340px;
    aspect-ratio: auto;
  }
}