/* ═══════════════════════════════════════════════════════════════════
   CTA-модалки (3 в одном): общая, вакансия, регион с фото города
   Подключается на каждой странице через <link rel="stylesheet">.
   Markup инжектится автоматически из assets/cta-modals.js.
   ═══════════════════════════════════════════════════════════════════ */

/* ───── Общие сбросы для всех 3 модалок ───── */
#gk-cta-modal *, #gk-cta-modal *::before, #gk-cta-modal *::after,
#gk-vacancy-modal *, #gk-vacancy-modal *::before, #gk-vacancy-modal *::after,
#gk-region-modal *, #gk-region-modal *::before, #gk-region-modal *::after { box-sizing: border-box; }
#gk-cta-modal[hidden], #gk-vacancy-modal[hidden], #gk-region-modal[hidden] { display: none !important; }

body.gk-modal-open, body.gk-vmodal-open, body.gk-rmodal-open { overflow: hidden; }

/* ───── Success-экран для форм страницы (cta-final, req-form и т.п.) ───── */
.gk-pf-success{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px; padding: 14px 0; color: inherit;
  font-family: 'Onest', system-ui, sans-serif;
  animation: gk-modal-fade .25s ease-out;
}
.gk-pf-success-ic{
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(40, 180, 120, .18); color: #2ECC71;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gk-pf-success-ic svg{ width: 26px; height: 26px; }
.gk-pf-success-title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 22px; margin: 0;
  text-transform: uppercase; letter-spacing: .005em;
  color: inherit;
}
.gk-pf-success-text{
  font-size: 14.5px; margin: 0; line-height: 1.5;
  color: inherit; opacity: .85;
}

@keyframes gk-modal-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes gk-modal-rise { from { opacity: 0; transform: translateY(20px) scale(.98) } to { opacity: 1; transform: none } }
@keyframes gk-vmodal-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 134, 255, .6) }
  50%      { box-shadow: 0 0 0 6px rgba(91, 134, 255, 0) }
}

/* ═══════════════════════════════════════════════════════════════════
   1. Общая CTA-модалка  (gk-modal__*)
   ═══════════════════════════════════════════════════════════════════ */
