@font-face {
  font-family: 'Neue DIN';
  src: url('/assets/fonts/NeueDIN-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue DIN';
  src: url('/assets/fonts/NeueDIN-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue DIN Wide';
  src: url('/assets/fonts/NeueDINWide-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eef1f4;
  --surface: #ffffff;
  --ink: #25384c;
  --muted: #6d7b8b;
  --accent: #3f6f91;
  --accent-strong: #335d7a;
  --danger: #a12424;
  --radius: 12px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --shadow: 0 16px 40px rgba(20, 32, 53, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Neue DIN', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern", "liga";
}
body.has-disclaimer {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Neue DIN Wide', sans-serif;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: 14px var(--space-4);
  background: rgba(11, 25, 39, 0.74);
  backdrop-filter: blur(4px);
  color: #f4f7fb;
}
.topbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.has-hero .topbar {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
}
.has-hero .topbar .row{
    width: 90%;
    max-width: inherit;
}
.topbar__brand {
  font-family: 'Neue DIN', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: lowercase;
}
.topbar__brand-logo {
  width: 235px;
  height: auto;
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.topbar__nav {
  font-family: 'Neue DIN', sans-serif;
  font-weight: 400;
  display: flex;
  gap: 34px;
  align-items: center;
    font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}
.topbar__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 8px;
  opacity: 0.9;
}
.topbar__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
}
.topbar__nav-link:hover,
.topbar__nav-link.is-active {
  opacity: 1;
}
.topbar__nav-link:hover::after,
.topbar__nav-link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}
.topbar__login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 7px 12px;
}
.topbar__login-icon {
  width: 17px;
  height: 22px;
  display: block;
}

.topbar__login-text {
  display: inline-block;
}

.page-wrap { margin: 30px 0; }
.has-hero .page-wrap {
  margin-top: 40px;
}
.row {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
}
.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page-hero--home {
  height: 850px;
}
.page-hero--inner {
  height: 565px;
}
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 39, 56, 0.46) 0%, rgba(22, 39, 56, 0.18) 48%, rgba(22, 39, 56, 0.24) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.page-hero__panel {
  position: absolute;
  left: 60px;
  bottom: 70px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 14px 30px rgba(20, 32, 53, 0.12);
}
.page-hero__headline {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}
.page-hero__accent {
  width: 4px;
  height: 58px;
  background: rgba(115, 152, 183, 0.95);
  border-radius: 999px;
}
.page-hero h1,
.page-hero__headline h1 {
  margin: 0 0 10px;
  font-size: 46px;
  line-height: 1.02;
  color: #365976;
}
.page-hero__headline h1 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
}
.page-hero p {
  margin: 0;
  color: #556372;
  max-width: 560px;
}
.page-hero__search {
  margin-top: 18px;
}
.page-hero__search .schema-form {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: 0;
  align-items: end;
}
.page-hero__search .schema-form__grid {
  display: block;
  min-width: 0;
}
.page-hero__search .schema-field {
  min-width: 0;
}
.page-hero__search .schema-field__label {
  display: none;
}
.page-hero__search .schema-form__actions {
  margin: 0;
  min-width: 0;
}
.page-hero__search .schema-field__control,
.page-hero__search .btn {
  height: 46px;
  width: 100%;
}
.page-hero__search .schema-field__control {
  border-radius: 8px 0 0 8px;
  border-right: 0;
  background: #ffffff;
}
.page-hero__search .btn {
  border-radius: 0 8px 8px 0;
}
.page-hero__search-fallback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: 0;
}
.page-hero__search-fallback .schema-field__control,
.page-hero__search-fallback .btn {
  height: 46px;
}
.page-hero__search-fallback .schema-field__control {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.page-hero__search-fallback .btn {
  border-radius: 0 8px 8px 0;
}
.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.section-label {
  font-family: 'Neue DIN', sans-serif;
  margin: 18px 0 10px;
  text-transform: uppercase;
  color: #7d8c9b;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 11px;
}

.home-features {
  padding: 60px 0;
  display: grid;
  gap: var(--space-6);
}
.feature-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: start;
}
.feature-row--reverse {
  grid-template-columns: 1fr 180px;
}
.feature-row--reverse .feature-row__icon {
  order: 2;
}
.feature-row__icon {
  width: 180px;
  height: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-row__icon-svg {
  width: 180px;
  height: 180px;
  display: block;
}
.feature-row h2 {
  margin: 0 0 15px;
  font-size: 32px;
    max-width: 640px;
  line-height: 1.08;
  color: #426788;
}
.feature-row p {
  margin: 0 0 14px;
  color: #5f6f80;
  font-size: 17px;
  line-height: 1.5;
  max-width: 860px;
}

.feature-row .btn{
    margin-top: 15px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}
.metrics .card p {
  margin: 4px 0 0;
  font-size: 36px;
  font-weight: 700;
}
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); }
.mt-16 { margin-top: var(--space-3); }

