.module-welcome {
  --vsw-accent: #c29d04;      /* gold: eyebrow + accents */
  --vsw-dark: #2b2c2e;        /* headline/button dark */
  --vsw-border: #cccccc;      /* ad frame border */
  --vsw-text: #333333;
  position: relative;
  padding: 40px 0;           
}

.module-welcome .section-background,
.module-welcome .section-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.module-welcome .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.module-welcome img {
  width: 100%;
}

.module-welcome .flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* ---- Left: the two ad photos ---- */
.module-welcome .each-left {
  width: 30%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.module-welcome .each-left .photo {
  padding: 20px;
  border: 1px solid var(--vsw-border);
  background: #ffffff;
}

.module-welcome .each-left .photo a {
  display: block;
}

.module-welcome .each-left .photo img {
  display: block;
}

/* ---- Right: headline, group photos, copy, CTA ---- */
.module-welcome .each-right {
  width: 60%;
  max-width: 800px;
}

.module-welcome .headline h2 {
  font-size: 60px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--vsw-dark);
  margin: 0;
}

.module-welcome .headline h2 span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: var(--vsw-accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.module-welcome .headline h2 span.title-main {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  margin-bottom: 0;
}

.module-welcome .group-photo {
  margin: 30px 0 45px;
  display: flex;
  gap: 25px;
}

.module-welcome .text p {
  color: var(--vsw-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}



/* ---- Responsive (same steps as the VS original) ---- */
@media (max-width: 1680px) {
  .module-welcome .headline h2 { font-size: 52px; }
}
@media (max-width: 1280px) {
  .module-welcome .headline h2 { font-size: 48px; }
}
@media (max-width: 1024px) {
  .module-welcome .headline h2 { font-size: 42px; }
  .module-welcome .headline h2 span { font-size: 20px; }
  .module-welcome .each-right { width: 66%; }
}
@media (max-width: 620px) {
  .module-welcome .flex { flex-direction: column; }
  .module-welcome .each-left,
  .module-welcome .each-right { width: 100%; max-width: 100%; }
  .module-welcome .headline h2 { font-size: 36px; }
  .module-welcome .headline h2,
  .module-welcome .text { text-align: center; }
  .module-welcome .group-photo { gap: 10px; }
}

/* ---- Embedding fix: your target slot is a half-width column
   (col-lg-6), so on desktop the module gets ~600px, far less than
   it was designed for. This stacks it by CONTAINER width instead of
   viewport width, so it behaves inside the narrow column. ---- */
.image-wrapper {
  container-type: inline-size;
}
@container (max-width: 700px) {
  .module-welcome .flex { flex-direction: column; }
  .module-welcome .each-left,
  .module-welcome .each-right { width: 100%; max-width: 100%; }
  .module-welcome .headline h2 { font-size: 36px; }
}

