/* ═══════════════════════════════════════════════════════════════
   EBOOK.CSS  —  World-Class E-Book Hub & Detail Styles
   Covers: Library listing, book cards (3D), single detail,
           purchase buttons, embedded reader modal.
   ═══════════════════════════════════════════════════════════════ */

/* ── LOCAL TOKENS ────────────────────────────────────────────── */
:root {
  --eb-gplay:   #4285F4;
  --eb-kindle:  #FF9900;
  --eb-direct:  #10B981;
  --eb-website: #8B5CF6;
  --eb-card-bg: rgba(255, 255, 255, 0.03);
  --eb-border:  rgba(255, 255, 255, 0.08);
}

/* ── SHARED CONTAINER ────────────────────────────────────────── */
.eb-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px))
                   max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

/* ══ HERO ════════════════════════════════════════════════════════ */
.eb-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: radial-gradient(ellipse at 50% 0%, #0f1a35 0%, #050507 70%);
}

.eb-hero__bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.eb-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.eb-hero__orb--1 { width: 600px; height: 600px; background: #3b82f6; top: -200px; left: -100px; }
.eb-hero__orb--2 { width: 400px; height: 400px; background: #8b5cf6; bottom: -100px; right: -50px; }
.eb-hero__orb--3 { width: 300px; height: 300px; background: #22d3ee; top: 40%; left: 55%; }

.eb-hero__inner { position: relative; z-index: 2; text-align: center; }

.eb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 100px;
  background: rgba(59,130,246,0.08);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.eb-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.eb-hero__title em { font-style: normal; color: #60a5fa; }

.eb-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.eb-hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 28px;
}
.eb-hero__stat { text-align: center; padding: 0 1.25rem; }
.eb-hero__stat-val { display: block; font-size: 1.1rem; font-weight: 800; color: #fff; }
.eb-hero__stat-label { display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-top: 2px; }
.eb-hero__stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ══ FILTER BAR ══════════════════════════════════════════════════ */
.eb-filter-bar {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.eb-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  align-items: center;
}
.eb-filter-scroll::-webkit-scrollbar { display: none; }
.eb-filter-pill {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.eb-filter-pill:hover,
.eb-filter-pill--active {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4);
  color: #93c5fd;
}

/* ══ BOOK GRID ═══════════════════════════════════════════════════ */
.eb-catalog { padding: 60px 0 100px; }
.eb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── Book Card ─────────────────────────────────────────────────── */
.eb-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--eb-card-bg);
  border: 1px solid var(--eb-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.3s;
  transform-style: preserve-3d;
}
.eb-card:hover {
  transform: translateY(-8px) rotateY(-3deg) rotateX(2deg);
  box-shadow: 24px 32px 64px rgba(0,0,0,0.5), -4px 0 24px rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
}

/* Cover area */
.eb-card__cover-wrap {
  position: relative;
  overflow: hidden;
}
.eb-card__cover {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.eb-card__cover--placeholder {
  aspect-ratio: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  color: rgba(255,255,255,0.2);
}
.eb-card:hover .eb-card__cover { transform: scale(1.04); }

/* Shine effect */
.eb-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.06) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.eb-card:hover .eb-card__shine { opacity: 1; }

/* Badges overlay */
.eb-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.eb-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eb-badge--reader {
  background: rgba(16,185,129,0.9);
  color: #fff;
}
.eb-badge--price {
  background: rgba(245,158,11,0.9);
  color: #000;
}

/* Info section */
.eb-card__info {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.eb-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.eb-card__cat {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
}
.eb-card__year {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  margin-left: auto;
}
.eb-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}
.eb-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0 0 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eb-card__details {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.eb-card__detail-item {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}
.eb-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.eb-platform {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
}
.eb-platform--gplay  { background: rgba(66,133,244,0.15); color: #93b8fb; border: 1px solid rgba(66,133,244,0.25); }
.eb-platform--kindle { background: rgba(255,153,0,0.12);  color: #fcd34d; border: 1px solid rgba(255,153,0,0.2); }
.eb-platform--direct { background: rgba(16,185,129,0.1);  color: #6ee7b7; border: 1px solid rgba(16,185,129,0.2); }

.eb-card__cta {
  display: flex;
  justify-content: flex-end;
}
.eb-card__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #60a5fa;
  transition: gap 0.25s;
}
.eb-card:hover .eb-card__cta-btn { gap: 10px; }

/* ── Empty state ──────────────────────────────────────────────── */
.eb-empty {
  text-align: center;
  padding: 100px 0;
  color: rgba(255,255,255,0.2);
}
.eb-empty h3 { color: rgba(255,255,255,0.5); font-size: 1.25rem; margin: 1rem 0 0.5rem; }
.eb-empty p  { font-size: 0.875rem; }

/* ── Pagination ───────────────────────────────────────────────── */
.eb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}
.eb-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.eb-page-btn:hover {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.3);
  color: #fff;
}
.eb-page-info { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── CTA Strip ────────────────────────────────────────────────── */
.eb-cta-strip {
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.08) 0%, transparent 70%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
}
.eb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.eb-cta-title { font-size: 1.6rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.eb-cta-text  { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin: 0; }

/* ══ SINGLE PAGE ═════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────── */
.eb-single-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 30% 0%, #0f1a35 0%, #050507 60%);
}
.eb-single-hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.eb-single-hero__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Cover */
.eb-single-cover-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.eb-single-cover-wrap {
  position: relative;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.7));
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.eb-single-cover-wrap:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.eb-single-cover {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px 12px 12px 6px;
}
.eb-single-cover--placeholder {
  width: 260px;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border-radius: 6px 12px 12px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}
.eb-single-cover__spine {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  border-radius: 6px 0 0 6px;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

/* Price badge */
.eb-single-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: -0.02em;
}

/* Read online button */
.eb-read-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 32px rgba(59,130,246,0.35);
}
.eb-read-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.5);
}

