/* =====================================================
   PlayOJO Casino — playojo-casino.info — SE / sv-SE
   Prefix: pj-
   ===================================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1f4f; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.25; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }

/* ROOT VARIABLES */
:root {
  --pj-purple: #7b2cbf;
  --pj-purple-dark: #5a189a;
  --pj-navy: #1a1f4f;
  --pj-topbar: #1a1f4f;
  --pj-green: #00a651;
  --pj-yellow: #ffd000;
  --pj-white: #fff;
  --pj-bg: #f5f0ff;
  --pj-border: #e2d9f3;
  --pj-text: #1a1f4f;
  --pj-text-muted: #6b7280;
  --pj-radius: 12px;
  --pj-shadow: 0 4px 20px rgba(123,44,191,.12);
  --container: 1240px;
}

/* CONTAINER */
.pj-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) { .pj-container { padding-inline: 20px; } }

/* BUTTONS */
.pj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .15s, box-shadow .15s;
  white-space: nowrap;
  max-width: 100%;
}
.pj-btn:hover { opacity: .88; }
.pj-btn--green { background: var(--pj-green); color: #fff; }
.pj-btn--yellow { background: var(--pj-yellow); color: var(--pj-navy); }
.pj-btn--lg { padding: 14px 32px; font-size: 15px; }
.pj-btn--outline { background: transparent; border: 2px solid var(--pj-yellow); color: var(--pj-yellow); }

/* =====================================================
   TOPBAR
   ===================================================== */
.pj-topbar {
  background: var(--pj-topbar);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.4;
}
.pj-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  flex-wrap: wrap;
}
.pj-topbar__left { display: flex; align-items: center; gap: 10px; }
.pj-topbar__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.pj-topbar__badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.pj-topbar__center { font-size: 11.5px; color: rgba(255,255,255,.75); text-align: center; flex: 1; }
.pj-topbar__center a { color: var(--pj-yellow); text-decoration: underline; }
.pj-topbar__right { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9); white-space: nowrap; }

@media (max-width: 639px) {
  .pj-topbar { font-size: 11px; }
  .pj-topbar__inner { gap: 6px 10px; }
  .pj-topbar__center { order: 3; width: 100%; flex: none; font-size: 11px; }
}

/* =====================================================
   HEADER
   ===================================================== */
.pj-header {
  background: var(--pj-purple);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.pj-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.pj-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.pj-header__logo img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
@media (min-width: 760px) {
  .pj-header__logo img { height: 44px; max-width: none; }
  .pj-header__inner { gap: 18px; padding: 14px 0; }
}

.pj-header__search {
  display: none;
  flex: 1;
  min-width: 0;
  position: relative;
}
@media (min-width: 760px) { .pj-header__search { display: flex; } }
.pj-header__search input {
  width: 100%;
  padding: 9px 16px 9px 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.pj-header__search input::placeholder { color: rgba(255,255,255,.55); }
.pj-header__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,.55);
  width: 16px;
  height: 16px;
}

.pj-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.pj-header__actions .pj-btn {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .02em;
}
@media (min-width: 760px) {
  .pj-header__actions { gap: 10px; }
  .pj-header__actions .pj-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}
@media (max-width: 479px) {
  .pj-header__actions .pj-btn--login { font-size: 11px; padding: 7px 10px; }
}

.pj-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.pj-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
@media (min-width: 1024px) { .pj-header__burger { display: none; } }

/* =====================================================
   MOBILE MENU OVERLAY
   ===================================================== */
