.home-press {
  padding: 72px 0 48px;
  background: #000;
  color: #fff;
}

.home-press.home-press-light {
  background: #fff;
  color: #171717;
}

.home-press.home-press-light .home-press-card {
  border: 1px solid #e5e5e5;
  background: #f4f4f4;
}

.home-press > .eros-wrap {
  width: min(calc(100% - 42px), 1140px);
}

.home-press h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(40px, 4.3vw, 58px);
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.home-press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home-press-card {
  min-width: 0;
  background: #f2f2f2;
  color: #292929;
}

.home-press-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.44 / 1;
  background: #1b1b1b;
}

.home-press-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.home-press-image:hover img {
  transform: scale(1.025);
}

.home-press-body {
  padding: 28px 30px 30px;
}

.home-press-card h3 {
  min-height: 61px;
  margin: 0 0 22px;
  font-size: 21px;
  line-height: 1.38;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-press-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-press-meta .button,
.home-press-more .button {
  min-height: 40px;
  padding: 9px 24px;
  text-transform: none;
  font-size: 16px;
}

.home-press-meta time {
  color: #444;
  white-space: nowrap;
  font-size: 14px;
}

.home-press-more {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .home-press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-press-card:last-child { grid-column: 1 / -1; width: calc(50% - 15px); justify-self: center; }
}

@media (max-width: 620px) {
  .home-press { padding: 54px 0 42px; }
  .home-press h2 { margin-bottom: 28px; font-size: 38px; }
  .home-press-grid { grid-template-columns: 1fr; gap: 22px; }
  .home-press-card:last-child { grid-column: auto; width: 100%; }
  .home-press-body { padding: 23px 22px 25px; }
  .home-press-card h3 { min-height: 0; }
}
