/* PadelCritic — Reviews redesign (single review + archive hub)
   Fixed navy/gold identity, matching the rest of the live site.

   NOTE: the site's global Additional CSS (Appearance > Customize) forces
   `color` with !important on: a, h1-h6, p, li, span, td, th (site-wide
   navy/gold rules, scoped to body/#page/.site etc). Every color rule below
   that touches one of those tags needs !important + must beat that rule's
   specificity, or it gets silently overridden. Rules on div/section/article/
   custom classes-only selectors don't need it. */

.pcr-hero, .pcr-panel, .pc-page, .pcr-hub {
  --pc-bg: #0B1220;
  --pc-surface: #121B2E;
  --pc-surface-2: #1B2740;
  --pc-border: #28344E;
  --pc-ink: #F2F1EA;
  --pc-ink-muted: #97A2B8;
  --pc-gold: #C8AF64;
  --pc-gold-bright: #E7CD8B;
  --pc-gold-wash: #1F2946;
  --pc-good: #7FAE8D;
  --pc-bad: #C07A63;
  --pc-shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 32px -16px rgba(0,0,0,.55);
  --pc-maxw: 980px;

  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--pc-ink);
}

/* Any page/post the child theme restyles gets body class "pc-dark-page"
   (see functions.php) — one rule set here instead of a per-page-id list. */
body.pc-dark-page {
  background: #0B1220;
}
body.pc-dark-page #masthead,
body.pc-dark-page #masthead .main-header-bar,
body.pc-dark-page #masthead .ast-mobile-header-content {
  background: #0B1220 !important;
}
body.pc-dark-page #masthead .menu-link {
  color: #F2F1EA !important;
}
.pcr-review, .pcr-hub { max-width: var(--pc-maxw); margin: 0 auto; padding: 0 4px 40px; }

.pcr-hero h1, .pcr-hub-head h1, .pc-page h2, .pcr-scorehero .big {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ---------- hero ---------- */
.pcr-hero { padding: 28px 0 8px; }
.pcr-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pc-gold-bright); background: var(--pc-gold-wash); border: 1px solid var(--pc-border);
  border-radius: 999px; padding: 6px 13px; margin-bottom: 14px;
}
.pcr-title, .pcr-hero h1.pcr-title { color: var(--pc-ink) !important; font-size: clamp(28px,4vw,40px); line-height: 1.15; margin: 0 0 14px; text-wrap: balance; }
.pcr-lede p { color: var(--pc-ink-muted) !important; font-size: 15.5px; line-height: 1.7; margin: 0 0 12px; }

/* ---------- score panel ---------- */
.pcr-panel {
  background: var(--pc-surface); border: 1px solid var(--pc-border); border-radius: 16px;
  padding: 24px 26px; box-shadow: var(--pc-shadow); margin: 20px 0 28px;
}
.pcr-scorehero { display: flex; align-items: baseline; gap: 12px; }
.pcr-scorehero .big { font-weight: 700; font-size: 48px; color: var(--pc-gold) !important; line-height: 1; }
.pcr-scorehero .of { color: var(--pc-ink-muted) !important; font-size: 13px; }
.pcr-scorehero-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pc-ink-muted); margin: 4px 0 18px;
}
.pcr-bar-row { display: grid; grid-template-columns: 120px 1fr 40px; align-items: center; gap: 10px; margin-bottom: 9px; }
.pcr-bar-row .lbl { font-size: 12.5px; font-weight: 600; color: var(--pc-ink-muted) !important; }
.pcr-bar-track { height: 8px; border-radius: 999px; background: var(--pc-surface-2); overflow: hidden; }
.pcr-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--pc-gold-bright), var(--pc-gold)); }
.pcr-bar-row .val { font-size: 12.5px; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; color: var(--pc-ink) !important; }
.pcr-panel-cta,
.pcr-panel-cta:hover,
.pcr-panel-cta:focus {
  display: inline-block; margin-top: 18px; font-size: 13px; font-weight: 700; letter-spacing: .02em;
  background: var(--pc-gold); color: #1A1305 !important; border-radius: 9px; padding: 11px 18px; text-decoration: none !important;
}
@media (max-width: 480px) {
  .pcr-bar-row { grid-template-columns: 92px 1fr 34px; }
}

