/* Page-specific styles for the gamescom 2026 press release landing page.
   Extends gamescom_main.css rather than editing it, so other gamescom/computex
   pages that share that stylesheet are unaffected. */

.pr-hero {
  width: 100%;
  padding: 7rem 2rem 5rem;
  background: linear-gradient(135deg, #1b2438 0%, #29334f 60%, #1b2438 100%);
  text-align: center;
}
.pr-hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.pr-hero-logos img {
  height: 42px;
  width: auto;
}
.pr-hero-logos .pr-hero-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.25);
}
.pr-badge {
  display: inline-block;
  background-color: #ef5a22;
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.pr-hero h1 {
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.pr-hero-sub {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.pr-hero-sub strong {
  color: #fff;
}

.brand-wall {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
}
.brand-wall img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}

.pr-lede {
  border-left: 4px solid #ef5a22;
  background-color: #f3f5f6;
  padding: 1.75rem 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #29334f;
}
.pr-lede strong {
  color: #29334f;
}

.pr-section-intro {
  text-align: center;
  color: #64748b;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Duo product image layout used inside .product-img-wrapper */
.product-img-duo {
  display: flex;
  gap: 0.25rem;
}
.product-img-duo .product-img {
  flex: 1;
}
.product-img-duo .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Closed doors cards */
.closed-doors-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}
.closed-doors-item {
  background-color: #1b2438;
  border-left: 4px solid #7c8798;
  border-radius: 6px;
  padding: 2rem;
}
.closed-doors-item .badge-lock {
  display: inline-block;
  background-color: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.closed-doors-item img {
  height: 26px;
  width: auto;
  margin-bottom: 1rem;
}
.closed-doors-item p {
  color: #cbd5e1;
}

/* Mini highlight cards */
.mini-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}
.mini-item {
  background-color: #f3f5f6;
  border-radius: 8px;
  overflow: hidden;
}
.mini-item .mini-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #000;
}
.mini-item .mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-item .mini-body {
  padding: 1.5rem;
}
.mini-item .mini-logos {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.mini-item .mini-logos img {
  height: 18px;
  width: auto;
}
.mini-item .mini-logos span {
  color: #94a3b8;
  font-size: 0.8rem;
}
.mini-item h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: #29334f;
  margin-bottom: 0.5rem;
}
.mini-item p {
  font-size: 0.9rem;
  color: #475569;
}

/* Partner cards */
.partner-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
}
.partner-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition:
    border-color 250ms ease,
    transform 250ms ease,
    box-shadow 250ms ease;
}
.partner-item:hover,
.partner-item:focus-visible {
  border-color: #ef5a22;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.partner-item .partner-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #000;
  display: flex;
}
.partner-item .partner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.partner-item:hover .partner-img img {
  transform: scale(1.05);
}
.partner-item .partner-body {
  padding: 1.5rem;
  flex-grow: 1;
}
.partner-item .partner-body img.partner-brand-logo {
  height: 22px;
  width: auto;
  margin-bottom: 1rem;
  filter: invert(1);
}
.partner-item h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.partner-item p {
  font-size: 0.88rem;
  color: #cbd5e1;
}

/* Bonus gallery */
.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: #f3f5f6;
}
.gallery-item .gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #000;
}
.gallery-item .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item .gallery-body {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.gallery-item .gallery-body img {
  height: 16px;
  width: auto;
}
.gallery-item .gallery-body span {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
}

/* CTA */
.pr-cta {
  background: linear-gradient(135deg, #ef5a22 0%, #29334f 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}
.pr-cta h3 {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.pr-cta p {
  color: #f1f5f9;
  max-width: 560px;
  margin: 0 auto 1.8rem;
}
.pr-cta .btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.pr-cta .pr-cta-meta {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: #f1f5f9;
}

.pr-about {
  background-color: #f3f5f6;
  padding: 3rem 2rem;
}
.pr-about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pr-about h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: #29334f;
  margin-bottom: 0.8rem;
}
.pr-about p {
  font-size: 0.9rem;
  color: #64748b;
}

@media screen and (max-width: 767px) {
  .pr-hero {
    padding: 5rem 1.25rem 3rem;
  }
  .pr-hero-logos {
    gap: 1.5rem;
  }
  .pr-hero-logos img {
    height: 30px;
  }
}
