/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* =========================================================
   GENERALES Y PRELOADER
   ========================================================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

#preloader-inicio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#preloader-inicio.oculto {
  opacity: 0;
  pointer-events: none;
}

#preloader-inicio img {
  width: 180px;
  max-width: 90%;
  animation: parpadeo 2s ease-in-out infinite;
}

@keyframes parpadeo {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* =========================================================
   SECCIÓN INICIO 02 — PROMO CARD
   ========================================================= */
.promo-card {
  position: relative;
  width: 300px !important;
  height: 420px !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px #0000002e;
  isolation: isolate;
  background: #0b3e57;
}

.promo-card--rounded {
  border-radius: 22px;
}

.promo-card__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.promo-card__background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.promo-card__overlay {
  position: absolute;
  inset: 0;
  background: #0a4e73d9;
  mix-blend-mode: multiply;
}

.promo-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.promo-card__title {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: calc(100% - 2 * 12px);
  padding: 0 12px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 8px #00000059;
}

.promo-card__figure {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  margin: 0;
  width: 80%;
  pointer-events: none;
}

.promo-card__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 0 #fff)
    drop-shadow(0 0 12px #ffffffa6);
}

.promo-card__cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 10px 18px;
  background: #ff7a28;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 6px 16px #00000040;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.promo-card__cta:hover {
  background: #ff8f4b;
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 8px 20px #00000047;
}

.promo-card__cta:active {
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 360px) {
  .promo-card {
    width: 280px;
    height: 360px;
  }
  .promo-card__title {
    font-size: 18px;
    top: 20px;
  }
}

@media (max-width: 240px) {
  .promo-card {
    width: 220px;
    height: 300px;
  }
  .promo-card__title {
    font-size: 15px;
  }
  .promo-card__figure {
    width: 84%;
    bottom: 40px;
  }
}

/* =========================================================
   SECCIÓN INICIO 04 — INFO PANELS
   ========================================================= */
.info-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.info-panels--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-panel {
  position: relative;
  background: #fff;
  color: #383838;
  border: 1px solid #d6dadd;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px #0000000a;
  margin: 1rem;
}

.info-panel__header {
  background: #0a4e73;
  color: #fff;
  padding: 16px 40px;
  border-bottom: 1px solid #d6dadd;
}

.info-panel__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.info-panel__body {
  padding: 15px 40px calc(15px + 6px);
}

.info-panel__text {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.55;
  color: #383838;
}

.info-panel__list {
  margin: 0;
  padding-left: 1.2rem;
}

.info-panel__list--bulleted {
  list-style: disc;
}

.info-panel__item {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.55;
  color: #383838;
}

.info-panel__item::marker {
  color: #0a4e73;
  font-weight: 700;
}

.info-panel__highlight {
  font-weight: 800;
  color: #383838;
}

@media (min-width: 1200px) {
  .info-panel__title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .info-panels--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .info-panel__header {
    padding: 2rem 1rem;
  }
  .info-panel__title {
    font-size: 22px;
  }
  .info-panel__body {
    padding: 15px 18px calc(15px + 6px);
  }
  .info-panel__text {
    font-size: 15px;
  }
  .info-panel__item {
    font-size: 15px;
  }
}

/* =========================================================
   SECCIÓN INICIO 05 — SURVEY HERO
   ========================================================= */
.survey-hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 22px #0000002e;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0a4e73;
  isolation: isolate;
}

.survey-hero--rounded {
  border-radius: 26px;
}

.survey-hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.survey-hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.survey-hero__overlay {
  position: absolute;
  inset: 0;
  background: #0a4e73d9;
  mix-blend-mode: multiply;
}

.survey-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(22px + 0px) 28px 22px;
  color: #fff;
}

.survey-hero__body {
  margin: 0 auto;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: center;
}

.survey-hero__badge {
  width: 70%;
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 20px;
  background: #ff7a28;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  box-shadow: 0 6px 16px #00000040;
}

.survey-hero__badge-strong {
  font-weight: 900;
}

.survey-hero__badge:hover {
  background: #ff8f4b;
}

.survey-hero__figure {
  position: relative;
  margin: 0;
  align-self: end;
}

.survey-hero__image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 0 #fff)
    drop-shadow(0 0 14px #ffffffa6);
  transform: translateY(6px);
}

.survey-hero__copy {
  text-align: center;
  padding: 8px 0 14px;
}

.survey-hero__text {
  margin: 18px auto;
  max-width: 720px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.55;
}

