/* ============================================================
   Gates of Olympus 奧林匹斯之門 — 編輯雜誌 / 古典大理石風格
   淺象牙底色、牛血紅 + 青銅金、襯線大字、不對稱排版
   ============================================================ */

:root {
  --ivory:      #f4efe6;
  --ivory-2:    #ece4d6;
  --paper:      #fbf8f1;
  --ink:        #1c1610;
  --ink-soft:   #4a4034;
  --oxblood:    #7a1f2b;
  --oxblood-d:  #5c1620;
  --bronze:     #b08d4f;
  --bronze-d:   #8a6c34;
  --gold:       #c9a227;
  --dark:       #161210;
  --dark-2:     #221b14;

  --serif:   'Cormorant Garamond', 'Noto Serif HK', serif;
  --serif-hk:'Noto Serif HK', 'Cormorant Garamond', serif;
  --condensed: 'Bebas Neue', 'Noto Serif HK', sans-serif;

  --wrap: 1200px;
  --line: 1px solid rgba(28,22,16,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-hk);
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(176,141,79,.08), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(122,31,43,.06), transparent 35%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ===== 按鈕 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--condensed);
  letter-spacing: 2px;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer; border: none;
  padding: 15px 34px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-solid {
  background: var(--oxblood);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-solid:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); background: var(--oxblood-d); }
.btn-solid:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--paper); }

/* ===== TOP BAR ===== */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 110px; }
.brand { flex: 0 0 auto; }
.brand-logo { height: 96px; width: auto; display: block; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 28px; flex: 1 1 auto; min-width: 0; }
.nav a {
  font-family: var(--condensed);
  letter-spacing: 2px;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--oxblood); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 10px; }
.header-lang {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 40px;
  padding: 7px 12px;
  border: 1px solid rgba(28,22,16,.22);
  color: var(--bronze-d);
  font-family: var(--condensed);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  background: rgba(255,255,255,.28);
}
.header-lang-flag { font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: 0; }
.nav a.header-btn,
.header-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 2px solid var(--ink);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.nav a.header-btn-login,
.header-btn-login {
  background: transparent;
  color: var(--ink);
}
.nav a.header-btn-signup,
.header-btn-signup {
  background: var(--oxblood);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.nav a.header-btn:hover,
.header-btn:hover {
  transform: translate(-2px,-2px);
  color: var(--paper);
  background: var(--ink);
}
.nav a.header-btn-signup:hover,
.header-btn-signup:hover {
  background: var(--oxblood-d);
  box-shadow: 6px 6px 0 var(--ink);
}
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .25s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; padding-bottom: 70px; }
.hero-rule {
  border-bottom: var(--line);
  text-align: center;
  padding: 14px 0;
  margin-bottom: 50px;
}
.hero-rule span {
  font-family: var(--condensed);
  letter-spacing: 5px;
  font-size: 14px;
  color: var(--bronze-d);
}
.hero-inner { max-width: 940px; }
.hero-eyebrow {
  font-family: var(--condensed);
  letter-spacing: 4px;
  font-size: 16px;
  color: var(--oxblood);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(64px, 13vw, 168px);
  line-height: .86;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 30px;
}
.hero-title-en {
  display: block;
  font-family: var(--condensed);
  font-weight: 400;
  font-size: clamp(28px, 5.5vw, 70px);
  letter-spacing: 6px;
  color: var(--oxblood);
  margin-top: 16px;
  -webkit-text-stroke: 0;
}
.hero-lead {
  font-size: clamp(19px, 2.4vw, 26px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex; flex-wrap: wrap;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-bottom: 40px;
}
.hstat {
  flex: 1; min-width: 130px;
  padding: 22px 10px;
  border-right: var(--line);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  display: block;
  font-family: var(--condensed);
  font-size: clamp(34px, 5vw, 54px);
  color: var(--oxblood);
  line-height: 1;
}
.hstat-lbl {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--ink-soft);
  margin-top: 8px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-dark {
  background: var(--dark);
  color: var(--paper);
  background-image:
    radial-gradient(circle at 80% 10%, rgba(176,141,79,.12), transparent 40%);
}
.sec-head { margin-bottom: 50px; }
.sec-no {
  font-family: var(--condensed);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--bronze-d);
  display: block;
}
.sec-no.light { color: var(--bronze); }
.sec-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  color: var(--ink);
  margin-top: 6px;
}
.sec-title.light { color: var(--paper); }
.sec-desc {
  font-size: 18px; font-style: italic;
  color: var(--ink-soft);
  max-width: 560px; margin-top: 16px;
}