/* ---------- restyle the review body (post_content markup, unchanged HTML) ---------- */
.pc-page { max-width: none; padding: 0; }
.pc-card {
  background: var(--pc-surface); border: 1px solid var(--pc-border); border-radius: 16px;
  box-shadow: var(--pc-shadow); padding: 24px 26px; margin: 20px 0;
}
.pc-card h2 { font-size: 20px; margin: 0 0 14px; color: var(--pc-ink) !important; }
.pc-card h3 { font-family: 'DM Sans'; font-size: 14px; font-weight: 700; letter-spacing: .02em; margin: 14px 0 8px; color: var(--pc-gold-bright) !important; }
.pc-card p { color: var(--pc-ink-muted) !important; font-size: 14.5px; line-height: 1.7; margin: 0 0 12px; }
.pc-card p:last-child { margin-bottom: 0; }

.pc-media { border-radius: 16px; overflow: hidden; padding: 0; }
.pc-media img { width: 100%; height: auto; display: block; }

.pc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-grid-2 ul { list-style: none; margin: 0; padding: 0; }
.pc-grid-2 ul li {
  font-size: 14px; line-height: 1.55; color: var(--pc-ink) !important; margin-bottom: 10px; padding-left: 22px; position: relative;
}
.pc-grid-2 ul li::before {
  position: absolute; left: 0; top: 0; font-weight: 700;
}
.pc-grid-2 > div:first-child ul li::before { content: "\2713"; color: var(--pc-good); }
.pc-grid-2 > div:last-child ul li::before { content: "\2715"; color: var(--pc-bad); }
@media (max-width: 640px) { .pc-grid-2 { grid-template-columns: 1fr; } }

.pc-table { width: 100%; border-collapse: collapse; }
.pc-table th, .pc-table td { border-bottom: 1px solid var(--pc-border); padding: 11px 8px; text-align: left; font-size: 13.5px; }
.pc-table th { color: var(--pc-ink-muted) !important; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; font-size: 11.5px; width: 40%; }
.pc-table td { color: var(--pc-ink) !important; }
.pc-table tr:last-child th, .pc-table tr:last-child td { border-bottom: none; }
/* alternatives table: 3 plain <td> per row instead of th/td — first cell is the product name */
.pc-table td:first-child strong { color: var(--pc-gold-bright) !important; font-weight: 700; }

.pc-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 8px; }
.pc-btn,
.pc-btn:hover,
.pc-btn:focus {
  display: inline-block; padding: 11px 18px; border-radius: 9px; border: 1px solid var(--pc-border);
  font-size: 13px; font-weight: 700; color: var(--pc-ink) !important; text-decoration: none !important;
}
.pc-btn.primary,
.pc-btn.primary:hover,
.pc-btn.primary:focus { background: var(--pc-gold); color: #1A1305 !important; border-color: var(--pc-gold); }
.pc-disclosure { font-size: 12px; color: var(--pc-ink-muted); margin-top: 8px; }

/* ---------- reviews hub / archive ---------- */
.pcr-hub-head { padding: 32px 0 20px; text-align: left; }
.pcr-hub-head h1 { font-size: clamp(26px,3.6vw,34px); margin: 0 0 8px; color: #F2F1EA !important; }
.pcr-hub-sub { color: #97A2B8 !important; font-size: 14.5px; margin: 0; }

#pcr-filters-bar { background: var(--pc-surface); border: 1px solid var(--pc-border); border-radius: 14px; padding: 16px; margin-bottom: 22px; }
#pcr-results.is-loading, .pcr-hub.is-loading #pcr-results { opacity: .5; transition: opacity .15s ease; pointer-events: none; }

.pcr-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; margin-bottom: 12px; }
.pcr-select-form { display: flex; margin: 0; }
.pcr-select-form select {
  appearance: none; -webkit-appearance: none; font-family: inherit;
  font-size: 13px; font-weight: 600; color: var(--pc-ink) !important; background: var(--pc-bg);
  border: 1px solid var(--pc-border); border-radius: 9px; padding: 9px 30px 9px 13px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2397A2B8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
}
.pcr-select-form select:hover, .pcr-select-form select:focus { border-color: var(--pc-gold); outline: none; }

.pcr-search-form { position: relative; flex: 1 1 200px; min-width: 160px; }
.pcr-search-form input[type="search"] {
  width: 100%; font-family: inherit; font-size: 13px; color: var(--pc-ink) !important; background: var(--pc-bg);
  border: 1px solid var(--pc-border); border-radius: 9px; padding: 9px 36px 9px 13px; box-sizing: border-box;
}
.pcr-search-form input[type="search"]::placeholder { color: var(--pc-ink-muted); }
.pcr-search-form input[type="search"]:focus { border-color: var(--pc-gold); outline: none; }
.pcr-search-form button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--pc-ink-muted); padding: 6px; cursor: pointer; display: flex;
}
.pcr-search-form button:hover { color: var(--pc-gold-bright); }

