/* ══════════════════════════════════════════════════════════════════════
   Экспертные и совещательные органы — advisory_bodies/styles.css
   Общие переменные: home/styles.css (:root)
══════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────
   BREADCRUMB (повторяет глобальный паттерн)
────────────────────────────────────────────────────────────────────── */
.page-crumb-wrap {
  padding: 20px var(--px) 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 18px;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }

.breadcrumb-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.breadcrumb-current {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  line-height: 18px;
}

/* ──────────────────────────────────────────────────────────────────────
   HERO — карточка с фоновым изображением / градиентом
────────────────────────────────────────────────────────────────────── */
.ab-hero {
  margin: 24px var(--px) 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(184deg, rgba(0, 22, 43, 0) 42%, rgba(0, 22, 43, 0.72) 100%),
    url("images/hero-bg.png") center / cover no-repeat;
  position: relative;
}

.ab-hero__inner {
  padding: 48px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.ab-hero__title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0px 2px 10px rgba(0, 22, 43, 0.55);
  margin: 0;
  max-width: 900px;
}

.ab-hero__desc {
  font-family: Arial, sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  max-width: 720px;
}

/* ──────────────────────────────────────────────────────────────────────
   ОСНОВНАЯ СЕКЦИЯ
────────────────────────────────────────────────────────────────────── */
.ab-section {
  padding: 40px var(--px) 80px;
}

/* ──────────────────────────────────────────────────────────────────────
   ПАНЕЛЬ СО СПИСКОМ
────────────────────────────────────────────────────────────────────── */
.ab-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-panel__header {
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.ab-panel__title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────
   СПИСОК ОРГАНОВ
────────────────────────────────────────────────────────────────────── */
.ab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px 40px 64px;
}

.ab-empty {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  padding: 24px 0;
}

/* ──────────────────────────────────────────────────────────────────────
   КАРТОЧКА ОРГАНА
────────────────────────────────────────────────────────────────────── */
.ab-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 0 24px;
  background: linear-gradient(91deg, rgba(2, 24, 44, 1) 1%, rgba(64, 76, 92, 1) 100%);
  border-radius: 8px;
  padding: 32px 32px 32px 16px;
  margin-bottom: 16px;
  min-height: 130px;
}
.ab-card:last-child { margin-bottom: 0; }

.ab-card__num {
  font-family: 'Play', Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  align-self: flex-start;
  padding-top: 4px;
  flex-shrink: 0;
}

.ab-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.ab-card__name {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #fff;
}

.ab-card__desc {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #D2D2DF;
}

/* Кнопка «Подробнее» */
.ab-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 5px;
  border: 1px solid var(--border);
  color: #fff;
  background: transparent;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.ab-card__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Акцентная кнопка (первый элемент) */
.ab-card__btn--accent {
  background: linear-gradient(56deg, rgba(0, 22, 43, 0) 0%, rgba(255, 131, 104, 1) 100%);
  border-color: var(--accent);
  color: #fff;
}
.ab-card__btn--accent:hover {
  opacity: 0.85;
  color: #fff;
}

/* ──────────────────────────────────────────────────────────────────────
   DETAIL PAGE — детальная страница органа
────────────────────────────────────────────────────────────────────── */
.ab-detail {
  padding: 40px var(--px) 80px;
}

.ab-detail-hero {
  margin: 24px var(--px) 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1C3A5C 0%, #2C4A6E 50%, #1A3050 100%);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab-detail-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-detail-hero__kind {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 3px;
}

.ab-detail-hero__status {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

.ab-detail-hero__title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

/* Описание органа */
.ab-detail-desc {
  margin: 32px var(--px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.ab-detail-desc .ck-content,
.ab-detail-desc .ab-richtext {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
}

/* Блоки с составом и заседаниями */
.ab-blocks {
  padding: 36px var(--px) 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ab-block-title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px;
}

/* Таблица состава */
.ab-members-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.ab-members-table th {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ab-members-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-light);
  vertical-align: top;
}

.ab-members-table tr:last-child td { border-bottom: none; }

.ab-members-table .ab-person-name {
  color: #fff;
  font-weight: 400;
}

.ab-members-table .ab-person-role {
  color: var(--accent);
  font-size: 13px;
}

/* Список заседаний */
.ab-meetings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-meeting-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(91deg, rgba(2, 24, 44, 1) 1%, rgba(64, 76, 92, 1) 100%);
  border-radius: 8px;
}

.ab-meeting-date {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 90px;
}

.ab-meeting-info {
  flex: 1;
  min-width: 0;
}

.ab-meeting-title {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.ab-meeting-protocol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
}
.ab-meeting-protocol:hover { opacity: 0.8; }

/* Кнопка назад */
.ab-back-wrap {
  padding: 0 var(--px) 48px;
}

.ab-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s;
}
.ab-back-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════
   DETAIL PAGE — abd-* префикс
