.actions-page {
  min-height: 820px;
  background: #fff;
  color: #292929;
}

.actions-intro {
  padding: 92px 0 112px;
  text-align: center;
}

.actions-intro h1 {
  margin: 0 0 16px;
  color: var(--eros-gold);
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.actions-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}

.actions-breadcrumb a { color: var(--eros-gold); }

.actions-list {
  width: min(calc(100% - 40px), 1140px);
  padding-bottom: 130px;
}

.action-card {
  width: 360px;
  background: #f2f2f2;
}

.action-card-image {
  display: block;
  height: 250px;
  overflow: hidden;
}

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

.action-card-image:hover img { transform: scale(1.025); }

.action-card-body { padding: 31px 30px 30px; }

.action-card h2 {
  min-height: 61px;
  margin: 0 0 22px;
  font-size: 21px;
  line-height: 1.4;
}

.action-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.action-card-meta .button {
  min-height: 39px;
  padding: 9px 24px;
  text-transform: none;
  font-size: 16px;
}

.action-card-meta time {
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .actions-page { min-height: 0; }
  .actions-intro { padding: 62px 0 70px; }
  .actions-list { padding-bottom: 75px; }
  .action-card { width: min(100%, 360px); margin-inline: auto; }
}