.pcr-sort-form { margin-left: auto; }
.pcr-sort-form label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--pc-ink-muted) !important; }

.pcr-chip-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pcr-chip-row .row-label, .pcr-active-chips .row-label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--pc-ink-muted) !important; }
#pcr-filters-bar .chip, #pcr-filters-bar .chip:hover {
  font-size: 13px; font-weight: 500; background: var(--pc-bg); color: var(--pc-ink-muted) !important;
  border: 1px solid var(--pc-border); border-radius: 999px; padding: 7px 13px; text-decoration: none !important;
}
#pcr-filters-bar .chip.active, #pcr-filters-bar .chip.active:hover {
  background: var(--pc-gold); color: #1A1305 !important; border-color: var(--pc-gold); font-weight: 700;
}

.pcr-active-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--pc-border); }
.pcr-active-chips .active-chip, .pcr-active-chips .active-chip:hover {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  background: var(--pc-gold-wash); color: var(--pc-gold-bright) !important; border: 1px solid var(--pc-border);
  border-radius: 999px; padding: 5px 10px; text-decoration: none !important;
}
.pcr-active-chips .active-chip span { opacity: .8; }
.pcr-active-chips .clear, .pcr-active-chips .clear:hover { font-size: 12.5px; color: var(--pc-ink-muted) !important; text-decoration: underline !important; font-weight: 600; margin-left: 4px; }

.pcr-count { color: var(--pc-ink-muted) !important; font-size: 13px; margin: 0 0 14px; }

.pcr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 820px) { .pcr-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pcr-grid { grid-template-columns: 1fr; } }

.pcr-card {
  background: var(--pc-surface); border: 1px solid var(--pc-border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--pc-shadow); display: flex; flex-direction: column;
}
.pcr-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--pc-surface-2); }
.pcr-card-media img {
  width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
  padding: 14px; box-sizing: border-box;
}
.pcr-card-media-fallback { display: block; width: 100%; height: 100%; background: linear-gradient(155deg, var(--pc-surface-2), var(--pc-bg)); }
.pcr-card-badge {
  position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(11,18,32,.75); border: 1.5px solid var(--pc-gold-bright); color: #fff;
}
.pcr-card-badge .n { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px; line-height: 1; color: #fff !important; }
.pcr-card-badge .l { font-size: 7px; letter-spacing: .07em; text-transform: uppercase; opacity: .75; margin-top: 1px; color: #fff !important; }
.pcr-card-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcr-card-brand { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--pc-ink-muted) !important; }
.pcr-card-body h3 { margin: 0; font-size: 15.5px; line-height: 1.3; font-family: 'DM Sans'; font-weight: 700; }
.pcr-card-body h3 a,
.pcr-card-body h3 a:hover,
.pcr-card-body h3 a:focus { color: #F2F1EA !important; text-decoration: none !important; }
.pcr-card-meta { font-size: 12px; color: var(--pc-ink-muted) !important; }
.pcr-card-excerpt { font-size: 12.5px; line-height: 1.55; color: var(--pc-ink-muted) !important; margin: 0; flex: 1; }

/* ---------- guides: shared bits reused from the old (light-theme) inline
   markup — .pc-kicker/.pc-intro/.pc-callout also appear in reviews' raw
   HTML but were never used there, so styling them here is additive only ---------- */
.pc-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pc-gold-bright) !important; background: var(--pc-gold-wash); border: 1px solid var(--pc-border);
  border-radius: 999px; padding: 6px 13px; margin-bottom: 12px;
}
.pc-intro { font-size: 16px !important; color: var(--pc-ink) !important; line-height: 1.75; }
.pc-callout {
  background: var(--pc-surface-2); border-left: 3px solid var(--pc-gold); border-radius: 0 12px 12px 0;
  padding: 16px 20px; margin: 16px 0;
}
.pc-callout strong { display: block; margin-bottom: 4px; font-size: 15px; color: var(--pc-ink) !important; }
.pc-callout p { margin: 0 !important; color: var(--pc-ink-muted) !important; font-size: 14px !important; }

/* older plain guides/articles: <article class="pc-article"><p class="sub">...</p> */
.pc-article { max-width: none; }
.pc-article .sub { font-size: 16px !important; color: var(--pc-ink-muted) !important; line-height: 1.7; }

