/* ─────────────────────────────────────────
   BLOCK: PRESS
───────────────────────────────────────── */
.press {
  background: #fff;
  padding: 70px 0;
}
.press__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─────────────────────────────────────────
   BLOCK: ARTICLE-CARD
───────────────────────────────────────── */
.article-card {
  border: none;
  background-color: #F7F7F7;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.article-card__image {
  padding: 58px 30px 20px 30px;
  background: none;
}

.article-card__promo-label {
  text-align: center;
  font-size: 11px;
}
.article-card__promo-company {
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 4px;
}
.article-card__promo-text {
  color: var(--gray-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.article-card__promo-badge {
  background: #E91E8C;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 800;
  font-size: 15px;
}
.article-card__placeholder { color: #9ca3af; font-size: 11px; }

img.article-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.article-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.article-card__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.article-card__date { font-size: 11px; color: #9ca3af; }

/* Мобильная стрелка рядом с заголовком — скрыта на десктопе */
.press__arrow-mobile { display: none; }
.press__arrow-mobile-img { width: 20px; height: auto; display: block; }
