/* ====== HERO ====== */
.vsl-ptproject-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .vsl-ptproject-hero { min-height: 360px; }
}
@media (max-width: 767px) {
  .vsl-ptproject-hero { min-height: 300px; }
}

.vsl-ptproject-hero__overlay {
  position: absolute;
  inset: 0;
  /* Stronger gradient to ensure readability on bright images */
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.75) 100%
  );
}

.vsl-ptproject-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 16px 34px;
  color: #fff;
}

.vsl-ptproject-hero__title {
  margin: 0;
  max-width: 820px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 54px;
}

@media (max-width: 991px) {
  .vsl-ptproject-hero__title { font-size: 44px; }
}
@media (max-width: 767px) {
  .vsl-ptproject-hero__inner { padding: 26px 16px 22px; }
  .vsl-ptproject-hero__title { font-size: 34px; line-height: 1.12; }
}

.vsl-ptproject-hero__subtitle {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* ====== BANNER ====== */
.vsl-ptproject-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #F9F9F9;
}

.vsl-ptproject-banner .vc_row {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.vsl-ptproject-banner__list {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.vsl-ptproject-banner__list li {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(0,0,0,0.78);
}

.vsl-ptproject-banner__list li strong {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

/* Make the banner read like "key facts" pills on large screens */
@media (min-width: 992px) {
  .vsl-ptproject-banner__list li {
    position: relative;
    padding-right: 18px;
  }
  .vsl-ptproject-banner__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(0,0,0,0.12);
  }
}

/* Actions (CTA + back link) */
.vsl-ptproject-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 0;
}

@media (max-width: 767px) {
  .vsl-ptproject-banner__actions {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 18px;
  }
}

/* Buttons */
.vsl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 120ms ease, opacity 120ms ease;
}

.vsl-btn:active { transform: translateY(1px); }

.vsl-btn--primary {
  background: #000;
  color: #fff;
}

.vsl-btn--primary:hover { opacity: 0.9; }

.vsl-btn--link {
  background: transparent;
  color: #000;
  border-color: rgba(0,0,0,0.18);
}

.vsl-btn--link:hover { opacity: 0.85; }

/* ====== BODY SPACING (small tweak so banner -> content feels like VSL) ====== */
.vsl-ptproject-body {
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 6px 36px;
}

.vsl-ptproject-body h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vsl-ptproject-body h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
}

.vsl-ptproject-body p {
  margin: 0 0 12px;
  color: rgba(0,0,0,0.78);
  font-size: 18px;
  line-height: 1.7;
}

.vsl-ptproject-banner__icon {
  margin-right: 6px;
  color: #009BE0;
  font-size: 15px;
  vertical-align: middle;
}

.vsl-ptproject-card__photo {
  width: 100%;
  margin: 16px 0 14px;
}

.vsl-ptproject-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* .vsl-ptproject-card__photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
} */

/* Contact block background */
.vsl-ptproject-card__contact-block {
  background-color: #FAFAFA;
  padding: 0 0 18px;
}

/* Ensure image spans full width */
.vsl-ptproject-card__photo {
  width: 100%;
  margin: 0;
}

.vsl-ptproject-card__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Inner content spacing */
.vsl-ptproject-card__content {
  padding: 18px 18px 0;
}

.vsl-signup-btn {
  text-align: right;
}

.vsl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 150ms ease;
}

.vsl-btn--primary {
  background-color: #009BE0;
}

.vsl-btn--primary:hover {
  background-color: #191A78;
}

.vsl-btn__icon {
  font-size: 13px;
  transition: transform 150ms ease;
}

.vsl-btn--primary:hover .vsl-btn__icon {
  transform: translateX(3px);
}

.vsl-btn--primary,
.vsl-btn--primary:hover,
.vsl-btn--primary:focus {
  color: #ffffff;
}

.vsl-btn--primary .vsl-btn__icon {
  color: #ffffff;
}

.vsl-signup-back-link {
  margin-top: 12px;
}