/* ===== PLAY LAYOUT ===== */
.play-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  border-top: 2px solid var(--ink);
}
.demo-col {
  padding: 36px 40px 36px 0;
  border-right: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 40px;
}

/* DEMO */
.demo-frame { position: relative; }
.demo-stage {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--bronze);
}
.demo-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.demo-close {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 44px; height: 44px; border: none;
  background: var(--oxblood); color: var(--paper);
  font-size: 20px; cursor: pointer; display: none;
  align-items: center; justify-content: center;
}
.demo-close:active { transform: scale(.92); }
.demo-cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: radial-gradient(ellipse at 50% 35%, #2a2018, var(--dark));
  transition: opacity .35s ease;
}
.demo-cover.hidden { opacity: 0; pointer-events: none; }
.demo-cover-logo { width: min(240px, 54%); height: auto; }
.demo-note { color: #9a8d76; font-size: 13px; letter-spacing: 1px; }

/* HOWTO */
.block-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: var(--line);
}
.steps { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.steps li {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 20px 0; border-bottom: var(--line);
}
.step-k {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 40px;
  color: var(--oxblood);
  line-height: 1; flex: 0 0 auto;
  width: 50px; text-align: center;
}
.steps strong { display: block; font-size: 19px; color: var(--ink); margin-bottom: 4px; }
.steps p { color: var(--ink-soft); font-size: 15.5px; }

/* FEATURE LIST */
.feature-list { display: flex; flex-direction: column; }
.frow {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: var(--line);
}
.frow:first-child { border-top: var(--line); }
.fic { font-size: 30px; flex: 0 0 auto; width: 44px; text-align: center; filter: grayscale(.2); }
.frow h4 { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--oxblood); margin-bottom: 4px; }
.frow p { color: var(--ink-soft); font-size: 15.5px; }

/* SIDEBAR */
.specs-sidebar {
  position: sticky; top: 126px;
  align-self: start;
  padding: 36px 24px 36px 32px;
  background: var(--paper);
}
.sidebar-title {
  font-family: var(--serif);
  font-weight: 700; font-size: 28px;
  color: var(--ink);
  padding-bottom: 14px; margin-bottom: 6px;
  border-bottom: 2px solid var(--ink);
}
.spec-dl { display: block; }
.spec-dl > div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 10px 0; border-bottom: var(--line);
}
.spec-dl dt {
  font-family: var(--condensed);
  letter-spacing: 1.5px;
  font-size: 14px;
  color: var(--bronze-d);
  flex: 0 0 auto;
  padding-top: 3px;
}
.spec-dl dd { font-size: 14.5px; color: var(--ink); text-align: right; }
.sidebar-cta { width: 100%; margin-top: 22px; }

/* ===== ABOUT — 純文字 ===== */
.about-text { max-width: 820px; }
.about-text h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--paper);
  margin-bottom: 22px;
}
.about-text h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--bronze);
  margin: 34px 0 10px;
}
.about-text p {
  font-size: 16px;
  color: #cfc5b2;
  margin-bottom: 8px;
}

