.cta-image-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-image-block .vads-l-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vads-spacing-4, 2rem);
  align-items: stretch;
}
.cta-image-block__row--reverse {
  flex-direction: row-reverse;
}
.cta-image-block__content-col, .cta-image-block__media-col {
  min-width: 0;
}
.cta-image-block va-card {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--vads-color-white, #ffffff);
}
.cta-image-block__content-col va-card {
  display: flex;
  flex-direction: column;
  height: fit-content;
  align-items: center;
  padding: 0;
}
.cta-image-block__media-col va-card {
  padding: 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-image-block__media-col va-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.cta-image-block__media-col .media--responsive img {
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  max-width: none;
}
.cta-image-block__media-col .media--remote-video-responsive,
.cta-image-block__media-col .media--type-remote-video {
  width: 100%;
  height: 100%;
  position: relative;
}
.cta-image-block__media-col .media__remote-video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.cta-image-block__media-col .media__remote-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 0;
}
.cta-image-block__media-col iframe[width],
.cta-image-block__media-col iframe[height] {
  width: 100% !important;
  height: 100% !important;
}
.cta-image-block__popup-cta {
  margin-top: var(--vads-spacing-4, 2rem);
}
.cta-image-block__popup-cta .vads-c-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: var(--vads-spacing-1p5, 1rem) var(--vads-spacing-4, 2rem);
  font-weight: var(--font-weight-bold, 700);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.cta-image-block__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vads-spacing-2, 1.5rem);
}
.cta-image-block__popup[style*="display: none"] {
  display: none !important;
}
.cta-image-block__popup .popup-content {
  background-color: var(--vads-color-white, #ffffff);
  border-radius: 4px;
  padding: var(--vads-spacing-5, 3rem);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

@media (max-width: 768px) {
  .cta-image-block .vads-l-row, .cta-image-block__row--reverse {
    flex-direction: column;
    gap: var(--vads-spacing-2, 1.5rem);
  }
  .cta-image-block__content-col, .cta-image-block__media-col {
    flex: none;
    width: 100%;
  }
  .cta-image-block__popup-cta .vads-c-action-link {
    width: 100%;
    text-align: center;
  }
}