/* numbered "signs" list (e.g. "5 Signs It's Time to Replace Yours") */
.pc-sign { border: 1px solid var(--pc-border); border-radius: 12px; padding: 16px 20px; margin: 14px 0; display: flex; gap: 14px; align-items: flex-start; background: var(--pc-bg); }
.pc-sign-num { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 800; color: rgba(200,175,100,.4) !important; flex-shrink: 0; width: 36px; }
.pc-sign-body h3 { margin: 0 0 6px !important; color: var(--pc-ink) !important; text-transform: none !important; letter-spacing: normal !important; font-family: 'DM Sans' !important; font-size: 15px !important; }
.pc-sign-body p { margin: 0 !important; color: var(--pc-ink-muted) !important; font-size: 14px !important; }

/* ---------- About page ---------- */
.pc-about { max-width: 860px; margin: 0 auto; padding: 24px 0; }
.pc-about h1 { font-size: clamp(28px,4vw,36px); margin: 0 0 10px; color: var(--pc-ink) !important; font-family: 'Playfair Display', Georgia, serif; }
.pc-about h2 { font-size: 19px; margin: 0 0 12px; color: var(--pc-ink) !important; font-family: 'Playfair Display', Georgia, serif; }
.pc-about > p, .pc-about .muted { color: var(--pc-ink-muted) !important; line-height: 1.7; }
.pc-about .card {
  border: 1px solid var(--pc-border); border-radius: 14px; background: var(--pc-surface);
  box-shadow: var(--pc-shadow); padding: 22px 24px; margin: 16px 0;
}
.pc-about .card p { color: var(--pc-ink-muted) !important; line-height: 1.7; margin: 10px 0 !important; }
.pc-about .card p.muted { font-size: 13.5px; }
.pc-about .card ul { margin: 8px 0 0 18px; color: var(--pc-ink-muted) !important; }
.pc-about .card li { margin: 6px 0; color: var(--pc-ink-muted) !important; }
.pc-about .card li strong { color: var(--pc-ink) !important; }
.pc-about .card strong { color: var(--pc-ink) !important; }
.pc-about .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 820px) { .pc-about .grid { grid-template-columns: 1fr; } }
.pc-about .pill {
  display: inline-block; background: var(--pc-gold-wash); border: 1px solid var(--pc-border);
  color: var(--pc-gold-bright) !important; border-radius: 999px; padding: 6px 12px; margin: 6px 8px 0 0; font-size: 12.5px; font-weight: 600;
}
.pc-about .disclosure { font-size: 12.5px; color: var(--pc-ink-muted) !important; }
.pc-about a { color: var(--pc-gold-bright) !important; text-decoration: none !important; }
.pc-about a:hover { color: var(--pc-gold) !important; }

/* compact pick variant used in round-up articles: tag + name + score + link */
.pc-pick-tag { font-size: 10px; font-weight: 700; color: var(--pc-gold-bright) !important; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; display: block; }
.pc-pick-link { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--pc-gold-bright) !important; }

/* ranked "picks" list */
.pc-pick { border: 1px solid var(--pc-border); border-radius: 12px; padding: 18px 20px; margin: 14px 0; background: var(--pc-bg); }
.pc-pick-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.pc-pick-rank { font-size: 11px; font-weight: 800; color: var(--pc-gold-bright) !important; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.pc-pick-name { font-size: 18px; font-weight: 800; margin: 0 0 4px; line-height: 1.2; color: var(--pc-ink) !important; }
.pc-pick-sub { font-size: 13px; color: var(--pc-ink-muted) !important; }
.pc-pick-score { font-size: 32px; font-weight: 800; color: var(--pc-gold) !important; line-height: 1; flex-shrink: 0; font-family: 'Playfair Display', serif; }
.pc-pick-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pc-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.pc-tag-shape { background: var(--pc-surface-2); color: var(--pc-ink-muted) !important; }
.pc-tag-level { background: var(--pc-gold-wash); color: var(--pc-gold-bright) !important; }
.pc-tag-price { background: rgba(127,174,141,.15); color: var(--pc-good) !important; }
.pc-pick-body p { font-size: 14px !important; color: var(--pc-ink-muted) !important; line-height: 1.65; margin: 0 0 10px !important; }
.pc-pick-body p:last-child { margin: 0 !important; }
.pc-pick-verdict { font-size: 13px; color: var(--pc-ink-muted) !important; font-style: italic; border-top: 1px solid var(--pc-border); margin-top: 12px; padding-top: 10px; }
.pc-pick-verdict strong { color: var(--pc-ink) !important; font-style: normal; }

/* A-vs-B comparisons */
.pc-versus { border: 1px solid var(--pc-border); border-radius: 12px; padding: 18px 20px; margin: 14px 0; background: var(--pc-bg); }
.pc-versus-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: start; }
.pc-versus-a, .pc-versus-b { font-size: 14px !important; color: var(--pc-ink-muted) !important; line-height: 1.6; }
.pc-versus-a strong, .pc-versus-b strong { display: block; color: var(--pc-ink) !important; font-size: 15px; margin-bottom: 6px; }
.pc-versus-vs { font-size: 12px; font-weight: 800; color: var(--pc-gold-bright) !important; letter-spacing: .05em; padding-top: 4px; }
@media (max-width: 560px) { .pc-versus-row { grid-template-columns: 1fr; } .pc-versus-vs { text-align: center; } }