.pj-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--pj-purple-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform .28s ease;
}
.pj-mobile-menu.is-open { transform: translateX(0); }
.pj-mobile-menu__close {
  align-self: flex-end;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.pj-mobile-menu__nav { margin-top: 24px; }
.pj-mobile-menu__nav a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.pj-mobile-menu__actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* =====================================================
   SUBNAV
   ===================================================== */
.pj-subnav {
  background: #fff;
  border-bottom: 2px solid var(--pj-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.pj-subnav::-webkit-scrollbar { display: none; }
.pj-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  min-width: max-content;
}
.pj-subnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: var(--pj-navy);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.pj-subnav__item:hover, .pj-subnav__item--active {
  color: var(--pj-purple);
  border-bottom-color: var(--pj-purple);
}
.pj-subnav__item svg { width: 20px; height: 20px; }

/* =====================================================
   HERO CAROUSEL
   ===================================================== */
.pj-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.pj-hero__slides { display: flex; height: 100%; }
.pj-hero__slide {
  min-width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pj-hero__slide--1 {
  background: linear-gradient(to right, rgba(30,8,80,.72) 35%, rgba(30,8,80,.2)), url('/img/banner1.jpg') center/cover no-repeat;
}
.pj-hero__slide--2 {
  background: linear-gradient(to right, rgba(20,5,60,.75) 35%, rgba(20,5,60,.2)), url('/img/banner2.jpg') center/cover no-repeat;
}
.pj-hero__slide--3 {
  background: linear-gradient(to right, rgba(50,10,100,.72) 35%, rgba(50,10,100,.2)), url('/img/banner3.jpg') center/cover no-repeat;
}
.pj-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 0 72px;
  min-width: 0;
  max-width: 100%;
}
.pj-hero__content { max-width: 560px; }
.pj-hero__eyebrow {
  display: inline-block;
  background: var(--pj-yellow);
  color: var(--pj-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pj-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.pj-hero__lead {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  line-height: 1.55;
}
.pj-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.pj-hero__ctas .pj-btn { min-width: 160px; }

@media (max-width: 639px) {
  .pj-hero__slide, .pj-hero { min-height: 340px; }
  .pj-hero__inner { padding: 36px 0 44px; }
  .pj-hero__lead { font-size: 16px; margin-bottom: 20px; }
  .pj-hero__ctas .pj-btn { width: 100%; max-width: 100%; }
  .pj-hero__ctas { flex-direction: column; }
}

/* Carousel controls */
.pj-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}
.pj-hero__arrow:hover { background: rgba(255,255,255,.35); }
.pj-hero__arrow--prev { left: 16px; }
.pj-hero__arrow--next { right: 16px; }
.pj-hero__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.pj-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.pj-hero__dot.is-active { background: var(--pj-yellow); transform: scale(1.3); }

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.pj-breadcrumbs {
  padding-block: 10px;
  font-size: 13px;
  color: var(--pj-text-muted);
  border-bottom: 1px solid var(--pj-border);
}
.pj-breadcrumbs ol { display: flex; gap: 6px; flex-wrap: wrap; }
.pj-breadcrumbs li + li::before { content: '›'; margin-right: 6px; }
.pj-breadcrumbs a { color: var(--pj-purple); }

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.pj-section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--pj-navy);
  margin-bottom: 8px;
}
.pj-section-lead {
  color: var(--pj-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* =====================================================
   OFFERS LISTING (CASINO CARDS)
   ===================================================== */
.pj-offers { padding-block: 48px; }
.pj-offers__header { text-align: center; margin-bottom: 32px; }
.pj-offers__grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 900px) { .pj-offers__grid { flex-wrap: nowrap; } }

/* LISTING CARDS */
.pj-offers__card {
  position: relative;
  background: #fff;
  border: 2px solid var(--pj-border);
  border-radius: var(--pj-radius);
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.pj-offers__card:hover { box-shadow: var(--pj-shadow); }
.pj-offers__card--top {
  border-color: var(--pj-yellow);
  transform: scale(1.02);
  padding-top: 36px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(255,208,0,.25);
}
@media (max-width: 759px) {
  .pj-offers__card--top { transform: none; order: -1; }
  .pj-offers__card { max-width: 100%; width: 100%; }
}

.pj-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}
.pj-offers__card > *:not(.pj-offers__overlay-link) {
  position: relative;
  z-index: 2;
}
.pj-offers__card * { pointer-events: none; }
.pj-offers__overlay-link,
.pj-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.pj-offers__review-link { position: relative; z-index: 3; }

/* Ribbon */
.pj-offers__ribbon {
  position: absolute !important;
  top: 26px;
  right: -46px;
  width: 170px;
  transform: rotate(45deg);
  background: var(--pj-yellow);
  color: var(--pj-navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  padding: 5px 0;
  z-index: 4;
}

.pj-offers__logo-wrap {
  width: 80px;
  height: 80px;
  background: #f5f0ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.pj-offers__logo-wrap img { width: 64px; height: 64px; object-fit: contain; }
.pj-offers__name { font-size: 18px; font-weight: 700; color: var(--pj-navy); margin-bottom: 4px; }
.pj-offers__tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.pj-offers__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--pj-bg);
  color: var(--pj-purple);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--pj-border);
}
.pj-offers__tag--accent { background: var(--pj-yellow); color: var(--pj-navy); border-color: var(--pj-yellow); }

.pj-offers__stars { color: var(--pj-yellow); font-size: 15px; margin-bottom: 2px; }
.pj-offers__rating-num { font-size: 13px; color: var(--pj-text-muted); margin-bottom: 10px; }

.pj-offers__bonus {
  background: var(--pj-bg);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--pj-navy);
  margin-bottom: 12px;
  width: 100%;
}