══════════════════════════════════════════════════════════════════════ */

/* ── HERO-БАННЕР (фон + хлебные крошки + название) ── */
.abd-hero {
  position: relative;
  min-height: 404px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 16px;
  padding: 0 var(--px) 64px;
  background:
    linear-gradient(182deg, rgba(0, 22, 43, 0) 19%, rgba(0, 22, 43, 0.6) 63%),
    url("images/hero-bg.png") center / cover no-repeat;
}
.abd-hero--fallback {
  background: linear-gradient(135deg, rgba(0, 22, 43, 1) 0%, rgba(57, 69, 87, 1) 100%);
}


/* Название органа */
.abd-hero__title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0px 2px 10px rgba(0, 22, 43, 0.55);
  margin: 0;
  max-width: 900px;
}

.abd-hero__subtitle {
  font-family: Arial, sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0px 1px 6px rgba(0, 22, 43, 0.6);
  margin: 24px 0 0;
  max-width: 760px;
}

/* ── СЕКЦИЯ (вертикальный ритм + горизонтальные поля) ── */
.abd-section {
  padding: 56px var(--px) 0;
}
.abd-back-wrap {
  padding: 48px var(--px) 64px;
}

/* ── ЗАГОЛОВОК СЕКЦИИ (Play 48px) ── */
.abd-section-title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(28px, 3.3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 36px;
}

/* ── ЦЕЛЬ РАБОТЫ ── */
.abd-goal__text {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
}

/* ── ПАНЕЛЬ С РАМКОЙ (Направления, Контакты, Состав, Заседания) ── */
.abd-panel {
  border: 1px solid #56718F;
  border-radius: 16px;
  overflow: hidden;
}
.abd-panel__header {
  padding: 28px 40px;
  border-bottom: 1px solid #56718F;
}
.abd-panel__title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 40px;
  color: #fff;
  margin: 0;
}

