/* =============================================
   GLOBAL SPONSOR HUB — Problem Statement
   ============================================= */

.gsh-problem-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
  border: 4px solid #000;
  background: #060d1f;
  box-shadow: 0 18px 48px rgba(230, 59, 59, 0.1);
}

.gsh-problem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gsh-problem-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 10, 28, 0.55) 0%,
    rgba(4, 10, 28, 0.22) 42%,
    rgba(4, 10, 28, 0.05) 100%
  );
  pointer-events: none;
}

.gsh-problem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  display: block;
}

.gsh-problem-layout {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gsh-problem-card {
  position: absolute;
  top: 48px;
  left: 48px;
  width: calc(50% - 64px);
  max-width: 470px;
  min-height: 228px;
  box-sizing: border-box;
  background: rgba(18, 24, 42, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 28px 24px 22px;
  pointer-events: auto;
}

.gsh-problem-card .sym-problem-text {
  max-width: none;
}

.gsh-problem-preview {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-46%);
  width: 42%;
  max-width: 400px;
  height: 228px;
  overflow: hidden;
  border-radius: 14px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  z-index: 3;
}

.gsh-problem-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.gsh-problem-logo {
  position: absolute;
  left: 48px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  pointer-events: none;
}

.gsh-problem-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 1024px) {
  .gsh-problem-panel {
    height: auto;
    min-height: 360px;
  }

  .gsh-problem-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 32px 96px;
    pointer-events: auto;
  }

  .gsh-problem-card {
    position: static;
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .gsh-problem-preview {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .gsh-problem-logo {
    left: 32px;
    bottom: 24px;
  }
}

@media (max-width: 768px) {
  .gsh-problem-layout {
    padding: 32px 24px 88px;
  }

  .gsh-problem-preview {
    height: 180px;
  }

  .gsh-problem-logo {
    left: 24px;
    font-size: 14px;
  }

  .gsh-problem-logo-icon {
    width: 28px;
    height: 28px;
  }
}

/* =============================================
   GLOBAL SPONSOR HUB — Website Screen Showcase
   ============================================= */

.gsh-screens {
  padding: 40px 0 64px;
  background: #ececec;
}

.gsh-screens-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  max-width: 880px;
  margin: 0 auto;
}

.gsh-screen-frame {
  border: 7px solid #000;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.gsh-screen-viewport {
  overflow: hidden;
  aspect-ratio: 580 / 410;
}

.gsh-screen-img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(var(--crop-y, 0));
}

.gsh-screen-img--hero {
  --crop-y: 0;
}

.gsh-screen-img--different {
  --crop-y: -14%;
}

.gsh-screen-img--mission {
  --crop-y: -30%;
}

.gsh-screen-img--jobs {
  --crop-y: -44%;
}

.gsh-screen-img--impact {
  --crop-y: -72%;
}

.gsh-screen-img--process {
  --crop-y: -56%;
}

@media (max-width: 900px) {
  .gsh-screens-grid {
    max-width: 640px;
    gap: 16px 18px;
  }

  .gsh-screen-frame {
    border-width: 6px;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .gsh-screens {
    padding: 32px 0 48px;
  }

  .gsh-screens-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 16px;
  }
}

/* =============================================
   GLOBAL SPONSOR HUB — Solution & Conclusion
   ============================================= */

.gsh-mockup-frame {
  border: 7px solid #000;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.gsh-mockup-viewport {
  overflow: hidden;
  aspect-ratio: 580 / 410;
}

.gsh-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(var(--crop-y, 0));
}

.gsh-mockup-img--solution {
  --crop-y: -30%;
}

.gsh-mockup-img--conclusion {
  --crop-y: -44%;
}