/* Buy stack */
.eb-buy-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 280px;
}
.eb-buy-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.eb-buy-btn--gplay {
  background: rgba(66,133,244,0.12);
  border-color: rgba(66,133,244,0.3);
  color: #93b8fb;
}
.eb-buy-btn--gplay:hover { background: rgba(66,133,244,0.22); border-color: var(--eb-gplay); color: #fff; }
.eb-buy-btn--kindle {
  background: rgba(255,153,0,0.1);
  border-color: rgba(255,153,0,0.25);
  color: #fcd34d;
}
.eb-buy-btn--kindle:hover { background: rgba(255,153,0,0.2); border-color: var(--eb-kindle); color: #fff; }
.eb-buy-btn--direct {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.25);
  color: #6ee7b7;
}
.eb-buy-btn--direct:hover { background: rgba(16,185,129,0.2); border-color: var(--eb-direct); color: #fff; }
.eb-buy-btn--website {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.25);
  color: #c4b5fd;
}
.eb-buy-btn--website:hover { background: rgba(139,92,246,0.2); border-color: var(--eb-website); color: #fff; }

/* Sidebar buy buttons */
.eb-sidebar-buy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.eb-sidebar-buy--gplay  { background: rgba(66,133,244,0.08); border-color: rgba(66,133,244,0.2); color: #93b8fb; }
.eb-sidebar-buy--kindle { background: rgba(255,153,0,0.08);  border-color: rgba(255,153,0,0.2);  color: #fcd34d; }
.eb-sidebar-buy--direct { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); color: #6ee7b7; }
.eb-sidebar-buy--website{ background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); color: #c4b5fd; }
.eb-sidebar-buy:hover { filter: brightness(1.2); }

/* Meta col */
.eb-single-meta-col { display: flex; flex-direction: column; }
.eb-single-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.eb-single-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Metadata grid */
.eb-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.eb-meta-item {
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.eb-meta-item:nth-child(2n) { border-right: none; }
.eb-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.eb-meta-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.eb-format-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.25);
  margin-right: 4px;
}

/* ══ READER MODAL ════════════════════════════════════════════════ */
.eb-reader-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}
.eb-reader-modal.is-open { display: flex; }

.eb-reader-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.eb-reader-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100dvh;
  background: #0a0c12;
}

/* Toolbar */
.eb-reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
  flex-shrink: 0;
  min-height: 56px;
}
.eb-reader-toolbar__left,
.eb-reader-toolbar__right { display: flex; align-items: center; gap: 8px; }
.eb-reader-toolbar__center { display: flex; align-items: center; gap: 12px; }

.eb-reader-tabs {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 3px;
}
.eb-reader-tab {
  padding: 5px 14px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.eb-reader-tab--active {
  background: rgba(59,130,246,0.25);
  color: #93c5fd;
}
.eb-reader-format-badge {
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.25);
  color: #60a5fa;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eb-reader-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.eb-reader-nav-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.eb-reader-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(248,113,113,0.1);
  border-color: rgba(248,113,113,0.2);
  color: #fca5a5;
}
.eb-reader-close-btn:hover {
  background: rgba(248,113,113,0.2);
  border-color: #f87171;
  color: #fff;
}
.eb-page-counter {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  min-width: 80px;
  text-align: center;
}

/* Viewer area */
.eb-reader-view {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #1a1a2e;
  padding: 1rem;
  overscroll-behavior: contain;
}

/* PDF canvas wrapper */
.eb-pdf-canvas-wrap {
  background: #fff;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}

/* EPUB viewer */
#eb-epub-viewer {
  width: 100%;
  max-width: 800px;
  height: calc(100dvh - 80px);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  overflow: hidden;
}
#eb-epub-viewer iframe { border: none; }

/* Loading state */
.eb-reader-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  padding: 4rem;
  width: 100%;
}
.eb-reader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: eb-spin 0.8s linear infinite;
}
@keyframes eb-spin { to { transform: rotate(360deg); } }

/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .eb-hero { padding: 100px 0 60px; }
  .eb-hero__stats { flex-direction: column; border-radius: 16px; gap: 8px; }
  .eb-hero__stat-divider { width: 100%; height: 1px; }
  .eb-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }

  .eb-single-hero { padding: 80px 0 50px; }
  .eb-single-hero__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .eb-single-cover-col { align-items: center; }
  .eb-single-cover-wrap { transform: none; }
  .eb-single-cover { max-width: 200px; }
  .eb-buy-btn, .eb-read-btn { max-width: 100%; }

  .eb-meta-grid { grid-template-columns: 1fr; }
  .eb-meta-item { border-right: none; }
  .eb-meta-item:nth-child(2n) { border-right: none; }

  .eb-reader-toolbar { padding: 8px 12px; }
  .eb-reader-toolbar__center { gap: 8px; }
  .eb-page-counter { min-width: 60px; font-size: 0.72rem; }

  .eb-cta-inner { flex-direction: column; text-align: center; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .eb-grid { grid-template-columns: repeat(2, 1fr); }
  .eb-single-hero__row { gap: 2.5rem; }
  .eb-single-cover { max-width: 260px; }
}

@media (min-width: 1025px) {
  .eb-grid { grid-template-columns: repeat(3, 1fr); }
  .eb-single-cover { max-width: 300px; }
}