.auth-layout { width: min(540px, 100%); margin: 0 auto; background: var(--surface); border-radius: var(--radius); padding: var(--space-5); box-shadow: var(--shadow); }
.schema-form__title { margin-top: 0; margin-bottom: var(--space-4); }
.schema-form__grid { display: grid; gap: var(--space-3); }
.schema-field__label { display: block; margin-bottom: 6px; font-weight: 600; }
.schema-field__control { width: 100%; border: 1px solid #d5dbe7; border-radius: 10px; padding: 11px 12px; font: inherit; background: #fff; }
.schema-field__control--select {
  appearance: none;
  padding-right: 52px;
}
.schema-field__control--textarea { min-height: 120px; resize: vertical; }
.schema-field__checkbox { display: inline-flex; gap: var(--space-2); align-items: center; }
.schema-field__errors { color: var(--danger); margin: 8px 0 0; padding-left: 16px; }
.schema-form__actions { margin-top: var(--space-4); }
.schema-form__loading { display: none; }
.schema-form.is-loading .schema-form__loading { display: inline; }
.schema-form.is-loading .schema-form__idle { display: none; }
.schema-select {
  position: relative;
}
.schema-select__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, #4f7897 0%, #456f8f 100%);
  border-radius: 0 8px 8px 0;
}
.schema-select__icon::before,
.schema-select__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}
.schema-select__icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.schema-select__icon::after {
  right: 9px;
  transform: translateY(-50%) rotate(-45deg);
}
.schema-radio-group {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.schema-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #426d8f;
}
.schema-radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.schema-radio__indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #426d8f;
  background: #ffffff;
  flex: 0 0 auto;
}
.schema-radio__label {
  font-family: 'Neue DIN', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
}
.schema-radio__input:checked + .schema-radio__indicator::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 4px auto 0;
  border-radius: 50%;
  background: #426d8f;
}

.offer-catalog {
  display: grid;
  gap: 22px;
}
.offer-filter__form {
  border: 2px solid #4a7594;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
}
.offer-filter__form .schema-form__title {
  margin: 0;
  padding: 12px 22px 13px;
  background: #4a7594;
  color: #ffffff;
  font-family: 'Neue DIN', sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.offer-filter__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 22px;
  padding: 24px 22px 0;
}
.offer-filter__grid .schema-field {
  min-width: 0;
}
.offer-filter__grid .schema-field[data-schema-form-field="audience"] {
  grid-column: 1 / -1;
  padding-top: 6px;
}
.offer-filter__grid .schema-field__label {
  margin-bottom: 10px;
  color: #426d8f;
  font-family: 'Neue DIN', sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.offer-filter__grid .schema-field__control {
  height: 48px;
  border: 1px solid #4a7594;
  border-radius: 8px;
  padding: 10px 16px;
  color: #426d8f;
  font-family: 'Neue DIN', sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.offer-filter__grid .schema-field__control::placeholder {
  color: #6f87a0;
}
.offer-filter__actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px 22px 24px;
  margin-top: 0;
}
.offer-filter__actions .btn {
  min-width: 186px;
  min-height: 56px;
  font-size: 24px;
}
.offer-filter__submit {
  min-width: 186px;
}
.offer-results__count {
  margin: 0;
  text-align: center;
  color: #416d8f;
  font-family: 'Neue DIN', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.offer-results__list {
  margin-top: 22px;
  display: grid;
  gap: 0;
}
.offer-result-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 320px;
  align-items: center;
  gap: 22px;
  padding: 30px 0 34px;
  border-bottom: 2px solid #d7dadd;
}
.offer-result-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #416d8f;
  text-align: center;
}
.offer-result-item__day {
  font-family: 'Neue DIN Wide', sans-serif;
  font-size: 96px;
  line-height: 0.85;
  font-weight: 400;
}
.offer-result-item__month {
  margin-top: 8px;
  font-family: 'Neue DIN', sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}