.pj-offers__usps {
  text-align: left;
  width: 100%;
  margin-bottom: 14px;
}
.pj-offers__usps li {
  font-size: 13px;
  color: var(--pj-text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pj-offers__usps li::before {
  content: '✓';
  color: var(--pj-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pj-offers__social-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--pj-text-muted);
  margin-bottom: 8px;
  justify-content: center;
}
.pj-offers__fire { font-size: 16px; }

.pj-offers__timer {
  font-size: 12px;
  color: var(--pj-text-muted);
  margin-bottom: 12px;
}
.pj-offers__timer strong {
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  color: var(--pj-navy);
  font-weight: 700;
}

.pj-offers__cta-row {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.pj-offers__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--pj-green);
  color: #fff;
}
.pj-offers__card--top .pj-offers__cta { background: var(--pj-yellow); color: var(--pj-navy); }
.pj-offers__review-link {
  font-size: 12px;
  color: var(--pj-purple);
  text-decoration: underline;
}
.pj-offers__urgency {
  font-size: 11px;
  color: var(--pj-text-muted);
  margin-top: 8px;
}

.pj-offers__aggregate {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--pj-text-muted);
}
.pj-offers__aggregate strong { color: var(--pj-navy); }

/* =====================================================
   CONTENT SECTION
   ===================================================== */
.pj-content { padding-block: 40px; }
.pj-content h2 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 16px; color: var(--pj-navy); }
.pj-content h3 { font-size: 18px; margin-bottom: 10px; color: var(--pj-navy); margin-top: 24px; }
.pj-content p { font-size: 15px; line-height: 1.75; color: var(--pj-text); margin-bottom: 16px; }
.pj-content ul { margin-bottom: 16px; }
.pj-content ul li {
  font-size: 15px;
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--pj-text);
}
.pj-content ul li::before {
  content: '✓';
  color: var(--pj-green);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.pj-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.pj-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 400px;
}
.pj-content table th {
  background: var(--pj-navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.pj-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--pj-border);
  color: var(--pj-text);
}
.pj-content table tr:nth-child(even) td { background: var(--pj-bg); }

blockquote {
  background: var(--pj-bg);
  border-left: 4px solid var(--pj-purple);
  border-radius: 0 var(--pj-radius) var(--pj-radius) 0;
  padding: 16px 20px;
  font-style: italic;
  color: var(--pj-navy);
  margin: 24px 0;
  font-size: 15px;
}

/* CONTENT IMAGES */
.pj-content img,
article img,
main p img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--pj-radius);
}

/* =====================================================
   PAYMENTS TRUST BAR
   ===================================================== */
.pj-payments { padding-block: 32px; background: var(--pj-bg); }
.pj-payments__title { text-align: center; font-size: 14px; font-weight: 700; color: var(--pj-text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.pj-payments__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.pj-payments__label {
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pj-navy);
  white-space: nowrap;
  border: 1px solid var(--pj-border);
}

/* =====================================================
   SLOTS LISTING
   ===================================================== */
.pj-slots { padding-block: 48px; }
.pj-slots__header { text-align: center; margin-bottom: 32px; }
.pj-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 600px) { .pj-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pj-slots__grid { grid-template-columns: repeat(6, 1fr); } }

.pj-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--pj-radius);
  overflow: hidden;
  border: 1px solid var(--pj-border);
  background: var(--pj-navy);
}
.pj-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.pj-slots__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  display: block;
}
.pj-slots__top-row {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}
.pj-slots__hot {
  background: #e63946;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: .06em;
}
.pj-slots__play-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
}
.pj-slots__play-icon svg { width: 12px; height: 12px; }
.pj-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,5,40,.95) 0%, rgba(15,5,40,.7) 60%, transparent 100%);
  padding: 28px 8px 8px;
  pointer-events: none;
  z-index: 3;
}
.pj-slots__name { color: #fff; font-size: 11px; font-weight: 700; line-height: 1.2; margin-bottom: 3px; }
.pj-slots__badges { display: flex; gap: 4px; flex-wrap: wrap; }
.pj-slots__badge {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.pj-slots__badge--rtp { background: rgba(0,166,81,.35); color: #7effc5; }
.pj-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,44,191,.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  z-index: 4;
}
.pj-slots__grid > div:hover .pj-slots__overlay { opacity: 1; }
.pj-slots__overlay-cta {
  background: var(--pj-yellow);
  color: var(--pj-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: .05em;
}

/* pointer-events: none for decorations */
.pj-slots__top-row,
.pj-slots__meta-row,
.pj-slots__overlay,
.pj-slots__play-icon { pointer-events: none; }

.pj-slots__more { text-align: center; margin-top: 24px; }

/* =====================================================
   AUTHOR BLOCK
   ===================================================== */
.pj-author { padding-block: 40px; background: var(--pj-bg); }
.pj-author__card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--pj-radius);
  padding: 28px;
  box-shadow: var(--pj-shadow);
  max-width: 720px;
  margin-inline: auto;
}
.pj-author__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pj-author__name { font-size: 18px; font-weight: 700; color: var(--pj-navy); margin-bottom: 2px; }
.pj-author__role { font-size: 13px; color: var(--pj-text-muted); margin-bottom: 10px; }
.pj-author__bio { font-size: 14px; color: var(--pj-text); line-height: 1.65; margin-bottom: 12px; }
.pj-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--pj-purple);
  font-weight: 600;
  text-decoration: underline;
}
.pj-author__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pj-author__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--pj-bg);
  border: 1px solid var(--pj-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--pj-navy);
}
@media (max-width: 599px) {
  .pj-author__card { flex-direction: column; align-items: center; text-align: center; }
  .pj-author__badges { justify-content: center; }
}

