/* Component base — buttons (phase 4/8). .pg-rd .rd-cta untouched in pg-rd-editorial.css */
.pg-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  text-decoration: none;
  text-align: center;
}
.pg-button--primary { background: var(--c-brand); color: #fff; }
.pg-button--primary:hover { background: var(--c-brand-hover); }
.pg-button--ghost { background: transparent; border: 1px solid var(--c-brand); color: var(--c-brand); }
.pg-button--ghost:hover { background: var(--c-brand); color: #fff; }
.pg-button--block { display: block; width: 100%; }
.pg-button--sm { padding: 10px 18px; font-size: 0.85rem; }
.pg-button--lg { padding: 18px 32px; font-size: 1rem; }

.btn-primary,
.btn-hero,
.btn-hero-booking,
.btn-courses-submit {
  font-family: var(--font-body);
}

/* ============================================================
   Shared editorial CTA buttons — used by restaurants, events,
   and other content pages. Moved here from restaurants.css so
   pages that don't enqueue restaurants.css still get the styles.
   ============================================================ */
.btn-pg-solid {
    display: inline-block;
    background: #E50914;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.95rem 2rem;
    border-radius: 2px;
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}
.btn-pg-solid:hover,
.btn-pg-solid:focus-visible {
    background: var(--c-brand-hover);
    transform: translateY(-1px);
}
.btn-pg-solid:focus-visible {
    outline: 2px solid #E50914;
    outline-offset: 3px;
}
.btn-pg-ghost {
    display: inline-block;
    margin-left: 1.25rem;
    color: #0A0A0A;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.92rem;
    font-weight: 500;
    background: transparent;
    border: 0;
    padding: 0.95rem 0;
}
.btn-pg-ghost:hover { color: #E50914; }
@media (max-width: 480px) {
    .btn-pg-ghost { display: block; margin: 1rem 0 0; }
}