.offer-result-item__content {
  min-width: 0;
}
.offer-result-item__title {
  margin: 0 0 12px;
  color: #416d8f;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 400;
}
.offer-result-item__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #2f2f2f;
}
.offer-result-item__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Neue DIN', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}
.offer-result-item__meta-icon {
  width: 18px;
  height: 18px;
  display: block;
  color: #2f2f2f;
}
.offer-result-item__meta-icon--map {
  width: 15px;
  height: 22px;
}
.offer-result-item__actions {
  display: flex;
  justify-content: flex-end;
}
.offer-result-item__button {
  min-width: 316px;
  min-height: 52px;
  font-size: 22px;
  letter-spacing: 0.08em;
}
.offer-card--empty {
  padding: 26px;
  margin-top: 18px;
  border: 1px solid #d9e3ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.offer-card--empty h2 {
  margin: 0 0 8px;
}
.offer-card--empty p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 3px solid #4b7594;
  padding: 10px 28px;
  font-family: 'Neue DIN', sans-serif;
  font-weight: 400;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 18px;
  line-height: 1;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}
.btn--ghost {
  border-color: #fff;
  background: #ffffff;
  color: #2f5877;
}
.btn--ghost:hover {
  background: #f8fbfd;
}
.btn--danger {
  background: #ffffff;
  color: #9a3f3f;
  border-color: #c88989;
}
.btn--danger:hover {
  background: #fff8f8;
}

.flash { padding: 12px 14px; border-radius: 10px; margin-bottom: var(--space-3); }
.flash--success { background: #daf3e3; color: #16543a; }
.flash--error { background: #fbe0e0; color: #7d1f1f; }

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.disclaimer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 49, 0.46);
  backdrop-filter: blur(2px);
}
.disclaimer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 32px));
  padding: 28px 34px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(20, 32, 53, 0.24);
  text-align: center;
}
.disclaimer-modal__dialog h2 {
  margin: 0 0 18px;
  color: #436d8f;
  font-size: 34px;
}
.disclaimer-modal__dialog p {
  margin: 0;
  color: #4e555d;
  font-size: 18px;
  line-height: 1.45;
}
.disclaimer-modal__button {
  margin-top: 26px;
  min-width: 220px;
}

.admin-shell { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-4); }
.sidebar { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: var(--space-4); display: grid; gap: 10px; height: fit-content; }
.sidebar a { padding: 10px 12px; border-radius: 10px; color: var(--muted); }
.sidebar a.is-active, .sidebar a:hover { background: #edf4ff; color: var(--ink); }
.admin-content .row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid #ebeff6; vertical-align: top; }
.table td form { margin-top: 8px; }
.state-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-top: var(--space-3); }
.faq-list { display: grid; gap: var(--space-4); }