.gsh-solution-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.gsh-solution-glow {
  position: absolute;
  top: 6%;
  right: 8%;
  width: 260px;
  height: 260px;
  background: var(--red);
  opacity: 0.14;
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

.gsh-solution-visual .gsh-mockup-frame {
  width: 100%;
  max-width: 480px;
}

.gsh-conclusion .sym-dark-panel {
  align-items: center;
  overflow: hidden;
  padding-bottom: 0;
  min-height: 380px;
}

.gsh-conclusion-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  min-height: 280px;
  margin-bottom: -36px;
}

.gsh-conclusion-visual .gsh-mockup-frame {
  width: 100%;
  max-width: 420px;
  transform: translateY(-18px);
}

@media (max-width: 1024px) {
  .gsh-solution-visual .gsh-mockup-frame {
    max-width: 400px;
  }

  .gsh-conclusion-visual {
    margin-bottom: -24px;
  }

  .gsh-conclusion-visual .gsh-mockup-frame {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .gsh-solution-visual {
    min-height: 260px;
    margin-top: 12px;
  }

  .gsh-solution-visual .gsh-mockup-frame,
  .gsh-conclusion-visual .gsh-mockup-frame {
    max-width: 100%;
  }

  .gsh-conclusion .sym-dark-panel {
    padding-bottom: 0;
  }

  .gsh-conclusion-visual {
    margin-bottom: -16px;
    min-height: 220px;
  }

  .gsh-conclusion .sym-dark-copy {
    padding-bottom: 48px;
  }
}

/* =============================================
   SEA STAR — Problem Statement overrides
   ============================================= */

.seastar-problem-panel {
  background: #0a0a0a;
  box-shadow: 0 18px 48px rgba(230, 59, 59, 0.08);
}

.seastar-problem-panel .gsh-problem-bg img {
  object-position: left center;
}

.seastar-problem-panel .gsh-problem-bg::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

.seastar-problem-panel .gsh-problem-preview img {
  object-position: center top;
}

.seastar-problem-panel .gsh-problem-logo-icon {
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .seastar-problem-panel .gsh-problem-logo-icon {
    width: 28px;
    height: 28px;
  }
}

/* =============================================
   SEA STAR — screen crops (match GSH frame positions)
   ============================================= */

.seastar-gsh-screens .gsh-screen-viewport,
.seastar-gsh .gsh-mockup-viewport {
  position: relative;
}

.seastar-gsh-screens .gsh-screen-img,
.seastar-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.seastar-gsh-screens .gsh-screen-img--hero {
  object-position: center 0%;
}

.seastar-gsh-screens .gsh-screen-img--different {
  object-position: center 14%;
}

.seastar-gsh-screens .gsh-screen-img--mission {
  object-position: center 30%;
}

.seastar-gsh-screens .gsh-screen-img--jobs {
  object-position: center 44%;
}

.seastar-gsh-screens .gsh-screen-img--process {
  object-position: center 56%;
}

.seastar-gsh-screens .gsh-screen-img--impact {
  object-position: center 72%;
}

.seastar-gsh .gsh-mockup-img--solution {
  object-position: center 30%;
}

.seastar-gsh .gsh-mockup-img--conclusion {
  object-position: center 44%;
}

/* =============================================
   GIOVANNA DI MARTINO — sharp screen crops
   (tall screenshot — object-position, not translateY)
   ============================================= */

.giovanna-gsh-problem .gsh-problem-bg img {
  object-position: center 4%;
}

.giovanna-gsh-problem .gsh-problem-preview img {
  object-position: center 0%;
}

.giovanna-gsh-screens .gsh-screen-viewport,
.giovanna-gsh .gsh-mockup-viewport {
  position: relative;
}

.giovanna-gsh-screens .gsh-screen-img,
.giovanna-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.giovanna-gsh-screens .gsh-screen-img--hero {
  object-position: center 0%;
}

.giovanna-gsh-screens .gsh-screen-img--different {
  object-position: center 13%;
}

.giovanna-gsh-screens .gsh-screen-img--mission {
  object-position: center 26%;
}

.giovanna-gsh-screens .gsh-screen-img--jobs {
  object-position: center 39%;
}

.giovanna-gsh-screens .gsh-screen-img--process {
  object-position: center 53%;
}

.giovanna-gsh-screens .gsh-screen-img--impact {
  object-position: center 67%;
}

.giovanna-gsh .gsh-mockup-img--solution {
  object-position: center 53%;
}

.giovanna-gsh .gsh-mockup-img--conclusion {
  object-position: center 39%;
}

/* =============================================
   WEST AFRICAN OBSERVER — sharp screen crops
   (tall screenshot — object-position, not translateY)
   ============================================= */

.west-african-gsh-problem .gsh-problem-bg img {
  object-position: center 10%;
}

.west-african-gsh-problem .gsh-problem-preview img {
  object-position: center 12%;
}

.west-african-gsh-screens .gsh-screen-viewport,
.west-african-gsh .gsh-mockup-viewport {
  position: relative;
}

.west-african-gsh-screens .gsh-screen-img,
.west-african-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Hero — welcome banner */
.west-african-gsh-screens .gsh-screen-img--hero {
  object-position: center 12%;
}

/* Trending News — top stories */
.west-african-gsh-screens .gsh-screen-img--different {
  object-position: center 28%;
}

/* Trending News — Niger article & side cards */
.west-african-gsh-screens .gsh-screen-img--mission {
  object-position: center 38%;
}

/* Trending News — blog cards */
.west-african-gsh-screens .gsh-screen-img--jobs {
  object-position: center 48%;
}

/* Testimonials */
.west-african-gsh-screens .gsh-screen-img--process {
  object-position: center 66%;
}

/* Footer — newsletter & links */
.west-african-gsh-screens .gsh-screen-img--impact {
  object-position: center 88%;
}

.west-african-gsh .gsh-mockup-img--solution {
  object-position: center 42%;
}

.west-african-gsh .gsh-mockup-img--conclusion {
  object-position: center 66%;
}

/* =============================================
   LA HEALTH & SAFETY — sharp screen crops
   (tall screenshot — distinct section per frame)
   ============================================= */

.lahsc-gsh-problem .gsh-problem-bg img {
  object-position: center 4%;
}

.lahsc-gsh-problem .gsh-problem-preview img {
  object-position: center 8%;
}

.lahsc-gsh-screens .gsh-screen-viewport,
.lahsc-gsh .gsh-mockup-viewport {
  position: relative;
}

.lahsc-gsh-screens .gsh-screen-img,
.lahsc-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Hero — risk assessments headline */
.lahsc-gsh-screens .gsh-screen-img--hero {
  object-position: center 3%;
}

/* We take the hassle out of health and safety */
.lahsc-gsh-screens .gsh-screen-img--different {
  object-position: center 20%;
}

/* Professional Health & Safety Training */
.lahsc-gsh-screens .gsh-screen-img--mission {
  object-position: center 35%;
}

/* About Us — Your Safety Our Priority */
.lahsc-gsh-screens .gsh-screen-img--jobs {
  object-position: center 50%;
}

/* Our Health & Safety Consultancy Services */
.lahsc-gsh-screens .gsh-screen-img--impact {
  object-position: center 66%;
}

/* Footer — contact & links */
.lahsc-gsh-screens .gsh-screen-img--process {
  object-position: center 84%;
}

.lahsc-gsh .gsh-mockup-img--solution {
  object-position: center 35%;
}

.lahsc-gsh .gsh-mockup-img--conclusion {
  object-position: center 50%;
}

/* =============================================
   LYDLING FARM — sharp screen crops
   (tall screenshot — distinct section per frame)
   ============================================= */

.lydling-gsh-problem .gsh-problem-bg img {
  object-position: center 0%;
}

.lydling-gsh-problem .gsh-problem-preview img {
  object-position: center 0%;
}

.lydling-gsh-screens .gsh-screen-viewport,
.lydling-gsh .gsh-mockup-viewport {
  position: relative;
}

.lydling-gsh-screens .gsh-screen-img,
.lydling-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Hero — navbar and welcome banner only */
.lydling-gsh-screens .gsh-screen-img--hero {
  object-position: center 0%;
}

/* About The Farm */
.lydling-gsh-screens .gsh-screen-img--different {
  object-position: center 18%;
}

/* Our History timeline */
.lydling-gsh-screens .gsh-screen-img--mission {
  object-position: center 32%;
}

/* Our Herd & Herd Health */
.lydling-gsh-screens .gsh-screen-img--jobs {
  object-position: center 48%;
}

/* Venue For Hire */
.lydling-gsh-screens .gsh-screen-img--impact {
  object-position: center 62%;
}

/* Footer */
.lydling-gsh-screens .gsh-screen-img--process {
  object-position: center 84%;
}

.lydling-gsh .gsh-mockup-img--solution {
  object-position: center 32%;
}

.lydling-gsh .gsh-mockup-img--conclusion {
  object-position: center 48%;
}

/* =============================================
   JVC CLEANING — sharp screen crops
   (tall screenshot — distinct section per frame)
   ============================================= */

.jvc-gsh-problem .gsh-problem-bg img {
  object-position: center 0%;
}

.jvc-gsh-problem .gsh-problem-preview img {
  object-position: center 0%;
}

.jvc-gsh-screens .gsh-screen-viewport,
.jvc-gsh .gsh-mockup-viewport {
  position: relative;
}

.jvc-gsh-screens .gsh-screen-img,
.jvc-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Hero — cleaning services with excellence */
.jvc-gsh-screens .gsh-screen-img--hero {
  object-position: center 3%;
}

/* How JVC Cleaning Works */
.jvc-gsh-screens .gsh-screen-img--different {
  object-position: center 18%;
}

/* About JVC Cleaning */
.jvc-gsh-screens .gsh-screen-img--mission {
  object-position: center 32%;
}

/* Appointment Booking */
.jvc-gsh-screens .gsh-screen-img--jobs {
  object-position: center 48%;
}

/* Expert Team */
.jvc-gsh-screens .gsh-screen-img--impact {
  object-position: center 62%;
}

/* Footer call to action */
.jvc-gsh-screens .gsh-screen-img--process {
  object-position: center 84%;
}

.jvc-gsh .gsh-mockup-img--solution {
  object-position: center 32%;
}

.jvc-gsh .gsh-mockup-img--conclusion {
  object-position: center 48%;
}

/* =============================================
   KIM B THERAPY — sharp screen crops
   (tall screenshot — distinct section per frame)
   ============================================= */

.kim-b-gsh-problem .gsh-problem-bg img {
  object-position: center 0%;
}

.kim-b-gsh-problem .gsh-problem-preview img {
  object-position: center 0%;
}

.kim-b-gsh-screens .gsh-screen-viewport,
.kim-b-gsh .gsh-mockup-viewport {
  position: relative;
}

.kim-b-gsh-screens .gsh-screen-img,
.kim-b-gsh .gsh-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Hero — peace and freedom welcome */
.kim-b-gsh-screens .gsh-screen-img--hero {
  object-position: center 3%;
}

/* Service highlights */
.kim-b-gsh-screens .gsh-screen-img--different {
  object-position: center 18%;
}

/* About Kim */
.kim-b-gsh-screens .gsh-screen-img--mission {
  object-position: center 32%;
}

/* Our Services */
.kim-b-gsh-screens .gsh-screen-img--jobs {
  object-position: center 48%;
}

/* Contact section */
.kim-b-gsh-screens .gsh-screen-img--impact {
  object-position: center 62%;
}

/* Footer */
.kim-b-gsh-screens .gsh-screen-img--process {
  object-position: center 84%;
}

.kim-b-gsh .gsh-mockup-img--solution {
  object-position: center 32%;
}

.kim-b-gsh .gsh-mockup-img--conclusion {
  object-position: center 48%;
}
