/* =====================================================================
   GLOBALIST PRESS — Newsroom redesign
   Scoped to .gp-* — only loads on /presse.
   ===================================================================== */

:root{
  --gp-pad-y: clamp(72px, 9vw, 130px);
  --gp-max: 1240px;
  --gp-radius: 18px;
  --gp-radius-sm: 12px;
  --gp-card: #061915;
  --gp-card-hi: #082420;
  --gp-border: rgba(255,255,255,.07);
  --gp-border-hi: rgba(0,237,179,.28);
  --gp-text: rgba(255,255,255,.74);
  --gp-text-mute: rgba(255,255,255,.52);
}

/* ——— Section shell ——— */
.gp-section{
  position: relative;
  padding: var(--gp-pad-y) 24px;
  overflow: hidden;
}
.gp-inner{
  max-width: var(--gp-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ambient mint glow behind hero */
.gp-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%,
      rgba(0,237,179,.10) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ——— Hero ——— */
.gp-hero{
  padding-top: clamp(110px, 13vw, 180px);
  padding-bottom: clamp(56px, 7vw, 90px);
}
.gp-hero-inner{
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gp-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--gp-border-hi);
  border-radius: 999px;
  background: rgba(0,237,179,.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
}
.gp-eyebrow::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: gpPulse 2.4s ease-in-out infinite;
}
@keyframes gpPulse{
  0%,100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .55; transform: scale(.85); }
}
.gp-h1{
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(36px, 5.4vw, 72px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  color: var(--white) !important;
  margin: 0 0 22px !important;
  text-transform: uppercase;
  text-wrap: balance;
  background: linear-gradient(180deg,#fff 0%, #fff 55%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gp-h1 .hl{
  background: linear-gradient(180deg,#a8ffe3 0%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(0,237,179,.4));
}
.gp-lede{
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--gp-text);
  margin: 0 auto;
  max-width: 720px;
  text-wrap: pretty;
}

/* ——— Logo strip (BEKANNT AUS) ——— */
.gp-logos{
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: 28px;
  border-top: 1px solid var(--gp-border);
}
.gp-logos-label{
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gp-text-mute);
  margin-bottom: 22px;
}
.gp-logos-row{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 36px);
  align-items: center;
  justify-items: center;
}
.gp-logos-row img{
  max-height: 36px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity .3s var(--ease, ease);
}
.gp-logos-row img:hover{ opacity: 1; }

/* ——— Press grid ——— */
.gp-grid-section{
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(72px, 9vw, 110px);
}
.gp-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

/* ——— Press card ——— */
.gp-card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--gp-card) 0%, #04130f 100%);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 28px 26px 26px;
  overflow: hidden;
  transition:
    transform .35s var(--ease, cubic-bezier(.16,1,.3,1)),
    border-color .35s var(--ease, cubic-bezier(.16,1,.3,1)),
    background .35s var(--ease, cubic-bezier(.16,1,.3,1));
}
.gp-card::before{
  /* hairline mint hover glow */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg,
    rgba(0,237,179,.0) 0%,
    rgba(0,237,179,.0) 40%,
    rgba(0,237,179,.35) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease, ease);
  pointer-events: none;
}
.gp-card:hover{
  transform: translateY(-4px);
  border-color: var(--gp-border-hi);
  background: linear-gradient(180deg, var(--gp-card-hi) 0%, #051713 100%);
}
.gp-card:hover::before{ opacity: 1; }

.gp-card-logo{
  display: flex;
  align-items: center;
  height: 48px;
  margin-bottom: 22px;
}
.gp-card-logo img{
  max-height: 38px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.gp-card-meta{
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gp-text-mute);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.gp-card-meta .dot{
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gp-text-mute);
  flex-shrink: 0;
}

.gp-card-title{
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(18px, 1.4vw, 21px) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.012em !important;
  color: var(--white) !important;
  margin: 0 0 14px !important;
  text-transform: none !important;
  text-wrap: balance;
}

.gp-card-excerpt{
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gp-text);
  margin: 0 0 22px;
  flex: 1;
}
.gp-card-excerpt em{ color: rgba(255,255,255,.85); font-style: italic; }

.gp-card-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--primary);
  padding: 10px 0;
  border-top: 1px solid var(--gp-border);
  margin-top: auto;
  transition: gap .25s var(--ease, ease), color .25s var(--ease, ease);
}
.gp-card-cta svg{
  transition: transform .3s var(--ease, ease);
}
.gp-card:hover .gp-card-cta{ gap: 12px; }
.gp-card:hover .gp-card-cta svg{ transform: translateX(3px); }

/* full card click overlay */
.gp-card-link{
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

/* ——— Bottom CTA ——— */
.gp-cta{
  position: relative;
  border-top: 1px solid var(--gp-border);
  padding: clamp(72px, 9vw, 120px) 24px;
  text-align: center;
  overflow: hidden;
}
.gp-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%,
      rgba(0,237,179,.10) 0%,
      transparent 65%);
  pointer-events: none;
}
.gp-cta-inner{
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gp-cta-h{
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(32px, 4.4vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.022em !important;
  color: var(--white) !important;
  margin: 0 0 18px !important;
  text-transform: uppercase;
}
.gp-cta-h .hl{ color: var(--primary); }
.gp-cta-p{
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--gp-text);
  margin: 0 auto 32px;
  max-width: 560px;
}
.gp-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.gp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s var(--ease, ease), background .25s var(--ease, ease), border-color .25s var(--ease, ease), color .25s var(--ease, ease);
  white-space: nowrap;
}
.gp-btn-primary{
  background: var(--primary);
  color: #001d17 !important;
  box-shadow: 0 10px 40px -10px rgba(0,237,179,.6);
}
.gp-btn-primary:hover{
  transform: translateY(-2px);
  background: #00ffc0;
  color: #001d17 !important;
}
.gp-btn-ghost{
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.18);
}
.gp-btn-ghost:hover{
  border-color: var(--primary);
  color: var(--primary) !important;
}

/* ——— Responsive ——— */
@media (max-width: 991px){
  .gp-grid{
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .gp-logos-row{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 640px){
  .gp-section{ padding-left: 18px; padding-right: 18px; }
  .gp-hero{
    padding-top: clamp(96px, 22vw, 130px);
    padding-bottom: 48px;
  }
  .gp-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gp-card{ padding: 24px 22px 22px; }
  .gp-card-title{ font-size: 17px !important; }
  .gp-card-excerpt{ font-size: 14px; }
  .gp-logos-row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }
  .gp-cta{ padding: 64px 18px; }
  .gp-btn{ width: 100%; }
}

/* hide legacy webflow press section if present */
.section_layout247.is-hidden,
.section_logo1.is-hidden,
.section_cta27.is-hidden{ display: none !important; }
