.two-column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.title.inline-richtext.h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-style: italic !important;
  font-size: 3.6rem !important;
}

.left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-column.text-align--left {
  align-items: flex-start;
  text-align: left;
}
.left-column.text-align--center {
  align-items: center;
  text-align: center;
}
.left-column.text-align--right {
  align-items: flex-end;
  text-align: left;
}

.left-column .rte {
  /* --- FONT SIZE UPDATED HERE --- */
  font-size: 1.4rem !important;
  line-height: 1.6;
  width: 100%;
}

.video-wrapper,
.video-placeholder {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  /* Mobile aspect ratio by default */
  padding-bottom: var(--aspect-ratio-mobile, 100%);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder .placeholder-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: auto;
  max-width: 80px;
}

/* On larger screens (tablet and up) */
@media screen and (min-width: 750px) {
  .two-column-grid {
    grid-template-columns: var(--column-split, 1fr 1fr);
  }

  .video-wrapper,
  .video-placeholder {
    /* Desktop aspect ratio for larger screens */
    padding-bottom: var(--aspect-ratio-desktop, 56.25%);
  }
}