/* ===== PLAY BAND ===== */
.play-band {
  background: var(--oxblood);
  color: var(--paper);
  text-align: center;
  padding: 80px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.band-eyebrow { font-family: var(--condensed); letter-spacing: 5px; font-size: 16px; color: #e9c9a0; margin-bottom: 14px; }
.band-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 34px;
}
.band-btn { background: var(--paper); color: var(--oxblood); box-shadow: 5px 5px 0 var(--ink); }
.band-btn:hover { background: var(--ivory); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--paper); text-align: center; padding: 56px 0 44px; }
.footer-logo { height: 120px; width: auto; margin-bottom: 22px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 28px; margin-bottom: 22px; }
.footer-nav a {
  font-family: var(--condensed); letter-spacing: 2px; font-size: 15px;
  color: #cfc5b2; text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: var(--bronze); }
.footer-text { color: #8a8070; font-size: 13.5px; max-width: 680px; margin: 0 auto 14px; line-height: 1.8; }
.footer-copy { color: #6a6052; font-size: 12.5px; font-family: var(--condensed); letter-spacing: 2px; }

/* ===== 響應式 ===== */
@media (max-width: 980px) {
  .play-layout { grid-template-columns: 1fr; }
  .demo-col { padding: 32px 0; border-right: none; border-bottom: 2px solid var(--ink); }
  .specs-sidebar { position: static; padding: 32px 24px; }
}
@media (max-width: 880px) {
  .nav {
    position: fixed; top: 110px; right: 0;
    width: min(320px, 84vw); height: calc(100vh - 110px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0;
    background: var(--paper);
    border-left: 2px solid var(--ink);
    padding: 20px 28px;
    transform: translateX(110%); transition: transform .3s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav > a { padding: 16px 0; width: 100%; border-bottom: var(--line); font-size: 22px; }
  .header-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 12px; margin: 22px 0 0; }
  .header-lang, .nav a.header-btn { width: 100%; min-height: 48px; }
  .nav a.header-btn { padding: 14px 18px; font-size: 18px; }
  .burger { display: flex; }

  .demo-stage { aspect-ratio: 3 / 5; box-shadow: 5px 5px 0 var(--bronze); }
  body.demo-locked { overflow: hidden; }
  .demo-frame.demo-fullscreen {
    position: fixed; inset: 0; z-index: 9999;
    width: 100vw; height: 100dvh; margin: 0;
  }
  .demo-frame.demo-fullscreen .demo-stage {
    aspect-ratio: auto; width: 100%; height: 100%; border: none; box-shadow: none;
  }
  .demo-frame.demo-fullscreen .demo-close { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hstat { min-width: 50%; border-bottom: var(--line); }
  .hstat:nth-child(2) { border-right: none; }
  .brand-logo { height: 72px; }
  .topbar-inner { height: 90px; }
  .nav { top: 90px; height: calc(100vh - 90px); }
  .demo-col { gap: 32px; }
}


/* ===== WP: Entry content (standard text zone / about section) ===== */
.standard-content-section { background: var(--dark); }
.standard-content-section .about-wrap { max-width: 820px; margin: 0 auto; }

.entry-content h1, .entry-content h2 {
  font-family: var(--serif); font-weight: 700;
  color: var(--paper); margin-top: 1.8em; margin-bottom: .5em;
}
.entry-content h1 { font-size: clamp(26px,3.5vw,40px); }
.entry-content h2 { font-size: clamp(22px,3vw,34px); }
.entry-content h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(18px,2.5vw,26px);
  color: var(--bronze); margin: 30px 0 8px;
}
.entry-content h4 { font-size: 18px; color: var(--bronze-d); margin: 20px 0 6px; }
.entry-content p  { color: #cfc5b2; font-size: 16px; margin-bottom: .9em; line-height: 1.8; }
.entry-content strong { color: var(--paper); }
.entry-content a  { color: var(--bronze); text-decoration: underline; }
.entry-content a:hover { color: var(--gold); }
.entry-content ul, .entry-content ol { color: #cfc5b2; font-size: 16px; margin: 0 0 1em 1.4em; line-height: 1.8; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
.entry-content table th, .entry-content table td { padding: 10px 16px; border: 1px solid rgba(176,141,79,.2); font-size: 15px; }
.entry-content table th { background: rgba(176,141,79,.1); color: var(--bronze); font-family: var(--condensed); letter-spacing: 1px; }
.entry-content table td { color: #cfc5b2; }
.entry-content blockquote { border-left: 3px solid var(--oxblood); padding: 12px 20px; margin: 0 0 1.5em; background: rgba(122,31,43,.08); color: #cfc5b2; font-style: italic; }
.entry-content img { max-width: 100%; height: auto; display: block; margin: 0 auto 1em; }
.entry-content hr { border: none; border-top: var(--line); margin: 2em 0; }

/* ===== WP: Generic page (privacy/terms/about/search) ===== */
.page-generic {
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    linear-gradient(180deg, rgba(251,248,241,.72), rgba(236,228,214,.9)),
    radial-gradient(circle at 14% 14%, rgba(176,141,79,.12), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(122,31,43,.08), transparent 36%);
}
.page-generic__section { padding: clamp(48px, 7vw, 84px) 0 clamp(64px, 8vw, 96px); }
.page-generic__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  background: rgba(251,248,241,.96);
  border: 2px solid rgba(28,22,16,.24);
  box-shadow: 10px 10px 0 rgba(28,22,16,.12);
}
.page-generic__head { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
.page-generic__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 4vw, 52px); color: var(--ink); line-height: 1.1;
}
.page-generic__body,
.page-generic .entry-content {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}
.page-generic__body h1,
.page-generic__body h2,
.page-generic__body h3,
.page-generic .entry-content h1,
.page-generic .entry-content h2,
.page-generic .entry-content h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  margin: 1.5em 0 .5em;
}
.page-generic__body h4,
.page-generic .entry-content h4 { color: var(--oxblood-d); }
.page-generic__body p,
.page-generic .entry-content p,
.page-generic .entry-content li,
.page-generic .entry-content td,
.page-generic .entry-content dd,
.page-generic .entry-content figcaption {
  color: var(--ink-soft);
}
.page-generic__body p,
.page-generic .entry-content p { margin-bottom: .9em; }
.page-generic__body strong,
.page-generic .entry-content strong { color: var(--ink); }
.page-generic__body a,
.page-generic .entry-content a,
.page-generic article a { color: var(--oxblood); }
.page-generic__body a:hover,
.page-generic .entry-content a:hover,
.page-generic article a:hover { color: var(--oxblood-d); }
.page-generic .entry-content ul,
.page-generic .entry-content ol { color: var(--ink-soft); }
.page-generic .entry-content blockquote {
  color: var(--ink-soft);
  background: rgba(122,31,43,.06);
  border-left-color: var(--oxblood);
}
.page-generic .entry-content table th,
.page-generic .entry-content table td { border-color: rgba(28,22,16,.22); }
.page-generic .entry-content table th { background: rgba(176,141,79,.16); color: var(--ink); }
.page-generic .entry-content table td { color: var(--ink-soft); }
.page-generic .navigation a,
.page-generic .nav-links a { color: var(--oxblood); }

@media (max-width: 600px) {
  .page-generic__inner {
    padding: 24px 20px;
    box-shadow: 6px 6px 0 rgba(28,22,16,.12);
  }
}

/* ===== WP: Admin bar compensation ===== */
.admin-bar .topbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .topbar { top: 46px; }
  .admin-bar .nav { top: calc(156px); height: calc(100vh - 156px); }
}

/* ===== WP: About section on main page (dark background) ===== */
.standard-content-section.section { padding: 80px 0; }


/* ===== WP: Standard Gutenberg buttons ===== */
.entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 42px;
}
.entry-content .wp-block-buttons.aligncenter,
.entry-content .wp-block-button.aligncenter {
  justify-content: center;
  text-align: center;
}
.entry-content .wp-block-button__link,
.entry-content .wp-element-button,
.page-generic .entry-content .wp-block-button__link,
.page-generic .entry-content .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 30px;
  border: 2px solid rgba(201,162,39,.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a227 0%, #f2d36b 48%, #b08d4f 100%);
  color: #161210 !important;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-decoration: none !important;
  text-shadow: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}
.entry-content .wp-block-button__link:hover,
.entry-content .wp-element-button:hover,
.page-generic .entry-content .wp-block-button__link:hover,
.page-generic .entry-content .wp-element-button:hover {
  color: #161210 !important;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.42);
}
.entry-content .wp-block-button__link:active,
.entry-content .wp-element-button:active,
.page-generic .entry-content .wp-block-button__link:active,
.page-generic .entry-content .wp-element-button:active {
  transform: translateY(0);
  box-shadow: 0 7px 18px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.28);
}
.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--bronze) !important;
  border-color: var(--bronze);
  box-shadow: none;
}
.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--bronze);
  color: #161210 !important;
}
@media (max-width: 600px) {
  .entry-content .wp-block-buttons {
    gap: 12px;
  }
  .entry-content .wp-block-button,
  .entry-content .wp-block-button__link,
  .entry-content .wp-element-button {
    width: 100%;
  }
}
/* Hide removed hero top label */
.hero-rule { display: none !important; }
