/* ══════════════════════════════════════════
   VIDEO FEATURE MODULE
   Content left, video still + buttons right.
   Flexbox only, no gap (margins/padding),
   mobile breakpoint at 767px.
   ══════════════════════════════════════════ */

.vf-section {
  --navy: #09476E;
  --blue: #0096D6;
  --gold: #C5960C;
  --lgray: #c5c5c5;
  font-family: "Galano Grotesque", Sans-Serif;
  width: 100%;
  box-sizing: border-box;
}

.imgt-module--outer-section{
  padding: 15px 0 60px;
}

.imgt-module--outer-section a:not(.vf-btn):not(.vf-still),
.imgt-module--outer-section a:not(.vf-btn):not(.vf-still) > span {
  font-family: "Galano Grotesque Bold", Sans-Serif;
  color: #0096d6 !important;
}

.vf-section * {
  box-sizing: border-box;
}

.vf-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1107px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container,
  .vf-wrap {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container,
  .vf-wrap {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container,
  .vf-wrap {
    width: 1107px;
  }
}

/* ---- Content column ---- */

.vf-content {
  flex: 0 0 66%;
  max-width: 66%;
  padding-right: 32px;
}

.vf-content h3.section-title {
  font-family: 'Galano Grotesque Bold ', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 20px 0;
}

.vf-body p {
  margin: 0 0 18px 0;
}

.vf-body p:last-child {
  margin-bottom: 0;
}
.vf-body a{
font-family: "Galano Grotesque Bold", Sans-Serif;
    color: var(--blue) !important;
}
/* ---- Media column ---- */

.vf-media {
  flex: 0 0 34%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}
.vf-still {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  margin: 0 0 16px 0;
}
.vf-still.vf-is-video {
  background-color: #f4f4f4;
  border: 1px solid #d9d9d9;
}

.vf-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}
.vf-still.vf-is-video .vf-image {
  background-size: cover;
    width: 100%;
}
.partner-logo-image-section .vf-image,
.vf-still.vf-is-image .vf-image{
  background-size:contain;
  width: 85%;
}
.vf-is-video {
  cursor: pointer;
}

/* Play icon overlay — hidden until hover/focus */

.vf-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 71, 110, 0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.vf-is-video:hover .vf-play-overlay,
.vf-is-video:focus-visible .vf-play-overlay,
.vf-is-video.vf-touch-active .vf-play-overlay {
  opacity: 1;
  background: rgba(9, 71, 110, 0.35);
}

.vf-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  transform: scale(0.9);
  transition: transform 0.25s ease;
}

.vf-is-video:hover .vf-play-btn,
.vf-is-video:focus-visible .vf-play-btn {
  transform: scale(1);
}

.vf-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px; /* optical centering of triangle */
}

/* ---- Buttons ---- */

.vf-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.vf-section .vf-wrap .vf-btn > span {
  color: #ffffff !important;
  font-family: "Galano Grotesque Bold", Sans-Serif;

  padding: 14px 20px 18px;
  margin: 0 !important;
}

.vf-btn-primary {
  background: var(--navy);
  color: #ffffff !important;
  text-decoration: none !important;
}
.vf-btn-primary:hover{
  text-decoration: none !important; 
}

.vf-btn-primary .vf-btn-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.vf-btn-primary:hover {
  background: #073a5a;
}

.vf-btn-secondary {
  background: var(--blue);
  color: #ffffff;
}

.vf-btn-secondary:hover {
  background: #0080b8;
}

/* ---- Mobile ---- */

@media (max-width: 767px) {
  .vf-wrap {
    flex-direction: column;
  }

  .vf-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 28px;
  }

  .vf-content h3.section-title {
    font-size: 26px;
  }

  .vf-media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .vf-btn {
    max-width: 100%;
  }
}
