/*-----------------------------------------------------------------
  GSA — Global Sustainability Alliance custom overrides
  Applied on top of SolarGen template (main.css)
-----------------------------------------------------------------*/

/* Typography — sans-serif throughout.
   main.css sets --font-default to "Lora" (a serif) and gives the two sans
   families a `serif` fallback, so headings, counters and widget titles
   rendered as serif. All three are re-pointed at the sans stack. */
:root {
  --font-sans: "Plus Jakarta Sans", "Albert Sans", system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Albert Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-heading: var(--font-sans);
  --font-default: var(--font-sans);
}

/* Body copy should not be force-capitalised */
body {
  text-transform: none;
}

/* Header / footer logo sizing (PNG logos replace template SVGs) */
.header-logo img {
  max-height: 64px;
  width: auto;
}
.xb-logo-mobile img {
  max-height: 52px;
  width: auto;
}
.xb-newsletter .xb-item--logo img {
  max-height: 70px;
  width: auto;
}

/* GSA hero (KV split layout) */
.gsa-hero {
  background-color: #05181e;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.gsa-hero .gsa-hero-globe {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 53%;
  background-image: url(../img/gsa-brand/kv-globe.jpg);
  background-size: cover;
  background-position: center right;
}
/* The single-line headline now runs across the globe, so the scrim reaches
   further right to keep the type legible over the artwork. */
.gsa-hero .gsa-hero-globe:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05181e 0%, rgba(5, 24, 30, 0.88) 34%, rgba(5, 24, 30, 0.34) 62%, rgba(5, 24, 30, 0) 84%);
}
.gsa-hero .container {
  position: relative;
  z-index: 2;
}
.gsa-hero .xb-hero_content {
  max-width: 100%;
  padding: 140px 0 120px;
}
.gsa-hero .gsa-hero-logo img {
  max-height: 110px;
  width: auto;
  margin-bottom: 38px;
}
.gsa-hero .xb-title {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.gsa-hero .xb-title span {
  color: var(--color-primary);
}
.gsa-hero .gsa-hero-sub {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 24px;
  max-width: 540px;
}
.gsa-spectrum-bar {
  height: 6px;
  width: 220px;
  margin-top: 30px;
  background: linear-gradient(90deg, #4c9a2a 0%, #a8b820 25%, #e8b21e 50%, #2c8fc9 75%, #cb1217 100%);
  border-radius: 3px;
}
@media (max-width: 991px) {
  .gsa-hero {
    min-height: 620px;
  }
  .gsa-hero .gsa-hero-globe {
    width: 100%;
    opacity: 0.28;
  }
}

/* The template's .xb-wcu yellow panel uses margin-top:-193px to overlap the
   hero it sits directly beneath. GSA reuses the block further down the page,
   where that negative offset clips the preceding section. */
.xb-wcu.gsa-wcu-flow {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .xb-wcu.gsa-wcu-flow {
    margin-top: 30px;
  }
}

/* Partner / member logo wall */
.gsa-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.gsa-logo-grid .gsa-logo-cell {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  min-height: 110px;
  transition: 0.3s;
}
.gsa-logo-grid .gsa-logo-cell:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.gsa-logo-grid .gsa-logo-cell img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .gsa-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .gsa-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* People (leaders) grid cards.
   Bios vary a lot in length, so cards are equal-height and bottom-aligned
   to keep every row on a clean baseline. */
.gsa-person-grid {
  align-items: stretch;
}
.gsa-person-grid > [class*="col-"] {
  display: flex;
}
.gsa-person-item {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.gsa-person-item p {
  flex: 1 1 auto;
}
.gsa-person-item .image {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f4f4;
}
.gsa-person-item .image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  transition: 0.4s;
}
.gsa-person-item:hover .image img {
  transform: scale(1.04);
}
.gsa-person-item h3 {
  font-size: 20px;
  margin: 18px 0 6px;
}
.gsa-person-item p {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-default);
  margin: 0;
}

/* Person slider card (Influencers of Change) */
.xb-work-item .xb-item--img img.gsa-person-photo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

/* Event cards */
.gsa-event-item .image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gsa-event-item .gsa-event-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  margin-top: 14px;
  text-transform: uppercase;
}
.gsa-event-item h3 {
  margin-top: 4px;
}