/* ── НАПРАВЛЕНИЯ ДЕЯТЕЛЬНОСТИ (3 колонки в ряд) ── */
.abd-directions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 40px;
}
.abd-dir-card {
  flex: 1;
  min-width: 0;
  background: transparent;
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(86, 113, 143, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.abd-dir-card__title {
  font-family: 'Play', Arial, sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}
.abd-dir-card__desc {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-light);
}

/* ── ДОКУМЕНТЫ ОРГАНА ── */
.abd-docs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.abd-doc-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, rgba(6, 26, 47, 1) 0%, rgba(53, 66, 84, 1) 100%);
  border-radius: 8px;
  padding: 20px 24px;
}
.abd-doc-card__icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.abd-doc-card__title {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.abd-doc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: 1px solid #56718F;
  border-radius: 5px;
  padding: 10px 20px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.abd-doc-card__btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── БЛОК КОНТАКТОВ ── */
.abd-contacts-inner {
  padding: 40px;
}

/* Карточка: горизонтальный ряд [chairman | divider | secretary] */
.abd-contact-card {
  background: linear-gradient(90deg, rgba(0, 22, 43, 1) 0%, rgba(62, 75, 91, 1) 100%);
  border-radius: 8px;
  padding: 28px 40px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Блок председателя / секретаря */
.abd-contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

/* Строка: фото + инфо (имя/должность) рядом */
.abd-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.abd-contact-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.abd-contact-photo--placeholder {
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Инфо справа от фото */
.abd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}

.abd-contact-role {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.abd-contact-name {
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
}
.abd-contact-position {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* Вертикальный разделитель */
.abd-contact-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(86, 113, 143, 0.5);
  flex-shrink: 0;
  margin: 0 40px;
}

/* Контактные ссылки секретаря */
.abd-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.abd-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.abd-contact-link:hover { color: var(--accent); }

/* ── ТАБЛИЦА СОСТАВА ── */
.abd-members-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.abd-members-table thead tr { border-bottom: 1px solid rgba(86,113,143,0.4); }
.abd-members-table th {
  text-align: left;
  padding: 12px 40px;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.abd-members-table td {
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-light);
  vertical-align: top;
}
.abd-members-table tbody tr:last-child td { border-bottom: none; }
.abd-member-name { color: #fff; font-weight: 400; }
.abd-member-name a { color: #fff; text-decoration: none; }
.abd-member-name a:hover { color: var(--accent); }
.abd-member-pos { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.abd-member-role-badge { color: var(--accent); font-size: 13px; }

/* ── ЗАСЕДАНИЯ ── */
.abd-meetings-list {
  padding: 24px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.abd-meeting-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(91deg, rgba(2, 24, 44, 1) 1%, rgba(64, 76, 92, 1) 100%);
  border-radius: 8px;
}
.abd-meeting-date {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 90px;
}
.abd-meeting-info { flex: 1; min-width: 0; }
.abd-meeting-title { font-family: Arial, sans-serif; font-size: 15px; color: #fff; margin-bottom: 4px; }
.abd-meeting-dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
}
.abd-meeting-dl:hover { opacity: 0.8; }

/* ── КНОПКА НАЗАД ── */
.abd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s;
}
.abd-back-btn:hover { background: var(--accent); color: #fff; }

/* ──────────────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤1024px)
────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-hero { min-height: 300px; }
  .ab-card {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 16px;
    padding: 24px 24px 24px 16px;
  }
  .ab-card__btn { grid-column: 2; justify-self: start; }
  .ab-detail-hero { padding: 36px; }

  /* detail tablet */
  .abd-hero { min-height: 300px; padding-bottom: 36px; }
  .abd-directions { flex-wrap: wrap; }
  .abd-dir-card { flex-basis: calc(50% - 10px); }
  .abd-contacts-inner { padding: 28px; }
  .abd-contact-card { padding: 24px 28px; }
  .abd-contact-divider { margin: 0 24px; }
  .abd-members-table th,
  .abd-members-table td { padding: 12px 28px; }
  .abd-meetings-list { padding: 20px 28px 28px; }
}

/* ──────────────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤768px)
────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ab-hero { margin: 16px var(--px) 0; min-height: 240px; align-items: flex-end; }
  .ab-hero__inner { padding: 32px 24px 40px; gap: 20px; }
  .ab-section { padding: 24px var(--px) 56px; }
  .ab-panel__header { padding: 20px 20px; }
  .ab-list { padding: 24px 20px 40px; gap: 0; }
  .ab-card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 12px;
    padding: 20px 20px 20px 12px;
    margin-bottom: 12px;
  }
  .ab-card__num { font-size: 18px; }
  .ab-card__name { font-size: 16px; }
  .ab-card__desc { font-size: 14px; }
  .ab-card__btn { grid-column: 2; justify-self: start; font-size: 13px; padding: 9px 14px; }
  .ab-detail-hero { padding: 24px 20px; margin: 16px var(--px) 0; }
  .ab-blocks { padding: 24px var(--px) 48px; }
  .ab-members-table th, .ab-members-table td { padding: 10px 8px; }
  .ab-meeting-item { flex-direction: column; gap: 8px; padding: 16px; }

  /* detail mobile */
  .abd-hero { min-height: 240px; padding: 0 20px 32px; }
  .abd-hero__crumb { left: 20px; }
  .abd-section { padding: 40px 20px 0; }
  .abd-panel__header { padding: 20px; }
  .abd-panel__title { font-size: 20px; }

  .abd-directions { flex-direction: column; padding: 20px; gap: 12px; }
  .abd-dir-card { flex-basis: auto; }

  .abd-doc-card { grid-template-columns: 36px 1fr; }
  .abd-doc-card__btn { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }

  .abd-contacts-inner { padding: 20px; }
  .abd-contact-card { flex-direction: column; gap: 0; padding: 20px; }
  .abd-contact-divider { width: 100%; height: 1px; align-self: auto; margin: 20px 0; }
  .abd-contact-row { gap: 16px; }
  .abd-contact-photo { width: 80px; height: 80px; }
  .abd-contact-link { font-size: 16px; }

  .abd-members-table th,
  .abd-members-table td { padding: 10px 16px; }
  .abd-meetings-list { padding: 16px 20px 20px; }
  .abd-meeting-item { flex-direction: column; gap: 8px; padding: 16px; }
  .abd-back-wrap { padding: 32px 20px 48px; }
}

@media (max-width: 480px) {
  .ab-card { grid-template-columns: 1fr; padding: 20px 16px; }
  .ab-card__num { font-size: 16px; align-self: auto; }
  .ab-card__btn { grid-column: 1; justify-self: start; }
  .abd-contact-row { flex-direction: column; gap: 12px; }
}