.survey-hero__names {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.survey-hero__name {
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 2px 6px #00000059;
}

@media (max-width: 1024px) {
  .survey-hero__body {
    grid-template-columns: 360px 1fr;
  }
  .survey-hero__badge {
    font-size: 20px;
    padding: 9px 18px;
  }
}

@media (max-width: 820px) {
  .survey-hero__content {
    padding: calc(22px + 64px) 28px 22px;
  }
  .survey-hero__body {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }
  .survey-hero__figure {
    max-width: 340px;
  }
  .survey-hero__copy {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .survey-hero__badge {
    font-size: 18px;
    top: 14px;
  }
  .survey-hero__text {
    font-size: 15px;
  }
  .survey-hero__name {
    font-size: 18px;
  }
}

/* =========================================================
   SECCIÓN INICIO 06 — SURVEY POINTS
   ========================================================= */
.survey-points {
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #383838;
}

.survey-points__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

.survey-points__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.survey-points__list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.survey-points__item {
  position: relative;
  padding-left: 1.2rem;
  font-size: 16px;
  line-height: 1.55;
}

.survey-points__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
  line-height: 1;
  font-size: 1.1em;
  color: #383838;
  font-weight: 700;
}

@media (max-width: 720px) {
  .survey-points__list--two {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* =========================================================
   SECCIÓN INICIO 07 — CALLOUT
   ========================================================= */
.callout-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px #0000000a;
  overflow: hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.callout-box--rounded {
  border-radius: calc(18px + 2px);
}

.callout-box--bordered {
  border: 1px solid #d6dadd;
}

.callout-box__aside {
  background: #ff7a28;
  color: #fff;
  display: grid;
  place-items: center;
  padding: 16px 14px;
}

.callout-box__title {
  margin: 0;
  text-align: center;
  font-weight: 900;
  line-height: 1.02;
  font-size: 44px;
}

.callout-box__title-line {
  display: block;
}

.callout-box__content {
  padding: 18px 24px;
  color: #383838;
}

.callout-box__text {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height: 1.55;
  color: #383838;
}

.callout-box__text--emphasis {
  margin-top: 6px;
  font-weight: 800;
  color: #383838;
}

@media (max-width: 920px) {
  .callout-box {
    grid-template-columns: 220px 1fr;
  }
  .callout-box__title {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .callout-box {
    grid-template-columns: 1fr;
  }
  .callout-box__aside {
    padding: 14px 18px;
  }
  .callout-box__title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .callout-box__title {
    font-size: 30px;
  }
  .callout-box__content {
    padding: 16px 18px;
  }
}

/* =========================================================
   SECCIÓN INICIO 08 — CREDITS / PARTNERS
   ========================================================= */
.credits {
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #383838;
}

.credits__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  list-style: none;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1366px;
  align-items: start;
}

.credits__list--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credits__item {
  text-align: center;
}

.credits__logo--container-simple {
  display: flex;
}

.credits__logo--container-doble {
  display: inline-flex;
}

.credits__logo {
  display: block;
  margin: 0 auto 1.2rem;
  max-height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.credits__logo.doble {
  display: block;
  margin: 0 auto 1.2rem;
  max-height: 50px;
  width: auto;
  max-width: 50%;
  padding: 0 0.5rem;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.credits__text {
  margin: 0 auto;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.45;
  color: #383838;
}

.credits__lead {
  font-weight: 800;
  color: #383838;
}

.credits__em {
  font-weight: 800;
  color: #1b2f38;
}

@media (max-width: 1024px) {
  .credits {
    gap: 50px;
  }
  .credits__logo {
    max-height: 35px;
  }
  .credits__list--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .credits {
    gap: 30px;
  }
  .credits__logo {
    max-height: 30px;
  }
  .credits__list--three {
    grid-template-columns: 1fr;
  }
  .credits__text {
    max-width: 460px;
  }
}

/* =========================================================
   SECCIÓN INICIO 09 — CTA LINK
   ========================================================= */
.cta-link-group {
  text-align: center;
}

.cta-link-group--alternativo {
  text-align: center;
  margin: 0 2rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 26px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-decoration: none;
  line-height: 1;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #ff7a28;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px #00000040;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-link--alternativo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 26px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-decoration: none;
  line-height: 1;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #ff7a28;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px #00000040;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-link--pill {
  border-radius: 999px;
}

.cta-link--pill--alternativo {
  border-radius: 999px;
}

.cta-link--center {
  margin-inline: auto;
  display: flex;
}

.cta-link--xl {
  font-size: 20px;
  padding: 14px 34px;
}

.cta-link--success {
  background: #10c90f;
  color: #fff;
  box-shadow: 0 8px 18px #00000040;
}

.cta-link--success:hover {
  background: #0fb10e;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px #00000047;
}

.cta-link--success:active {
  transform: translateY(0);
}

.cta-link--success--alternativo {
  background: #ff7a28;
  color: #fff;
  box-shadow: 0 8px 18px #00000040;
}

.cta-link--success--alternativo:hover {
  background: #ff7a28;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px #00000047;
}

.cta-link--success--alternativo:active {
  transform: translateY(0);
}

.cta-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .cta-link--xl {
    font-size: 18px;
    padding: 12px 26px;
  }
}

/* =========================================================
   SECCIÓN INICIO 10 — EDGE TITLE
   ========================================================= */
.edge-title {
  position: relative;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0 0 10px 0;
}

.edge-title--viewport-left {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}

.edge-title--brand .edge-title__label {
  background: #0a4e73;
  color: #fff;
}

.edge-title__label {
  width: 300px;
  display: inline-block;
  background: #0a4e73;
  color: #fff;
  padding: 10px 22px;
  border-radius: 0 14px 14px 0;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1;
  box-shadow: 0 6px 16px #0000001f;
  transform: translateZ(0);
}

@media (max-width: 520px) {
  .edge-title__label {
    font-size: 30px;
    padding: 10px 18px;
    border-radius: 0 12px 12px 0;
  }
}

/* =========================================================
   SECCIÓN INICIO 11 — CONTACTS GRID
   ========================================================= */
.contacts {
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #383838;
}

.contacts__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  list-style: none;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.contacts__list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contacts__item {
  text-align: -webkit-center;
}

.contacts__logo {
  display: block;
  margin: 0 0 10px 0;
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.contacts__info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.contacts__info-line {
  font-size: 16px;
  line-height: 1.45;
  color: #383838;
}

.contacts__label {
  font-weight: 800;
  margin-right: 6px;
}

.contacts__link {
  color: #1c56a6;
  text-decoration: none;
  font-weight: 400;
}

.contacts__link:hover {
  color: #0f4591;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .contacts__list {
    gap: 40px;
  }
  .contacts__logo {
    max-height: 52px;
  }
}

@media (max-width: 900px) {
  .contacts__list--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .contacts__list {
    gap: 28px;
  }
  .contacts__logo {
    max-height: 30px;
  }
  .contacts__list--two {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECCIÓN INICIO 12 — SITE CREDIT
   ========================================================= */
.site-credit {
  width: 100%;
  text-align: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #383838;
}

.site-credit__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.site-credit__prefix {
  font-size: 14px;
  color: #383838;
  font-weight: 400;
  white-space: nowrap;
}

.site-credit__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.site-credit__logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.site-credit__tagline {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #9aa7b3;
}

.site-credit__logo-text {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  .site-credit__prefix {
    font-size: 13px;
  }
  .site-credit__logo {
    height: 24px;
  }
  .site-credit__tagline {
    font-size: 10px;
  }
}

/* =========================================================
   SECCIÓN INICIO 13 — QR SECTION
   ========================================================= */
.qr-section {
  padding: 2rem 1rem;
  text-align: center;
}

.qr-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-items: center;
}

.qr-section__list-alt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-items: center;
}
.qr-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-section__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.qr-section__image {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.qr-section__text {
  margin: 0;
}

.qr-section__link {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
}

.qr-section__link:hover {
  text-decoration: underline;
}

@media (min-width: 500px) {
  .qr-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .qr-section__list-alt {
    grid-template-columns: repeat(1, 1fr);
  }    
}

/* =========================================================
   SECCIÓN MODALES
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: #071f2c99;
}

.modal__dialog {
  position: relative;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #fff;
  border: 1px solid #d6dadd;
  border-radius: 18px;
  box-shadow: 0 16px 50px #00000059;
  padding: 2rem 3rem 4rem 3rem;
  animation: modal-in 0.18s ease both;
}

@keyframes modal-in {
  from {
    transform: translateY(6px) scale(0.985);
    opacity: 0.98;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal__header {
  margin: 6px 0 14px;
}

.modal__title {
  display: inline-block;
  background: #0a4e73;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  box-shadow: 0 6px 16px #0000001f;
}

.modal__body {
  display: block;
}

.modal__body--two-col {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 20px;
  align-items: start;
}

.modal__body--img-right {
  grid-template-columns: 1fr 360px;
}

.modal__figure {
  margin: 0;
}

.modal__figure--rounded img {
  border-radius: 20px;
}

.modal__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 0 #fff)
    drop-shadow(0 0 14px #ffffffa6);
}

.modal__content {
  color: #383838;
}

.modal__text {
  margin: 0 0 12px 0;
  color: #383838;
  font-size: 16px;
  line-height: 1.55;
}

.modal__list {
  margin: 0 0 8px 1.1rem;
  padding: 0;
}

.modal__item {
  margin: 6px 0;
}

.modal__item::marker {
  color: #0a4e73;
  font-weight: 800;
}

.modal__notice {
  margin-top: 10px;
  background: #0a4e73;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
}

.modal__close {
  position: sticky;
  top: 6px;
  float: right;
  margin-left: auto;
  border: 0;
  background: #ffffff;
  color: #23313a;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
}

.modal__close:hover {
  background: #ffffff;
  color: #23313a;
}

.modal__names {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
  display: grid;
  gap: 10px;
}

.modal__names-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f7f9fb;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) inset;
}

.modal__names-col {
  font-size: 16px;
  line-height: 1.4;
  color: var(--body-text, #24323a);
  word-break: break-word;
}

.modal__names-col--a {
  font-weight: 800;
}

.modal__names-col--b {
  color: var(--muted-text, #4a5963);
}

.modal__names-col--c {
  color: var(--muted-text, #4a5963);
}

.modal__names li::marker {
  content: "";
}

@media (max-width: 560px) {
  .modal__names-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }
  .modal__names-col--a {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .modal__body--two-col,
  .modal__body--img-right {
    grid-template-columns: 1fr;
  }
  .modal__title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .modal__dialog {
    padding: 1.5rem 2rem 2rem 1.5rem;
  }
  .modal__title {
    font-size: 18px;
  }
}