/* Testimonials sit on the theme's green gradient (was the template's purple),
   so the left-margin the slider used against the purple panel is reclaimed. */
.testimonial.bg-gradient .xb-testimonial-slider {
  margin-left: 107px;
}
.testimonial.bg-gradient .tes-company-logo .item {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}
.testimonial.bg-gradient .tes-company-logo .item img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .testimonial.bg-gradient .xb-testimonial-slider {
    margin-left: 0;
  }
  .testimonial.bg-gradient .xb-testimonial-wrap .tes-quote {
    position: static;
    margin-bottom: 18px;
  }
}

/* Icon badges are 60px circles; some template SVGs are drawn at 70x49 and
   were being clipped by the circle. Contain whatever sits inside. */
.xb-wcu-item .xb-item--icon {
  flex: 0 0 auto;
  padding: 12px;
}
.xb-wcu-item .xb-item--icon img,
.xb-wcu-item .xb-item--icon svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Section helper on dark bg */
.gsa-on-dark p,
.gsa-on-dark li {
  color: rgba(255, 255, 255, 0.85);
}
.gsa-on-dark .xb-item--content {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer ET Edge attribution.
   footer-style-one is a LIGHT panel (#f3f3f3) with a yellow ::after strip
   106px tall at the bottom, so this block uses dark text and must clear it. */
.gsa-footer-initiative {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.gsa-footer-initiative img {
  max-height: 58px;
  width: auto;
}
.gsa-footer-initiative span {
  color: var(--color-default);
  font-size: 14px;
  line-height: 22px;
}
.gsa-footer-initiative span strong {
  color: var(--color-heading);
}
/* The template splits the footer into a white left panel and a #f3f3f3 right
   panel, plus an empty yellow strip along the bottom. GSA runs the whole
   footer on the single grey panel instead. */
.footer-style-one::before {
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  bottom: auto !important;
  background: #f3f3f3;
}
.footer-style-one::after {
  display: none;
}
.footer-style-one .xb-newsletter {
  padding-bottom: 0;
}
.footer-style-one .xb-footer-wrap {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .footer-style-one .xb-footer-wrap {
    padding-bottom: 60px;
  }
}
/* the Follow Us row wraps beneath the link columns — give it breathing room */
.xb-footer-right-bottom {
  width: 100%;
  margin-top: 40px;
}

/* Section imagery must fill its column — several GSA source files are
   small WordPress renditions and would otherwise render at natural size. */
.xb-about-img img,
.about-details-img img,
.process-images .item-image img,
.service__blockchain .acc_body .content img,
.project-single-item .image img,
.gsa-event-item .image img {
  width: 100%;
  display: block;
}
.xb-about-img img,
.about-details-img img {
  border-radius: 12px;
  object-fit: cover;
}
.xb-about-img img {
  aspect-ratio: 4 / 3;
}
.about-details-img img {
  aspect-ratio: 21 / 9;
}
.process-images .item-image img,
.service__blockchain .acc_body .content img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
/* #PlanetBuddy wordmark is a transparent PNG — never crop or stretch it */
.xb-about-img img[src*="planet-buddy"],
.xb-about-img img[src*="impact-creators"] {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Stats row — allow 4 items */
.xb-fanfact-wrap.gsa-stats {
  flex-wrap: wrap;
  gap: 30px;
}

/* Breadcrumb inner hero uses KV artwork */
.breadcrumb.gsa-inner-hero {
  background-color: #05181e;
}

/* Placeholder notice (content awaited from GSA team) */
.gsa-placeholder-note {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8f90;
  border: 1px dashed #c9cccc;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

/*=================================================================
  RESPONSIVE
  Breakpoints follow the template: 1500 / 1199 / 991 / 767 / 575 / 375
=================================================================*/

/* Global overflow guard — nothing may push the page sideways */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* ---------- Hero typography scale ----------
   The headline is set on one line from 992px up; the size is fluid so the
   43-character string always fits the container without wrapping. */
.gsa-hero .xb-title {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.12;
  display: block;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .gsa-hero .xb-title {
    white-space: normal;
  }
}
.gsa-hero .gsa-hero-sub {
  font-size: 18px;
  line-height: 30px;
}
.gsa-hero .hero-btn {
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .gsa-hero {
    min-height: 660px;
  }
  .gsa-hero .xb-hero_content {
    max-width: 560px;
    padding: 130px 0 100px;
  }
  .gsa-hero .gsa-hero-logo img {
    max-height: 92px;
  }
}
@media (max-width: 991px) {
  .gsa-hero {
    min-height: 0;
  }
  .gsa-hero .xb-hero_content {
    max-width: 100%;
    padding: 150px 0 110px;
  }
  .gsa-hero .gsa-hero-sub {
    max-width: 100%;
    font-size: 17px;
    line-height: 28px;
  }
  .gsa-hero .gsa-hero-globe {
    width: 100%;
    background-position: center;
    opacity: 0.3;
  }
  .gsa-hero .gsa-hero-globe:before {
    background: linear-gradient(180deg, rgba(5, 24, 30, 0.9) 0%, rgba(5, 24, 30, 0.55) 50%, #05181e 100%);
  }
}
@media (max-width: 767px) {
  .gsa-hero .xb-hero_content {
    padding: 130px 0 90px;
  }
  .gsa-hero .xb-title {
    font-size: 36px;
  }
  .gsa-hero .gsa-hero-logo img {
    max-height: 72px;
    margin-bottom: 26px;
  }
  .gsa-hero .gsa-hero-sub {
    font-size: 16px;
    line-height: 26px;
  }
  .gsa-hero .hero-btn {
    gap: 14px;
  }
  .gsa-spectrum-bar {
    width: 160px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .gsa-hero .xb-title {
    font-size: 30px;
  }
  .gsa-hero .hero-btn {
    display: block;
  }
  .gsa-hero .hero-btn a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .gsa-hero .hero-btn a + a {
    margin-top: 14px;
  }
}
@media (max-width: 375px) {
  .gsa-hero .xb-title {
    font-size: 26px;
  }
  .gsa-hero .gsa-hero-logo img {
    max-height: 58px;
  }
}

/* ---------- Header ----------
   The GSA menu carries 7 top-level items, so the desktop bar is switched
   to the off-canvas menu below 1200px rather than the template's 992px. */

/* Keep logo / nav / CTA on one row — the template's wrap silently stacked
   them into four rows once the item count grew. */
.header__wrap {
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
}
.main-menu__wrap {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}
nav.main-menu > ul {
  flex-wrap: nowrap;
  justify-content: flex-end;
}
nav.main-menu > ul > li > a {
  white-space: nowrap;
}

/* 1400–1700: tighten so logo, 7 items and the CTA sit on one row */
@media only screen and (min-width: 1400px) and (max-width: 1700px) {
  .header-logo img {
    max-height: 50px;
  }
  .header-style-one .header__wrap .main-menu__wrap .main-menu > ul > li {
    margin-right: 22px;
  }
  .header-style-one .header__wrap .main-menu__wrap .main-menu > ul > li a {
    font-size: 15px;
  }
  .header-contact .thm-btn {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 14px;
  }
}

/* Below 1400 the seven-item bar cannot clear the logo, so use the
   off-canvas menu (the template switched at 992px with only five items). */
@media (max-width: 1399px) {
  .header-logo img {
    max-height: 54px;
  }
  .main-menu__wrap > nav.main-menu {
    display: none !important;
  }
  .header-bar-mobile.side-menu {
    display: block !important;
  }
  .header-contact {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .header-logo img {
    max-height: 44px;
  }
}

/* ---------- Logo wall ---------- */
@media (max-width: 991px) {
  .gsa-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gsa-logo-grid .gsa-logo-cell {
    min-height: 92px;
    padding: 14px;
  }
  .gsa-logo-grid .gsa-logo-cell img {
    max-height: 52px;
  }
}
@media (max-width: 575px) {
  .gsa-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gsa-logo-grid .gsa-logo-cell {
    min-height: 78px;
  }
  .gsa-logo-grid .gsa-logo-cell img {
    max-height: 44px;
  }
}

/* ---------- People cards ---------- */
@media (max-width: 767px) {
  .gsa-person-item {
    margin-top: 28px;
  }
  .gsa-person-item h3 {
    font-size: 17px;
    margin: 12px 0 4px;
  }
  .gsa-person-item p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 375px) {
  .gsa-person-item h3 {
    font-size: 15px;
  }
  .gsa-person-item p {
    font-size: 12px;
    line-height: 18px;
  }
}

/* ---------- Stats row ----------
   All four counters stay on a single row on desktop; they share the width
   equally rather than sizing to content, which is what wrapped the last one. */
.xb-fanfact-wrap.gsa-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: flex-start;
}
.xb-fanfact-wrap.gsa-stats .xb-item-item {
  align-items: flex-start;
}
.xb-fanfact-wrap.gsa-stats .xb-item-item {
  flex: 1 1 0;
  min-width: 0;
}
.xb-fanfact-wrap.gsa-stats .xb-item--number {
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .xb-fanfact-wrap.gsa-stats {
    flex-wrap: wrap;
    gap: 30px 24px;
  }
  .xb-fanfact-wrap.gsa-stats .xb-item-item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 575px) {
  .xb-fanfact-wrap.gsa-stats {
    gap: 26px;
  }
  .xb-fanfact-wrap.gsa-stats .xb-item-item {
    flex: 0 0 100%;
    display: block;
  }
  .xb-fanfact-wrap.gsa-stats .xb-item--content {
    margin-top: 2px;
  }
}

/* ---------- Event / project cards ---------- */
@media (max-width: 767px) {
  .gsa-event-item h3,
  .project-single-item h3 {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ---------- Footer ---------- */
@media (max-width: 991px) {
  .xb-footer-right-inner {
    display: block;
  }
  .xb-footer-right-inner .xb-footer_widget,
  .xb-footer-right-inner .xb-footer_info {
    margin-bottom: 30px;
  }
  .xb-footer-right-bottom {
    display: block;
  }
  .xb-footer-right-bottom .xb-social_media {
    margin-top: 22px;
  }
}
@media (max-width: 767px) {
  .gsa-footer-initiative {
    align-items: flex-start;
  }
  .xb-footer-bottom-inner {
    display: block;
    text-align: center;
  }
  .xb-footer-bottom-inner ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
  }
}
@media (max-width: 575px) {
  .gsa-footer-initiative {
    flex-direction: column;
    gap: 12px;
  }
}

/* ---------- Section rhythm on small screens ---------- */
@media (max-width: 767px) {
  .pt-125,
  .pt-130 {
    padding-top: 70px !important;
  }
  .pb-130,
  .pb-120 {
    padding-bottom: 70px !important;
  }
  .pt-60 {
    padding-top: 40px !important;
  }
  .pb-60 {
    padding-bottom: 40px !important;
  }
  .xb-wcu.pt-125 {
    padding-top: 60px !important;
  }
  .xb-wcu.pb-160 {
    padding-bottom: 60px !important;
  }
  .mt-80 {
    margin-top: 45px !important;
  }
}

/* ---------- Filter buttons wrap ---------- */
.project-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Contact form ---------- */
@media (max-width: 767px) {
  .contact-form {
    padding: 28px 20px;
  }
}

/* ---------- Ultra-wide ---------- */
@media (min-width: 1800px) {
  .gsa-hero {
    min-height: 820px;
  }
  .gsa-hero .xb-hero_content {
    max-width: 720px;
  }
}

/*=================================================================
  MOBILE CORRECTIONS
  Template rules written for the desktop layout that misbehave once
  the columns stack. Each fix below was traced to a measured defect.
=================================================================*/

/* main.css sets margin-right:-20px on this copy below 767px, which pushes it
   8px past the viewport edge. Matched specificity to undo it. */
@media (max-width: 991px) {
  .accordion_box .acc-btn .holder p,
  .service__blockchain .accordion.block .acc-btn .holder p {
    margin-right: 0;
  }
}

/* The yellow panel keeps 22px side margins plus its own padding on mobile,
   squeezing card copy into ~254px on a 360px screen. */
@media (max-width: 767px) {
  .xb-wcu {
    margin-left: 12px;
    margin-right: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .xb-wcu-item {
    margin-top: 40px;
  }
}

/* Accordion headings and numbering */
@media (max-width: 767px) {
  .service__blockchain .acc-btn .heading {
    font-size: 22px;
    line-height: 30px;
  }
  .service__blockchain .acc-btn .heading .number {
    font-size: 15px;
    margin-right: 8px;
  }
  .service__blockchain .acc-btn .holder p {
    font-size: 15px;
    line-height: 24px;
  }
  .faq__blockchain .acc-btn {
    font-size: 17px;
    line-height: 26px;
    padding-right: 42px;
  }
  .faq__blockchain .acc_body .content {
    font-size: 15px;
    line-height: 25px;
  }
}

/* Engagement-model list keeps an 80px desktop indent after the rail
   collapses, leaving too little room for copy on a phone. */
@media (max-width: 767px) {
  .xb-process-list {
    padding-left: 52px;
  }
  .xb-process-item {
    margin-top: 45px;
  }
  .xb-process-item .xb-item--number {
    left: -34px;
  }
  .xb-process-item .xb-item--title {
    font-size: 21px;
    line-height: 29px;
    margin-bottom: 14px;
  }
  .xb-process-item .xb-item--content {
    font-size: 15px;
    line-height: 24px;
  }
  .xb-process-image .item-image {
    margin: 30px 0;
  }
}

/* Stat counters */
@media (max-width: 767px) {
  .xb-fanfact-wrap.gsa-stats .xb-item--number {
    font-size: 38px;
    line-height: 1.1;
  }
  .xb-fanfact-wrap.gsa-stats .xb-item--content {
    font-size: 15px;
    line-height: 22px;
  }
}

/* Footer social icons were 20x22 — under the 24x24 minimum target size
   (WCAG 2.5.8), and well under a comfortable thumb target on mobile. */
.xb-social_media .social-link {
  gap: 10px;
}
.xb-social_media .social-link li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
}
.xb-social_media .social-link li a:hover {
  background: rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
  .xb-social_media .social-link li a {
    width: 44px;
    height: 44px;
  }
}

/* Section titles */
@media (max-width: 767px) {
  .sec-title .title,
  .sec-title .xb-title {
    font-size: 30px;
    line-height: 39px;
  }
  .breadcrumb__title {
    font-size: 32px;
    line-height: 41px;
  }
  .wcu-content {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 375px) {
  .sec-title .title,
  .sec-title .xb-title {
    font-size: 26px;
    line-height: 34px;
  }
  .breadcrumb__title {
    font-size: 27px;
    line-height: 36px;
  }
}

/* Testimonials */
@media (max-width: 767px) {
  .xb-testimonial-item {
    padding-right: 0;
  }
  .xb-testimonial-item .xb-item--content {
    margin: 28px 0;
    font-size: 16px;
    line-height: 27px;
  }
  .xb-testimonial-item .xb-item--author {
    font-size: 19px;
    line-height: 27px;
  }
  .testimonial.bg-gradient .tes-company-logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .testimonial.bg-gradient .tes-company-logo .item {
    min-height: 78px;
  }
}

/* Buttons go full-width on the narrowest screens so they stay tappable */
@media (max-width: 575px) {
  .wcu-btn .thm-btn,
  .about-btn .thm-btn,
  .process-btn .thm-btn,
  .xb-btn .thm-btn,
  .contact-btn .thm-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Reduced-motion safety: skewInImg starts fully clipped and scaled, so if
   the reveal never runs the image would stay invisible. */
@media (prefers-reduced-motion: reduce) {
  .skewInImg {
    clip-path: none !important;
  }
  .skewInImg img {
    transform: none !important;
  }
  .wow {
    visibility: visible !important;
    animation: none !important;
  }
}