/* decision-tree rows + mini cards */
.pc-decision { border: 1px solid var(--pc-border); border-radius: 12px; padding: 16px 20px; margin: 14px 0; background: var(--pc-bg); }
.pc-decision-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.pc-decision-row:last-child { margin-bottom: 0; }
.pc-decision-label { min-width: 120px; font-weight: 700; font-size: 13px; color: var(--pc-gold-bright) !important; text-transform: uppercase; letter-spacing: .05em; padding-top: 2px; }
.pc-decision-val { font-size: 14px; color: var(--pc-ink-muted) !important; line-height: 1.55; }
@media (max-width: 560px) { .pc-decision-row { flex-direction: column; gap: 4px; } .pc-decision-label { min-width: auto; } }

.pc-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 16px 0; }
@media (max-width: 640px) { .pc-grid-3 { grid-template-columns: 1fr; } }
.pc-mini-card { border: 1px solid var(--pc-border); border-radius: 10px; padding: 14px 16px; margin: 10px 0; background: var(--pc-bg); }
.pc-mini-card h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: var(--pc-ink) !important; }
.pc-mini-card p { font-size: 13.5px !important; margin: 0 !important; color: var(--pc-ink-muted) !important; }
.pc-mini-card .pc-tag { margin-bottom: 8px; }

/* -----------------------------------------------------------
   News hub (WP RSS Aggregator "RSS Aggregator Display" block,
   plugin v5 — real markup is .wpra-item / .feed-source / etc,
   NOT the old .wprss-item classes from the legacy v4 shortcode.
   .pc-news sits directly in a plain page (not .pcr-hub/.pc-page),
   so colors here are hardcoded rather than reading the --pc-*
   vars, which are only defined on those container classes.
------------------------------------------------------------ */
.pc-news { padding: 8px 0 16px; }

/* Reuses .pcr-hub-head/.pcr-hub-sub (hardcoded colors, no --pc-* var
   dependency) for a title+subtitle matching Guides/Articles hubs;
   .pc-news-head just adds the centered max-width this plain page lacks. */
.pc-news-head { max-width: 980px; margin: 0 auto; padding: 32px 20px 4px; }

.pc-news ul.wpra-item-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

.pc-news li.wpra-item {
  list-style: none !important;
  background: #121B2E !important;
  border: 0.5px solid #28344E !important;
  border-radius: 10px !important;
  padding: 18px 20px !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: border-color .18s ease, transform .18s ease;
}
.pc-news li.wpra-item:hover {
  border-color: #C8AF64 !important;
  transform: translateY(-2px);
}