.gk-modal{
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: gk-modal-fade .2s ease-out;
}
.gk-modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(8, 16, 32, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gk-modal__panel{
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  background: #1a2738;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .6);
  color: #fff;
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  animation: gk-modal-rise .25s cubic-bezier(.16, 1, .3, 1);
}
.gk-modal__close{
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  z-index: 3; padding: 0;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.gk-modal__close:hover{ background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .35); }
.gk-modal__close svg{ width: 18px; height: 18px; }
.gk-modal__left{
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 22px;
  background:
    radial-gradient(circle at 0% 100%, rgba(23, 71, 181, .45), transparent 60%),
    linear-gradient(135deg, #1a2738, #0E1726);
  min-height: 0; overflow-y: auto;
}
.gk-modal__title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05; letter-spacing: .005em;
  text-transform: uppercase; color: #fff; margin: 0;
}
.gk-modal__sub{
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255, 255, 255, .65); margin: 0; font-weight: 400;
}
.gk-modal__form{ display: flex; flex-direction: column; gap: 14px; margin: 0; }
.gk-modal__form[hidden]{ display: none; }
.gk-modal__field{ display: block; }
.gk-modal__input{
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 18px 22px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px; font-weight: 500;
  color: #fff; outline: none;
  transition: border-color .15s, background .15s;
}
.gk-modal__input::placeholder{ color: rgba(255, 255, 255, .5); }
.gk-modal__input:focus{ border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .10); }
.gk-modal__input:invalid:not(:placeholder-shown){ border-color: rgba(215, 38, 61, .6); }
.gk-modal__submit{
  background: #D7263D; color: #fff; border: 0; cursor: pointer;
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase;
  padding: 18px 28px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 14px 28px -14px rgba(215, 38, 61, .5);
}
.gk-modal__submit:hover{ background: #B01C30; transform: translateY(-1px); }
.gk-modal__submit:active{ transform: translateY(0); }
.gk-modal__submit svg{ width: 18px; height: 18px; }
.gk-modal__consent{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.5;
  color: rgba(255, 255, 255, .65); cursor: pointer; margin: 0;
}
.gk-modal__consent input{
  width: 18px; height: 18px; flex-shrink: 0; margin: 1px 0 0;
  accent-color: #1747B5; cursor: pointer;
}
.gk-modal__consent a{
  color: rgba(255, 255, 255, .85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 2px;
}
.gk-modal__consent a:hover{ color: #fff; text-decoration-color: rgba(255, 255, 255, .8); }
.gk-modal__success{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; padding: 18px 0;
}
.gk-modal__success[hidden]{ display: none; }
.gk-modal__success-ic{
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(40, 180, 120, .15); color: #4ade80;
  display: inline-flex; align-items: center; justify-content: center;
}
.gk-modal__success-ic svg{ width: 28px; height: 28px; }
.gk-modal__success-title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 24px; color: #fff; margin: 0;
  text-transform: uppercase; letter-spacing: .005em;
}
.gk-modal__success-text{
  font-size: 14.5px; color: rgba(255, 255, 255, .65); margin: 0; line-height: 1.5;
}
.gk-modal__right{
  position: relative; overflow: hidden;
  background: #0E1726; min-height: 400px;
}
.gk-modal__photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 768px){
  .gk-modal{ padding: 0; align-items: stretch; }
  .gk-modal__panel{
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
    border-radius: 0;
    width: 100%; height: 100%; max-height: 100vh;
  }
  .gk-modal__right{ order: -1; min-height: 0; }
  .gk-modal__left{ padding: 32px 24px 28px; }
  .gk-modal__title{ font-size: 24px; }
  .gk-modal__sub{ font-size: 14px; }
  .gk-modal__submit{ font-size: 15px; padding: 16px 22px; }
  .gk-modal__close{ top: 12px; right: 12px; width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════
   2. Модалка вакансии  (gk-vmodal__*)
   ═══════════════════════════════════════════════════════════════════ */
.gk-vmodal{
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: gk-modal-fade .2s ease-out;
}
.gk-vmodal__backdrop{
  position: absolute; inset: 0;
  background: rgba(8, 16, 32, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gk-vmodal__panel{
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  background: #1a2738;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .6);
  color: #fff;
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  animation: gk-modal-rise .25s cubic-bezier(.16, 1, .3, 1);
}
.gk-vmodal__close{
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  z-index: 3; padding: 0;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.gk-vmodal__close:hover{ background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .35); }
.gk-vmodal__close svg{ width: 18px; height: 18px; }
.gk-vmodal__left{
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  background:
    radial-gradient(circle at 0% 100%, rgba(23, 71, 181, .45), transparent 60%),
    linear-gradient(135deg, #1a2738, #0E1726);
  min-height: 0; overflow-y: auto;
}
.gk-vmodal__badge{
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(23, 71, 181, .25);
  border: 1px solid rgba(96, 134, 220, .4);
  border-radius: 99px;
  font-size: 11.5px; font-weight: 700;
  color: #cfe0ff;
  letter-spacing: .04em; text-transform: uppercase;
}
.gk-vmodal__badge[hidden]{ display: none; }
.gk-vmodal__badge-dot{
  width: 7px; height: 7px; border-radius: 50%; background: #5b86ff;
  box-shadow: 0 0 0 0 rgba(91, 134, 255, .6);
  animation: gk-vmodal-pulse 2s infinite;
}
.gk-vmodal__title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05; letter-spacing: .005em;
  text-transform: uppercase; color: #fff; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.gk-vmodal__title-pre{ font-size: 15px; color: rgba(255, 255, 255, .55); font-weight: 600; letter-spacing: .04em; }
.gk-vmodal__title-main{ font-size: clamp(26px, 3vw, 34px); color: #fff; }
.gk-vmodal__sub{
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, .65); margin: 0; font-weight: 400;
}
.gk-vmodal__form{ display: flex; flex-direction: column; gap: 10px; margin: 6px 0 0; }
.gk-vmodal__form[hidden]{ display: none; }
.gk-vmodal__field{ display: block; }
.gk-vmodal__input{
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: 15px 18px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px; font-weight: 500;
  color: #fff; outline: none;
  transition: border-color .15s, background .15s;
}
.gk-vmodal__input::placeholder{ color: rgba(255, 255, 255, .5); }
.gk-vmodal__input:focus{ border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .10); }
.gk-vmodal__submit{
  background: #1747B5; color: #fff; border: 0; cursor: pointer;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 16px 24px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 14px 28px -14px rgba(23, 71, 181, .55);
  margin-top: 4px;
}
.gk-vmodal__submit:hover{ background: #0E327F; transform: translateY(-1px); }
.gk-vmodal__submit:active{ transform: translateY(0); }
.gk-vmodal__submit svg{ width: 16px; height: 16px; }
.gk-vmodal__consent{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; line-height: 1.5;
  color: rgba(255, 255, 255, .55); cursor: pointer; margin: 4px 0 0;
}
.gk-vmodal__consent input{
  width: 16px; height: 16px; flex-shrink: 0; margin: 1px 0 0;
  accent-color: #1747B5; cursor: pointer;
}
.gk-vmodal__consent a{
  color: rgba(255, 255, 255, .8);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .3);
  text-underline-offset: 2px;
}
.gk-vmodal__consent a:hover{ color: #fff; }
.gk-vmodal__success{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; padding: 8px 0;
}
.gk-vmodal__success[hidden]{ display: none; }
.gk-vmodal__success-ic{
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(40, 180, 120, .15); color: #4ade80;
  display: inline-flex; align-items: center; justify-content: center;
}
.gk-vmodal__success-ic svg{ width: 28px; height: 28px; }
.gk-vmodal__success-title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 24px; color: #fff; margin: 0;
  text-transform: uppercase; letter-spacing: .005em;
}
.gk-vmodal__success-text{
  font-size: 14px; color: rgba(255, 255, 255, .65); margin: 0; line-height: 1.55;
}
.gk-vmodal__success-text b{ color: #fff; font-weight: 700; }
.gk-vmodal__right{
  position: relative; overflow: hidden;
  background: #0E1726; min-height: 420px;
}
.gk-vmodal__photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 768px){
  .gk-vmodal{ padding: 0; align-items: stretch; }
  .gk-vmodal__panel{
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
    border-radius: 0;
    width: 100%; height: 100%; max-height: 100vh;
  }
  .gk-vmodal__right{ order: -1; min-height: 0; }
  .gk-vmodal__left{ padding: 28px 22px 24px; }
  .gk-vmodal__title-pre{ font-size: 13px; }
  .gk-vmodal__title-main{ font-size: 22px; }
  .gk-vmodal__submit{ font-size: 14.5px; padding: 14px 22px; }
  .gk-vmodal__close{ top: 12px; right: 12px; width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════
   3. Модалка региона с фото города  (gk-rmodal__*)
   ═══════════════════════════════════════════════════════════════════ */
.gk-rmodal{
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: gk-modal-fade .2s ease-out;
}
.gk-rmodal__backdrop{
  position: absolute; inset: 0;
  background: rgba(8, 16, 32, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gk-rmodal__panel{
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  background: #1a2738;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .6);
  color: #fff;
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  animation: gk-modal-rise .25s cubic-bezier(.16, 1, .3, 1);
}
.gk-rmodal__close{
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  z-index: 3; padding: 0;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.gk-rmodal__close:hover{ background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .35); }
.gk-rmodal__close svg{ width: 18px; height: 18px; }
.gk-rmodal__left{
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  background:
    radial-gradient(circle at 0% 100%, rgba(23, 71, 181, .45), transparent 60%),
    linear-gradient(135deg, #1a2738, #0E1726);
  min-height: 0; overflow-y: auto;
}
.gk-rmodal__eyebrow{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 11px;
  color: rgba(91, 134, 255, .9);
  letter-spacing: .12em; text-transform: uppercase;
}
.gk-rmodal__title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.1; letter-spacing: .005em;
  text-transform: uppercase; color: #fff; margin: 0;
}
.gk-rmodal__title [data-rg-title-out]{ color: #fff; }
.gk-rmodal__info{
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}
.gk-rmodal__info[hidden]{ display: none; }
.gk-rmodal__info-row{
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255, 255, 255, .75);
  text-decoration: none;
  line-height: 1.4;
}
.gk-rmodal__info-row[hidden]{ display: none; }
.gk-rmodal__info-row--link:hover{ color: #fff; }
.gk-rmodal__info-ic{
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(91, 134, 255, .15);
  color: #9eb5ff;
  display: inline-flex; align-items: center; justify-content: center;
}
.gk-rmodal__info-ic svg{ width: 14px; height: 14px; }
.gk-rmodal__form{ display: flex; flex-direction: column; gap: 10px; margin: 6px 0 0; }
.gk-rmodal__form[hidden]{ display: none; }
.gk-rmodal__field{ display: block; }
.gk-rmodal__input{
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px; font-weight: 500;
  color: #fff; outline: none;
  transition: border-color .15s, background .15s;
}
.gk-rmodal__input::placeholder{ color: rgba(255, 255, 255, .5); }
.gk-rmodal__input:focus{ border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .10); }
.gk-rmodal__submit{
  background: #1747B5; color: #fff; border: 0; cursor: pointer;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 16px 24px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 14px 28px -14px rgba(23, 71, 181, .55);
  margin-top: 4px;
}
.gk-rmodal__submit:hover{ background: #0E327F; transform: translateY(-1px); }
.gk-rmodal__submit:active{ transform: translateY(0); }
.gk-rmodal__submit svg{ width: 16px; height: 16px; }
.gk-rmodal__consent{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; line-height: 1.5;
  color: rgba(255, 255, 255, .55); cursor: pointer; margin: 4px 0 0;
}
.gk-rmodal__consent input{
  width: 16px; height: 16px; flex-shrink: 0; margin: 1px 0 0;
  accent-color: #1747B5; cursor: pointer;
}
.gk-rmodal__consent a{
  color: rgba(255, 255, 255, .8);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .3);
  text-underline-offset: 2px;
}
.gk-rmodal__consent a:hover{ color: #fff; }
.gk-rmodal__success{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; padding: 8px 0;
}
.gk-rmodal__success[hidden]{ display: none; }
.gk-rmodal__success-ic{
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(40, 180, 120, .15); color: #4ade80;
  display: inline-flex; align-items: center; justify-content: center;
}
.gk-rmodal__success-ic svg{ width: 28px; height: 28px; }
.gk-rmodal__success-title{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 24px; color: #fff; margin: 0;
  text-transform: uppercase; letter-spacing: .005em;
}
.gk-rmodal__success-text{
  font-size: 14px; color: rgba(255, 255, 255, .65); margin: 0; line-height: 1.55;
}
.gk-rmodal__success-text b{ color: #fff; font-weight: 700; }
.gk-rmodal__right{
  position: relative; overflow: hidden;
  background: #0E1726; min-height: 420px;
}
.gk-rmodal__photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gk-rmodal__photo-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,16,32,0) 50%, rgba(8,16,32,.65) 100%);
  pointer-events: none;
}
.gk-rmodal__photo-caption{
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.gk-rmodal__photo-caption[hidden]{ display: none; }
.gk-rmodal__photo-caption::before{
  content: ""; width: 3px; height: 24px; background: #D7263D; border-radius: 2px;
}
.gk-rmodal__photo-city{
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; font-size: 18px;
  letter-spacing: .04em; text-transform: uppercase;
}
@media (max-width: 768px){
  .gk-rmodal{ padding: 0; align-items: stretch; }
  .gk-rmodal__panel{
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
    border-radius: 0;
    width: 100%; height: 100%; max-height: 100vh;
  }
  .gk-rmodal__right{ order: -1; min-height: 0; }
  .gk-rmodal__left{ padding: 28px 22px 24px; }
  .gk-rmodal__title{ font-size: 22px; }
  .gk-rmodal__submit{ font-size: 14.5px; padding: 14px 22px; }
  .gk-rmodal__close{ top: 12px; right: 12px; width: 36px; height: 36px; }
  .gk-rmodal__photo-caption{ left: 16px; bottom: 12px; }
  .gk-rmodal__photo-city{ font-size: 14px; }
}
