.actions-editorial-list {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.actions-editorial-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--theme-card-border);
  border-radius: 24px;
  background: var(--theme-card-bg);
  box-shadow: var(--theme-shadow);
}

.actions-editorial-card:nth-child(even) .actions-editorial-card__content { order: 2; }
.actions-editorial-card:nth-child(even) .actions-editorial-card__media { order: 1; }

.actions-editorial-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 5vw, 72px);
}

.actions-editorial-card__eyebrow {
  margin-bottom: 22px;
  color: var(--theme-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.actions-editorial-card__title {
  max-width: 11ch;
  margin: 0;
  color: var(--theme-text-strong);
  font-size: clamp(34px, 4.7vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
}

@media screen and (max-width: 239px) {
  .actions-editorial-card__title {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
}

.actions-editorial-card__description {
  max-width: 52ch;
  margin: 28px 0 0;
  color: var(--theme-text);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.6;
}

.actions-editorial-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 20px;
  border: 1px solid var(--theme-card-border);
  border-radius: 14px;
  color: var(--theme-text-strong);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.actions-editorial-card__link:hover,
.actions-editorial-card__link:focus-visible { transform: translateY(-2px); background: var(--theme-surface); }

.actions-editorial-card__media { position: relative; min-height: clamp(380px, 46vw, 720px); overflow: hidden; background: var(--theme-surface); }
.actions-editorial-card__picture,
.actions-editorial-card__image { display: block; width: 100%; height: 100%; }
.actions-editorial-card__image { object-fit: cover; }
.actions-editorial-card__media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,.2), transparent 45%); }

html.theme-preset--dark-current .actions-editorial-card { background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }

@media screen and (max-width: 767px) {
  .actions-editorial-list { gap: 22px; }
  .actions-editorial-card { grid-template-columns: 1fr; border-radius: 20px; }
  .actions-editorial-card:nth-child(even) .actions-editorial-card__content { order: 2; }
  .actions-editorial-card:nth-child(even) .actions-editorial-card__media { order: 1; }
  .actions-editorial-card__media { min-height: 280px; }
  .actions-editorial-card__content { padding: 28px 22px 30px; }
  .actions-editorial-card__eyebrow { margin-bottom: 16px; }
  .actions-editorial-card__description { margin-top: 20px; }
  .actions-editorial-card__link { width: 100%; justify-content: center; margin-top: 24px; }
}