/* =====================================================
   FAQ
   ===================================================== */
.pj-faq { padding-block: 48px; }
.pj-faq__header { text-align: center; margin-bottom: 32px; }
.pj-faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.pj-faq__item {
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius);
  overflow: hidden;
}
.pj-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--pj-navy);
  gap: 12px;
  background: #fff;
}
.pj-faq__question:hover { background: var(--pj-bg); }
.pj-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pj-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform .2s;
}
.pj-faq__item.is-open .pj-faq__icon { transform: rotate(45deg); }
.pj-faq__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pj-text);
  background: #fff;
}
.pj-faq__item.is-open .pj-faq__answer { display: block; }

/* =====================================================
   RELATED LINKS
   ===================================================== */
.pj-related { padding-block: 32px; background: var(--pj-bg); }
.pj-related h3 { font-size: 16px; margin-bottom: 14px; color: var(--pj-navy); }
.pj-related__links { display: flex; flex-wrap: wrap; gap: 8px; }
.pj-related__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--pj-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pj-purple);
  transition: background .15s, border-color .15s;
}
.pj-related__link:hover { background: var(--pj-purple); color: #fff; border-color: var(--pj-purple); }

/* =====================================================
   FOOTER
   ===================================================== */
.pj-footer {
  background: var(--pj-navy);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
}
.pj-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pj-footer__brand { grid-column: 1 / -1; }
@media (min-width: 600px) {
  .pj-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .pj-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 24px; }
  .pj-footer__brand { grid-column: auto; }
}

.pj-footer__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.pj-footer__tagline { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; line-height: 1.55; }
.pj-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.pj-footer__social {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}
.pj-footer__social:hover { background: var(--pj-purple); }
.pj-footer__social svg { width: 16px; height: 16px; }

.pj-footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}
.pj-footer__col ul li { margin-bottom: 7px; }
.pj-footer__col a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
.pj-footer__col a:hover { color: var(--pj-yellow); }

.pj-footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pj-footer__pay-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.pj-footer__pay-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pj-footer__pay-label {
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.pj-footer__rg {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pj-radius);
  padding: 14px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.pj-footer__rg strong { color: rgba(255,255,255,.8); }
.pj-footer__rg a { color: var(--pj-yellow); text-decoration: underline; }
.pj-footer__copy {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.pj-footer__copy-links { display: flex; gap: 14px; flex-wrap: wrap; }
.pj-footer__copy-links a { color: rgba(255,255,255,.4); transition: color .15s; }
.pj-footer__copy-links a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 599px) {
  .pj-footer { padding: 28px 0 16px; font-size: 12px; }
  .pj-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .pj-footer__col ul li { margin-bottom: 4px; }
  .pj-footer__col a { font-size: 12px; }
  .pj-footer__logo { height: 48px; margin-bottom: 10px; }
  .pj-footer__tagline { font-size: 12px; }
  .pj-footer__pay-grid { gap: 6px; }
}

/* =====================================================
   MOBILE FAB
   ===================================================== */
.pj-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--pj-yellow);
  color: var(--pj-navy);
  font-weight: 900;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,.5), 0 2px 8px rgba(0,0,0,.6);
  transition: background .15s, transform .15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.pj-fab::after { content: "▶"; font-size: 11px; }
.pj-fab:hover { transform: translate(-50%, -2px); }
@media (max-width: 979px) { .pj-fab { display: inline-flex; } }
@media (max-width: 480px) { .pj-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
@media (max-width: 1023px) { .pj-footer { padding-bottom: 84px; } }

body.is-cookies-shown .pj-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .pj-fab { bottom: 150px; } }

/* =====================================================
   HERO / BANNER IMAGES
   ===================================================== */
.pj-hero img, .banner img, img.banner {
  max-width: 100%;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

/* LOGO in header */
header img { max-height: 48px; width: auto; object-fit: contain; }

/* AUTHOR photo */
.pj-author img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }

@media (max-width: 768px) {
  .pj-content img, article img, main p img { max-height: 320px; }
}