.site-footer {
  margin-top: 36px;
  padding: 26px 70px 54px;
  background: #dfdcd9;
  color: #646464;
}
.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 40px;
}
.site-footer__copyright {
  font-family: 'Neue DIN', sans-serif;
  font-size: 20px;
  line-height: 1.1;
}
.site-footer__links {
  font-family: 'Neue DIN', sans-serif;
  display: flex;
    justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 20px;
  line-height: 1.1;
}
.site-footer__links a::after {
  content: '·';
  margin-left: 10px;
}
.site-footer__links a:last-child::after {
  content: '';
  margin-left: 0;
}
.site-footer__bottom {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__badge {
  width: 182px;
  height: auto;
}
.site-footer__login {
}

@media (min-width: 768px) {
  .row { width: min(1280px, 100% - 64px); }
}


@media (min-width: 1536px) {
  .row { width: min(1280px, 100% - 96px); }
}

@media (max-width: 1279px) {
  .admin-shell { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .page-wrap { margin: 12px 0; }
  .row { width: min(100% - 24px, 360px); }
  .topbar { padding: 12px; position: static; }
  .has-hero .topbar {
    position: absolute;
  }
  .topbar__nav { gap: 8px; font-size: 10px; }
  .topbar__brand-logo {
    width: 150px;
  }
  .topbar__login-text {
    display: none;
  }
  .page-hero--home { height: 850px; }
  .page-hero--inner { height: 565px; }
  .page-hero__panel {
    left: 0;
    right: 0;
    bottom: 38px;
    max-width: none;
    padding: 14px;
  }
  .page-hero h1 { font-size: 30px; }
  .page-hero__headline {
    left: 0;
    right: 0;
    bottom: 36px;
    gap: 12px;
  }
  .page-hero__headline h1 {
    font-size: 32px;
  }
  .page-hero__accent {
    height: 34px;
  }
  .page-hero__search .schema-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-hero__search .schema-form__grid {
    display: block;
  }
  .page-hero__search .schema-field__control,
  .page-hero__search .btn {
    border-radius: 8px;
  }
  .page-hero__search .schema-field__control {
    border-right: 1px solid #d5dbe7;
  }
  .page-hero__search-fallback {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-hero__search-fallback .schema-field__control,
  .page-hero__search-fallback .btn {
    border-radius: 8px;
  }
  .page-hero__search-fallback .schema-field__control {
    border-right: 1px solid #d5dbe7;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .metrics { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .feature-row,
  .feature-row--reverse { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__icon { order: 0; }
  .feature-row h2 { font-size: 30px; }
  .sidebar { grid-template-columns: 1fr 1fr; }
  .site-footer {
    padding: 24px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer__links {
    justify-content: flex-start;
    font-size: 16px;
  }
  .site-footer__copyright {
    font-size: 16px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__badge {
    width: 180px;
  }
  .site-footer__login {
    min-width: 0;
    width: 100%;
    min-height: 56px;
    font-size: 20px;
  }
  .disclaimer-modal__dialog {
    width: 100%;
    padding: 20px 18px 18px;
  }
  .disclaimer-modal__dialog h2 {
    font-size: 28px;
  }
  .disclaimer-modal__dialog p {
    font-size: 16px;
  }
  .offer-filter__grid {
    grid-template-columns: 1fr;
    padding: 18px 16px 0;
    row-gap: 18px;
  }
  .offer-filter__grid .schema-field__label {
    font-size: 18px;
  }
  .offer-filter__grid .schema-field[data-schema-form-field="audience"] {
    padding-top: 0;
  }
  .schema-radio-group {
    gap: 14px;
  }
  .schema-radio__label {
    font-size: 18px;
  }
  .offer-filter__actions {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .offer-filter__actions .btn {
    width: 100%;
    min-width: 0;
    font-size: 20px;
  }
  .offer-results__count {
    font-size: 16px;
  }
  .offer-result-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0 24px;
  }
  .offer-result-item__date {
    align-items: flex-start;
    text-align: left;
  }
  .offer-result-item__day {
    font-size: 68px;
  }
  .offer-result-item__month {
    font-size: 22px;
  }
  .offer-result-item__title {
    font-size: 28px;
  }
  .offer-result-item__meta {
    gap: 14px;
  }
  .offer-result-item__meta-item {
    font-size: 16px;
  }
  .offer-result-item__actions {
    justify-content: flex-start;
  }
  .offer-result-item__button {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }
}

.preview-head h1 { margin-top: 0; }
.preview-grid { display: grid; gap: 20px; }
.preview-layout h2 { margin-top: 0; font-size: 22px; }
.preview-device {
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 14px;
  background: #f9fbfd;
  overflow: auto;
}
.preview-device--desktop { width: 100%; }
.preview-device--tablet { width: min(100%, 768px); }
.preview-device--mobile { width: min(100%, 360px); }
.preview-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.preview-admin { display: grid; grid-template-columns: 220px 1fr; gap: 14px; }

@media (max-width: 1279px) {
  .preview-admin { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .preview-columns { grid-template-columns: 1fr; }
}