.pc-news li.wpra-item > a {
  display: block;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: #F0EBE0 !important;
  text-decoration: none !important;
  line-height: 1.4;
  margin: 0 0 12px !important;
}
.pc-news li.wpra-item > a:hover { color: #C8AF64 !important; }

.pc-news .wprss-feed-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.pc-news .feed-source,
.pc-news .feed-date {
  display: inline-block;
  font-size: .74rem !important;
  color: #97A2B8 !important;
  background: rgba(200,175,100,.08);
  border: 0.5px solid #28344E;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.6;
}
.pc-news .feed-source a {
  color: #97A2B8 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.pc-news .feed-source a:hover { color: #C8AF64 !important; }
.pc-news .feed-author {
  font-size: .74rem !important;
  color: #5E6A85 !important;
}

.pc-news .wpra-nav-links {
  /* Additional CSS hides ".nav-links" site-wide (for WP's post-navigation
     widget) — override it here, it's the same class the plugin reuses. */
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 8px;
}
.pc-news .wpra-nav-links a,
.pc-news .wpra-nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  border: 0.5px solid #28344E;
  color: #97A2B8 !important;
  font-size: .85rem !important;
  font-weight: 600;
  text-decoration: none !important;
}
.pc-news .wpra-nav-links a:hover {
  border-color: #C8AF64 !important;
  color: #C8AF64 !important;
}
.pc-news .wpra-nav-links .wpra-feed-current-page {
  background: #C8AF64 !important;
  border-color: #C8AF64 !important;
  color: #0B1220 !important;
  font-weight: 800;
}

@media (max-width: 700px) {
  .pc-news ul.wpra-item-list { grid-template-columns: 1fr !important; }
}

/* -----------------------------------------------------------
   Home page (EN post 49 / PT post 1247). Consolidated out of
   9 near-identical <style> blocks that used to be duplicated
   inline in post_content per language — same selectors/values,
   moved here so both languages share one source and a copy
   edit no longer needs touching CSS twice.
------------------------------------------------------------ */
.pc-hero {
  background: #0B1220;
  padding: 64px 40px 48px;
  text-align: center;
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,175,100,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  color: #C8AF64;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pc-hero-eyebrow::before,
.pc-hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: #C8AF64;
}
.pc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #F0EBE0;
  margin: 0 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pc-hero h1 em {
  font-style: italic;
  color: #C8AF64;
  font-weight: 400;
}
.pc-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #6A6050;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}
.pc-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.pc-hero-btn-primary {
  background: #C8AF64;
  color: #0B1220;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.pc-hero-btn-primary:hover { background: #B09A50; color: #0B1220; }
.pc-hero-btn-ghost {
  background: transparent;
  color: #9A9080;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  padding: 13px 24px;
  border-radius: 4px;
  border: 0.5px solid rgba(200,175,100,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.pc-hero-btn-ghost:hover {
  border-color: #C8AF64;
  color: #C8AF64;
}
.pc-hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #6A6050;
  background: rgba(200,175,100,0.05);
  border: 0.5px solid rgba(200,175,100,0.15);
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .pc-hero { padding: 48px 20px 36px; }
  .pc-hero h1 { font-size: 34px; }
  .pc-hero-sub { font-size: 15px; }
}

.pc-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
  background: #0B1220;
}
.pc-stat {
  padding: 20px 40px;
  border-right: 0.5px solid rgba(200,175,100,0.15);
  display: flex;
  gap: 16px;
  align-items: center;
}
.pc-stat:last-child { border-right: none; }
.pc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #C8AF64;
  flex-shrink: 0;
}
.pc-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #6A6050;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .pc-stats-bar { grid-template-columns: 1fr; }
  .pc-stat { border-right: none; border-bottom: 0.5px solid rgba(200,175,100,0.15); padding: 16px 24px; }
  .pc-stat:last-child { border-bottom: none; }
}

.pc-home-course {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(200,175,100,0.05);
  border-top: 0.5px solid rgba(200,175,100,0.15);
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
}
.pc-home-course__kicker {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(200,175,100,0.08);
  color: #C8AF64;
  border: 0.5px solid rgba(200,175,100,0.3);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.pc-home-course h3 {
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #F0EBE0;
}
.pc-home-course p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: #6A6050;
  line-height: 1.5;
  font-size: 13px;
  max-width: 60ch;
}
.pc-home-course__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.pc-home-course__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  background: #C8AF64;
  color: #0B1220 !important;
  -webkit-text-fill-color: #0B1220 !important;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background .15s;
}
.pc-home-course__btn:hover {
  background: #B09A50;
  color: #0B1220 !important;
  -webkit-text-fill-color: #0B1220 !important;
}
.pc-home-course__meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #6A6050;
}
@media (max-width: 768px) {
  .pc-home-course {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
  .pc-home-course__cta {
    width: 100%;
    align-items: stretch;
  }
  .pc-home-course__btn { text-align: center; }
  .pc-home-course p { max-width: none; }
}

.pc-articles-home {
  background: #0B1220;
  padding: 40px 40px 32px;
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
}
.pc-articles-home-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pc-articles-home-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0EBE0;
  margin: 0;
}
.pc-articles-home-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #C8AF64;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.pc-articles-home-link:hover { color: #F0EBE0; }
.pc-articles-home-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.pc-article-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(200,175,100,0.03);
  border: 0.5px solid rgba(200,175,100,0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease;
}
.pc-article-row:hover {
  border-color: rgba(200,175,100,0.3);
  background: rgba(200,175,100,0.06);
}
.pc-article-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #C8AF64;
  border: 0.5px solid rgba(200,175,100,0.3);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.pc-article-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #E8E2D4;
  flex: 1;
}
.pc-article-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #6A6050;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pc-articles-home { padding: 28px 20px; }
  .pc-article-row { flex-wrap: wrap; }
}

