@media screen and (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0F253D;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    z-index: 1000;
  }

  .sticky-cta a {
    color: #fff;
    text-decoration: none;
  }
}
/* Remove underline from all links site-wide */
a {
  text-decoration: none !important;
}

/* Optional: add a subtle hover effect instead of underline */
a:hover,
a:focus {
  text-decoration: none;
  opacity: 0.85;  /* or try color change instead */
}

/* If you use buttons styled as links, this ensures they stay clean */
.wp-element-button a,
.wp-block-button__link {
  text-decoration: none !important;
}
a {
  text-decoration: none;
  color: #59AECD; /* Bus Blue */
}

a:hover,
a:focus {
  opacity: 0.85;
  text-decoration: none;
}

/* Optional: make tapped links briefly fade on mobile */
a:active {
  opacity: 0.7;
}
/* Minimal, clean Bus quote style */
.bus-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cfd8dc; /* soft text color */
  border-left: 3px solid #59AECD; /* Bus Blue accent */
  padding-left: 16px;
  margin: 24px auto;
  max-width: 620px;
}

.bus-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.95rem;
  color: #9fb6c5; /* subtle contrast */
}
/* Target the VideoPress block when set to full alignment */
.wp-block-videopress-video.alignfull {
    /* Ensure the container itself has no max width restriction */
    max-width: 100% !important; 
    /* Force left/right margins to 0 to prevent padding pushing it inward */
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* This targets the iframe inside the full-width block to make it fully responsive */
.wp-block-videopress-video.alignfull iframe {
    /* Override the fixed width/height attributes for responsiveness */
    width: 100% !important;
    height: 100% !important;
    /* Ensure no margins or padding are pushing it off-center */
    margin: 0 !important;
    padding: 0 !important;
}

/* Specific fix for smaller mobile screens (if the above doesn't work) */
@media (max-width: 782px) {
    .wp-block-videopress-video.alignfull {
        /* On small screens, ensure the container takes 100% width and is positioned correctly */
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
}