.utm-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: utmPopupFadeIn 0.2s ease-out;
}

.utm-popup-card {
  position: relative;
  background: #121e23;
  max-width: 800px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  animation: utmPopupScaleIn 0.25s ease-out;
}

@media (min-width: 601px) {
  .utm-popup-card {
    aspect-ratio: 8 / 6;
  }
}

.utm-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
}

.utm-popup-close:hover {
  opacity: 1;
}

.utm-popup-eyebrow {
  font-family: 'Normalidad Wide', sans-serif;
  font-size: 18px;
  letter-spacing: 3.24px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px;
}

.utm-popup-title {
  font-family: 'SuperiorTitle-LightItalic', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.88px;
  color: #fff;
  margin: 0 0 24px;
}

.utm-popup-subhead {
  font-family: 'Normalidad Wide', sans-serif;
  font-size: 18px;
  letter-spacing: 3.24px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}

.utm-popup-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 24px;
}

.utm-popup-email {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

.utm-popup-email:hover {
  color: #0275b3;
}

.utm-popup-photo-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 4px;
}

.utm-popup-photo-wrap::after {
  content: '';
  position: absolute;
  left: 30px;
  right: -14px;
  bottom: -14px;
  top: 15px;
  background: #0275b3;
  z-index: 0;
}

.utm-popup-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

@keyframes utmPopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes utmPopupScaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .utm-popup-overlay {
    padding: 12px;
  }

  .utm-popup-card {
    padding: 28px 20px;
  }

  .utm-popup-eyebrow,
  .utm-popup-subhead {
    font-size: 14px;
    letter-spacing: 2.5px;
  }

  .utm-popup-title {
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .utm-popup-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .utm-popup-photo-wrap::after {
    left: 16px;
    right: -8px;
    bottom: -8px;
    top: 8px;
  }

  .utm-popup-photo {
    height: 200px;
  }
}