.pc-latest {
  background: #0B1220;
  padding: 48px 40px 40px;
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
}
.pc-latest-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pc-latest-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #F0EBE0;
  margin: 0;
}
.pc-latest-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #C8AF64;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.pc-latest-link:hover { color: #F0EBE0; }
.pc-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pc-review-card {
  background: rgba(255,255,255,0.025);
  border: 0.5px solid rgba(200,175,100,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
  text-decoration: none;
  display: block;
}
.pc-review-card:hover {
  border-color: rgba(200,175,100,0.4);
  transform: translateY(-2px);
}
.pc-review-card-img {
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.04);
  border-bottom: 0.5px solid rgba(200,175,100,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pc-review-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pc-review-card-type {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #C8AF64;
  border: 0.5px solid rgba(200,175,100,0.35);
  background: rgba(11,18,32,0.75);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pc-review-card-score {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #C8AF64;
}
.pc-review-card-body {
  padding: 14px 16px 16px;
}
.pc-review-card-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #6A6050;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pc-review-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #F0EBE0;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pc-review-card-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-bar-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #6A6050;
  width: 56px;
  flex-shrink: 0;
}
.pc-bar-track {
  flex: 1;
  height: 3px;
  background: rgba(200,175,100,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.pc-bar-fill {
  height: 100%;
  background: #C8AF64;
  border-radius: 2px;
}
.pc-bar-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #C8AF64;
  font-weight: 500;
  width: 24px;
  text-align: right;
}
@media (max-width: 900px) {
  .pc-latest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pc-latest { padding: 32px 20px; }
  .pc-latest-grid { grid-template-columns: 1fr; }
}

.pc-insta {
  background: #0B1220;
  padding: 40px 40px 32px;
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
}
.pc-insta-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pc-insta-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0EBE0;
  margin: 0;
}
.pc-insta-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #C8AF64;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.pc-insta-link:hover { color: #F0EBE0; }
.pc-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.pc-reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid rgba(200,175,100,0.15);
  text-decoration: none;
  display: block;
  background: rgba(255,255,255,0.03);
  transition: border-color .18s ease, transform .18s ease;
}
.pc-reel-card:hover {
  border-color: rgba(200,175,100,0.4);
  transform: translateY(-2px);
}
.pc-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11,18,32,0.55);
  border: 0.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-reel-play svg {
  width: 16px;
  height: 16px;
  fill: #F0EBE0;
  margin-left: 2px;
}
.pc-reel-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #F0EBE0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .pc-insta { padding: 28px 20px; }
  .pc-insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pc-insta-grid { grid-template-columns: 1fr; }
}

.pc-guides-section {
  background: #0B1220;
  padding: 48px 40px 40px;
  border-bottom: 0.5px solid rgba(200,175,100,0.15);
}
.pc-guides-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.pc-guides-intro {
  padding-right: 32px;
  border-right: 0.5px solid rgba(200,175,100,0.15);
}
.pc-guides-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #F0EBE0;
  margin: 0 0 12px;
}
.pc-guides-intro p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6A6050;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}
.pc-guides-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-guide-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(200,175,100,0.04);
  border: 0.5px solid rgba(200,175,100,0.12);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease;
}
.pc-guide-item:hover {
  border-color: rgba(200,175,100,0.35);
  background: rgba(200,175,100,0.07);
}
.pc-guide-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(200,175,100,0.2);
  width: 28px;
  flex-shrink: 0;
}
.pc-guide-text-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #E8E2D4;
  margin-bottom: 2px;
}
.pc-guide-text-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #6A6050;
}
@media (max-width: 768px) {
  .pc-guides-section { padding: 32px 20px; }
  .pc-guides-inner { grid-template-columns: 1fr; gap: 24px; }
  .pc-guides-intro { padding-right: 0; border-right: none; border-bottom: 0.5px solid rgba(200,175,100,0.15); padding-bottom: 20px; }
}

.pc-about-section {
  background: #0B1220;
  padding: 48px 40px 56px;
}
.pc-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.pc-about-divider {
  border-left: 0.5px solid rgba(200,175,100,0.15);
  padding-left: 48px;
}
.pc-about-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #C8AF64;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pc-about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0EBE0;
  margin: 0 0 14px;
}
.pc-about-section p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6A6050;
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 16px;
}
.pc-about-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #C8AF64;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.pc-about-link:hover { color: #F0EBE0; }

/* Newsletter — real MailPoet form (see functions.php), restyled
   to match the site's pill input + gold button instead of
   MailPoet's own default look. Scoped under .pc-newsletter-form
   so we only touch our own embed, not MailPoet admin screens. */
.pc-newsletter-form { margin-top: 20px; }
.pc-newsletter-form .mailpoet_form_popup_overlay { display: none !important; }
.pc-newsletter-form form.mailpoet_form {
  display: flex !important;
  flex-direction: column;
  gap: 10px !important;
  padding: 0 !important;
  background: none !important;
  width: 100% !important;
}
.pc-newsletter-form .mailpoet_paragraph {
  margin: 0 !important;
  width: 100% !important;
}
.pc-newsletter-form .mailpoet_hp_email_label { display: none !important; }
.pc-newsletter-form input.mailpoet_text {
  width: 100% !important;
  padding: 12px 16px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 0.5px solid rgba(200,175,100,0.25) !important;
  border-radius: 4px !important;
  color: #E8E2D4 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  outline: none;
  box-sizing: border-box !important;
  margin: 0 !important;
  transition: border-color .15s;
}
.pc-newsletter-form input.mailpoet_text::placeholder { color: #6A6050; opacity: 1; }
.pc-newsletter-form input.mailpoet_text:focus { border-color: rgba(200,175,100,0.5) !important; }
.pc-newsletter-form input.mailpoet_submit {
  width: 100% !important;
  padding: 12px 18px !important;
  background: #C8AF64 !important;
  color: #0B1220 !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box !important;
  margin: 0 !important;
  transition: background .15s;
}
.pc-newsletter-form input.mailpoet_submit:hover { background: #B09A50 !important; }
.pc-newsletter-form .mailpoet_form_loading { display: none !important; }
.pc-newsletter-form .mailpoet_message { margin: 8px 0 0 !important; padding: 0 !important; }
.pc-newsletter-form .mailpoet_validate_success {
  color: #7FAE8D !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
}
.pc-newsletter-form .mailpoet_validate_error {
  color: #C07A63 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
}
.pc-newsletter-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #6A6050;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .pc-about-section { padding: 32px 20px 40px; }
  .pc-about-inner { grid-template-columns: 1fr; gap: 32px; }
  .pc-about-divider { border-left: none; padding-left: 0; border-top: 0.5px solid rgba(200,175,100,0.15); padding-top: 32px; }
}

.pc-footer-cta {
  background: rgba(200,175,100,0.04);
  border-top: 0.5px solid rgba(200,175,100,0.15);
  padding: 48px 40px;
  text-align: center;
}
.pc-footer-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.pc-footer-cta-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #C8AF64;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pc-footer-cta-eyebrow::before,
.pc-footer-cta-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: rgba(200,175,100,0.4);
}
.pc-footer-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #F0EBE0;
  margin: 0 0 14px;
  line-height: 1.2;
}
.pc-footer-cta h2 em {
  font-style: italic;
  color: #C8AF64;
  font-weight: 400;
}
.pc-footer-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6A6050;
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 28px;
}
.pc-footer-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pc-footer-cta-btn-primary {
  background: #C8AF64;
  color: #0B1220;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s;
}
.pc-footer-cta-btn-primary:hover { background: #B09A50; color: #0B1220; }
.pc-footer-cta-btn-ghost {
  background: transparent;
  color: #9A9080;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  padding: 13px 24px;
  border-radius: 4px;
  border: 0.5px solid rgba(200,175,100,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.pc-footer-cta-btn-ghost:hover {
  border-color: #C8AF64;
  color: #C8AF64;
}
@media (max-width: 768px) {
  .pc-footer-cta { padding: 36px 20px; }
  .pc-footer-cta h2 { font-size: 22px; }
  .pc-footer-cta-actions { flex-direction: column; align-items: center; }
  .pc-footer-cta-btn-primary,
  .pc-footer-cta-btn-ghost { width: 100%; max-width: 320px; text-align: center; }
}
