/*
Theme Name: hfreedom.com
Theme URI: https://hfreedom.com
Author: hfreedom.com
Author URI: https://hfreedom.com
Description: Coupon deals homepage theme for hfreedom.com.
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hfreedom
*/

:root {
  --purple: #741FA2;
  --purple-dark: #5e1983;
  --purple-light: #f4ebf9;
  --text: #1a1d21;
  --text-muted: #5f6368;
  --border: #e6e2ea;
  --star: #f0a000;
  --radius: 10px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: #fff;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Disclosure bar */
.rc-disclosure {
  background: #f6f5f7;
  font-size: 12.5px;
  color: #5f6368;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.rc-disclosure a { color: var(--purple); font-weight: 600; }

/* Header */
.rc-header {
  background: var(--purple);
  position: sticky;
  top: 0;
  z-index: 100;
}
.rc-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.rc-header__burger {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: none;
}
.rc-header__burger svg { width: 24px; height: 24px; }

.rc-logo-wrap { display: flex; align-items: center; margin-right: 8px; }
.rc-logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
  color: #fff;
  white-space: nowrap;
}
.rc-logo .dotcom { font-family: Inter, sans-serif; font-weight: 600; font-size: 16px; vertical-align: middle; }

.rc-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
}
.rc-nav-links a, .rc-nav-links button {
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.rc-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  gap: 8px;
  min-width: 260px;
  flex: 1;
  max-width: 340px;
}
.rc-search input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--text);
}
.rc-search svg { width: 16px; height: 16px; color: #8a8f98; flex-shrink: 0; }

.rc-signin {
  background: #fff;
  color: var(--purple);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .rc-nav-links { display: none; }
  .rc-search { display: none; }
  .rc-header__burger { display: block; }
}
@media (max-width: 420px) {
  .rc-header__nav { gap: 12px; }
  .rc-logo { font-size: 21px; }
  .rc-signin { padding: 9px 14px; font-size: 13px; }
}

/* Section heading */
.rc-section { padding: 56px 0 8px; }
.rc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 3px solid var(--text);
  padding-top: 18px;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.rc-section__head h1, .rc-section__head h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}
.rc-section__link {
  color: var(--purple);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Grids */
.rc-grid { display: grid; gap: 20px; padding-bottom: 40px; }
.rc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rc-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .rc-grid--3, .rc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rc-grid--3, .rc-grid--4, .rc-grid--2 { grid-template-columns: 1fr; }
}

/* Coupon card */
.rc-coupon-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .15s ease, transform .15s ease;
}
.rc-coupon-card:hover { box-shadow: 0 6px 20px rgba(20,10,30,.08); transform: translateY(-2px); }
.rc-coupon-card__logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px;
  margin-bottom: 14px;
}
.rc-coupon-card__store { font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.rc-coupon-card__off { color: var(--purple); font-weight: 800; font-size: 26px; margin: 0 0 8px; }
.rc-coupon-card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0 0 14px; min-height: 42px; }
.rc-coupon-card__meta { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; display: flex; align-items: center; gap: 4px; }
.rc-coupon-card__meta .star { color: var(--star); }
.rc-btn-dashed {
  border: 2px dashed var(--purple);
  color: var(--purple);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}
.rc-btn-dashed:hover { background: var(--purple-light); }

/* Store card */
.rc-store-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rc-store-card__body { flex: 1; min-width: 0; }
.rc-store-card__name a { display: block; }
.rc-store-card__name a:hover { color: var(--purple); }
/* In the A-Z directory the card also carries a Follow control, which drops to
   its own full-width row rather than squeezing beside the name. */
.rc-store-card .rc-follow { flex-basis: 100%; }
.rc-store-card__logo {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.rc-store-card__name { font-weight: 700; font-size: 15px; margin: 0 0 2px; }
.rc-store-card__count { color: var(--text-muted); font-size: 13px; margin: 0; }

/* Deal card */
.rc-deal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.rc-deal-card__img {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #eee, #ddd);
  display: flex; align-items: center; justify-content: center;
  color: #b3aebb; font-size: 13px; font-weight: 600;
}
.rc-deal-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--purple); color: #fff;
  font-weight: 800; font-size: 13px;
  padding: 4px 9px; border-radius: 6px;
}
.rc-deal-card__body { padding: 16px 18px 20px; }
.rc-deal-card__store { color: var(--purple); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .03em; margin: 0 0 6px; }
.rc-deal-card__title { font-weight: 700; font-size: 15px; margin: 0 0 10px; line-height: 1.4; }
.rc-deal-card__price { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 15px; }
.rc-deal-card__price .now { font-weight: 800; }
.rc-deal-card__price .was { color: #9aa0a6; text-decoration: line-through; }

/* Guide card */
.rc-guide-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #ece6f2, #d8c9e6);
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #8a6da3; font-size: 13px; font-weight: 600;
}
.rc-guide-card__title { font-size: 20px; font-weight: 800; margin: 0 0 8px; line-height: 1.3; }
.rc-guide-card__desc { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 14px; }
.rc-guide-card__meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; }
.rc-guide-card__meta b { color: var(--text); font-weight: 600; }

/* Category card */
.rc-cat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rc-cat-card__name { font-weight: 700; font-size: 16px; }
.rc-cat-card__count { color: var(--text-muted); font-size: 13.5px; white-space: nowrap; }

/* FAQ */
.rc-faq { padding-bottom: 40px; }
.rc-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.rc-faq-item__q {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}
.rc-faq-item__q svg { flex-shrink: 0; transition: transform .2s ease; color: var(--purple); }
.rc-faq-item.open .rc-faq-item__q svg { transform: rotate(180deg); }
.rc-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
  padding: 0 22px;
}
.rc-faq-item.open .rc-faq-item__a { max-height: 200px; padding-bottom: 20px; }
.rc-faq-item__a p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Footer */
.rc-footer { background: var(--purple); color: #fff; padding: 56px 0 0; margin-top: 40px; }
.rc-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.rc-footer__brand .rc-logo { color: #fff; }
.rc-footer__desc { font-size: 14.5px; line-height: 1.7; color: #e6d6ef; margin: 18px 0 20px; max-width: 320px; }
.rc-footer__social { display: flex; gap: 10px; }
.rc-footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.rc-footer__social svg { width: 16px; height: 16px; }
.rc-footer h4 { font-size: 15px; margin: 0 0 16px; opacity: .75; }
.rc-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rc-footer ul a { font-size: 14.5px; color: #f2e9f7; }
.rc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 22px 0;
  font-size: 13px;
  color: #d9c3e6;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .rc-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .rc-footer__top { grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
.rc-mobile-nav {
  position: fixed; inset: 0; background: #fff; z-index: 200;
  transform: translateX(-100%); transition: transform .25s ease;
  padding: 20px 24px; overflow-y: auto;
}
.rc-mobile-nav.open { transform: translateX(0); }
.rc-mobile-nav__close { background: none; border: none; cursor: pointer; margin-bottom: 20px; }
.rc-mobile-nav a { display: block; padding: 14px 0; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--border); }

/* Hero */
.rc-hero {
  background: linear-gradient(120deg, #4b3aa0 0%, #7a2394 45%, #9c1f6b 75%, #3c1361 100%);
  padding: 64px 24px 44px;
  text-align: center;
}
.rc-hero__inner { display: flex; flex-direction: column; align-items: center; }
.rc-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 26px;
}
.rc-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.1;
}
.rc-hero__subtitle {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin: 0 0 32px;
}
.rc-hero__search {
  display: flex;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  margin: 0 0 40px;
}
.rc-hero__search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 999px;
  color: var(--text);
}
.rc-hero__search button {
  background: linear-gradient(135deg, #e07a2e, #c8551b);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  white-space: nowrap;
}
.rc-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.rc-hero__stat { display: flex; flex-direction: column; align-items: center; }
.rc-hero__stat strong { color: #fff; font-size: 27px; font-weight: 800; line-height: 1.3; }
.rc-hero__stat span { color: rgba(255,255,255,.75); font-size: 13px; }

@media (max-width: 560px) {
  .rc-hero { padding: 48px 20px 36px; }
  .rc-hero h1 { font-size: 34px; }
  .rc-hero__stats { gap: 28px 32px; }
}

/* Store marquee */
.rc-marquee {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
}
.rc-marquee__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: rc-marquee-scroll 28s linear infinite;
}
.rc-marquee:hover .rc-marquee__track { animation-play-state: paused; }
.rc-marquee__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: #6b6f76;
  white-space: nowrap;
  flex-shrink: 0;
}
.rc-marquee__logo .dot {
  width: 26px; height: 26px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 800; flex-shrink: 0;
}
@keyframes rc-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================================
   Inner pages: store, category, guide, deal, directory
   ====================================================================== */

/* Shared atoms ---------------------------------------------------------- */
.rc-muted { color: var(--text-muted); }
.rc-dot { color: #c9c3cf; }

.rc-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 0 28px;
}
.rc-lede a { color: var(--purple); font-weight: 600; }

.rc-section__note { color: var(--text-muted); font-size: 14px; white-space: nowrap; }

.rc-badge {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.rc-logo-tile,
.rc-store-card__logo,
.rc-store-tile__logo,
.rc-store-hero__logo,
.rc-review-card__avatar,
.rc-byline__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
  flex-shrink: 0;
}
.rc-logo-tile { width: 40px; height: 40px; font-size: 13px; }
.rc-store-hero__logo { width: 76px; height: 76px; border-radius: 14px; font-size: 24px; }
.rc-store-tile__logo { width: 46px; height: 46px; font-size: 15px; }
.rc-review-card__avatar { width: 38px; height: 38px; font-size: 13px; border-radius: 50%; }
.rc-byline__avatar { width: 42px; height: 42px; font-size: 14px; border-radius: 50%; }

/* Stars */
.rc-stars { display: inline-flex; gap: 1px; line-height: 1; }
.rc-star { font-size: 14px; }
.rc-star--full { color: var(--star); }
.rc-star--half { color: var(--star); opacity: .55; }
.rc-star--empty { color: #d8d3dd; }

/* Buttons */
.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.rc-btn--solid { background: var(--purple); color: #fff; }
.rc-btn--solid:hover { background: var(--purple-dark); }
.rc-btn--ghost { background: #fff; color: var(--purple); border: 1px solid var(--border); }
.rc-btn--ghost:hover { border-color: var(--purple); }
.rc-btn--lg { padding: 15px 30px; font-size: 15.5px; }
.rc-btn--code {
  position: relative;
  background: var(--purple);
  color: #fff;
  padding-left: 62px;
  overflow: hidden;
}
.rc-btn--code__peek {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 54px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--purple);
  border: 2px dashed var(--purple);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .05em;
}
.rc-btn--code.is-revealed { background: #fff; color: var(--purple); border: 2px dashed var(--purple); padding-left: 22px; }
.rc-btn--code.is-revealed .rc-btn--code__peek { display: none; }

/* Breadcrumb ------------------------------------------------------------ */
.rc-crumb { padding: 18px 0 0; }
.rc-crumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}
.rc-crumb li + li::before { content: "\203A"; margin-right: 8px; color: #c0b9c7; }
.rc-crumb a { color: var(--purple); font-weight: 600; }
.rc-crumb span { color: var(--text-muted); }

/* Store hero ------------------------------------------------------------ */
.rc-store-hero { border-bottom: 1px solid var(--border); padding: 22px 0 26px; }
.rc-store-hero__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.rc-store-hero__body { flex: 1; min-width: 240px; }
.rc-store-hero__body h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
}
.rc-store-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.rc-store-hero__rating { display: inline-flex; align-items: center; gap: 7px; }
.rc-store-hero__rating a { color: var(--purple); font-weight: 600; }
.rc-store-hero__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.rc-store-hero__best { font-size: 14px; color: var(--text-muted); }
.rc-store-hero__best b { color: var(--purple); font-weight: 800; }

@media (max-width: 700px) {
  .rc-store-hero__cta { align-items: flex-start; width: 100%; }
  .rc-store-hero__body h1 { font-size: 25px; }
}

/* Tabs ------------------------------------------------------------------ */
.rc-tabs { border-bottom: 1px solid var(--border); background: #fff; }
.rc-tabs__inner { display: flex; gap: 28px; overflow-x: auto; }
.rc-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
}
.rc-tab.is-active { color: var(--purple); border-bottom-color: var(--purple); }

/* Coupon list ----------------------------------------------------------- */
.rc-coupon-list { list-style: none; margin: 0; padding: 0; }
.rc-coupon-row {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: box-shadow .15s ease;
}
.rc-coupon-row:hover { box-shadow: 0 6px 20px rgba(20,10,30,.07); }
.rc-coupon-row__off {
  flex-shrink: 0;
  width: 104px;
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.15;
}
.rc-coupon-row__main { flex: 1; min-width: 0; }
.rc-coupon-row__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; line-height: 1.35; }
.rc-coupon-row__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.rc-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0f8a4d;
  font-weight: 700;
}
.rc-details-toggle {
  background: none;
  border: none;
  padding: 8px 0 0;
  color: var(--purple);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rc-details-toggle svg { transition: transform .2s ease; }
.rc-details-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.rc-coupon-row__details {
  display: none;
  margin: 10px 0 0;
  padding: 12px 14px;
  background: #faf8fb;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.rc-coupon-row__details.is-open { display: block; }
.rc-coupon-row__action { flex-shrink: 0; }

@media (max-width: 720px) {
  .rc-coupon-row { flex-wrap: wrap; gap: 14px; padding: 18px; }
  .rc-coupon-row__off { width: auto; text-align: left; font-size: 19px; }
  .rc-coupon-row__main { flex-basis: 100%; order: 3; }
  .rc-coupon-row__action { margin-left: auto; }
  .rc-coupon-row__action .rc-btn { width: 100%; }
}

/* Table ----------------------------------------------------------------- */
.rc-table-wrap { overflow-x: auto; padding-bottom: 40px; }
.rc-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.rc-table th, .rc-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.rc-table th { background: #faf8fb; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.rc-table code {
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 13px;
}

/* Prose ----------------------------------------------------------------- */
.rc-prose { max-width: 820px; padding-bottom: 40px; font-size: 16px; line-height: 1.75; color: #35383d; }
.rc-prose h3 { font-size: 22px; font-weight: 800; margin: 34px 0 12px; color: var(--text); }
.rc-prose p { margin: 0 0 16px; }
.rc-prose a { color: var(--purple); font-weight: 600; }
.rc-prose ol, .rc-prose ul { margin: 0 0 16px; padding-left: 22px; }
.rc-prose li { margin-bottom: 10px; }
.rc-steps li::marker { font-weight: 800; color: var(--purple); }
.rc-checklist, .rc-hacks { list-style: none; padding-left: 0; }
.rc-checklist li, .rc-hacks li {
  position: relative;
  padding-left: 28px;
}
.rc-checklist li::before, .rc-hacks li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

/* Reviews --------------------------------------------------------------- */
.rc-reviews {
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rc-reviews__score { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rc-reviews__score strong { font-size: 42px; font-weight: 800; line-height: 1; }
.rc-reviews__score span { font-size: 13px; color: var(--text-muted); }
.rc-reviews__bars { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 7px; }
.rc-reviews__bar { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.rc-reviews__bar-label { width: 26px; flex-shrink: 0; }
.rc-reviews__bar-track { flex: 1; height: 8px; background: #f0edf2; border-radius: 999px; overflow: hidden; }
.rc-reviews__bar-fill { display: block; height: 100%; background: var(--star); }
.rc-reviews__bar-pct { width: 34px; text-align: right; flex-shrink: 0; }

.rc-review-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.rc-review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rc-review-card__sub { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.rc-review-card p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }

/* Toolbar, sort, chips -------------------------------------------------- */
.rc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 22px;
}
.rc-toolbar__count { font-size: 14px; color: var(--text-muted); }
.rc-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.rc-sort select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}
.rc-search--inline {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  min-width: 240px;
  max-width: 340px;
  flex: 1;
}
.rc-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.rc-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}
.rc-chip.is-active { background: var(--purple); border-color: var(--purple); color: #fff; }

/* Store tile (category grid) -------------------------------------------- */
.rc-store-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.rc-store-tile:hover { box-shadow: 0 6px 20px rgba(20,10,30,.08); transform: translateY(-2px); }
.rc-store-tile__name { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.rc-store-tile__name a:hover { color: var(--purple); }
.rc-store-tile__meta { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); }
.rc-store-tile__count { font-size: 13.5px; color: var(--text-muted); margin: 6px 0 0; }

/* Pagination ------------------------------------------------------------ */
.rc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 44px;
  flex-wrap: wrap;
}
.rc-pagination .page-numbers,
.rc-pagination__page,
.rc-pagination__next {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.rc-pagination .page-numbers.current,
.rc-pagination__page.is-active { background: var(--purple); border-color: var(--purple); color: #fff; }
.rc-pagination__gap { color: var(--text-muted); padding: 0 4px; }

/* A-Z directory --------------------------------------------------------- */
.rc-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 28px;
}
.rc-alpha a, .rc-alpha span {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.rc-alpha a { color: var(--purple); }
.rc-alpha a:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.rc-alpha .is-empty { color: #cfc8d5; background: #faf8fb; }

.rc-alpha-group { padding-bottom: 12px; }
.rc-alpha-group__letter {
  font-size: 22px;
  font-weight: 800;
  margin: 18px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  color: var(--purple);
}

/* Guide index ----------------------------------------------------------- */
.rc-guide-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.rc-guide-feature__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #ece6f2, #d8c9e6);
  display: flex; align-items: center; justify-content: center;
  color: #8a6da3; font-size: 14px; font-weight: 600;
}
.rc-guide-feature__body { padding: 28px 32px 28px 4px; }
.rc-guide-feature__body h2 { font-size: 28px; font-weight: 800; margin: 0 0 12px; line-height: 1.25; }
.rc-guide-feature__body p { color: var(--text-muted); font-size: 15.5px; line-height: 1.65; margin: 0 0 18px; }
@media (max-width: 760px) {
  .rc-guide-feature { grid-template-columns: 1fr; gap: 0; }
  .rc-guide-feature__body { padding: 24px; }
  .rc-guide-feature__body h2 { font-size: 22px; }
}
.rc-guide-card__thumb { border-radius: var(--radius); margin-bottom: 16px; aspect-ratio: 16/9; object-fit: cover; width: 100%; }

/* Article --------------------------------------------------------------- */
.rc-article { padding-top: 26px; }
.rc-article--narrow { max-width: 860px; }
.rc-article__head { padding-bottom: 22px; }
.rc-article__head h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
}
@media (max-width: 620px) { .rc-article__head h1 { font-size: 28px; } }

.rc-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.rc-byline > div { display: flex; flex-direction: column; gap: 2px; }
.rc-byline__date { color: var(--text-muted); font-size: 13px; }
.rc-byline__share { margin-left: auto; display: flex; gap: 8px; }
.rc-byline__share a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.rc-byline__share svg { width: 15px; height: 15px; }

.rc-article__hero {
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #ece6f2, #d8c9e6);
  border-radius: var(--radius);
  margin: 26px 0;
  display: flex; align-items: center; justify-content: center;
  color: #8a6da3; font-size: 14px; font-weight: 600;
}
.rc-article__thumb img { border-radius: var(--radius); margin: 26px 0; }

/* Picks summary box ----------------------------------------------------- */
.rc-picks-box {
  background: #faf8fb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.rc-picks-box h2 { font-size: 19px; font-weight: 800; margin: 0 0 16px; }
.rc-picks-box ol { margin: 0; padding-left: 20px; }
.rc-picks-box li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.rc-picks-box li:last-child { border-bottom: none; }
.rc-picks-box a { color: var(--text); }
.rc-picks-box a:hover { color: var(--purple); }
.rc-picks-box__price { color: var(--purple); font-weight: 700; white-space: nowrap; }

/* Ranked pick ----------------------------------------------------------- */
.rc-pick {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.rc-pick__media { position: relative; }
.rc-pick__img {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f3f0f6, #e4dced);
  border-radius: var(--radius);
  color: #a99bb5; font-size: 13px; font-weight: 600;
}
.rc-pick__rank {
  position: absolute; top: 12px; left: 12px;
  width: 34px; height: 34px;
  background: var(--purple); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  z-index: 1;
}
.rc-pick__off {
  position: absolute; top: 12px; right: 12px;
  background: #e11d48; color: #fff;
  font-size: 12.5px; font-weight: 800;
  padding: 4px 9px; border-radius: 6px;
  z-index: 1;
}
.rc-pick__award {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 11px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.rc-pick__name { font-size: 24px; font-weight: 800; margin: 0 0 10px; line-height: 1.25; }
.rc-pick__name a:hover { color: var(--purple); }
.rc-pick__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 14px; color: var(--text-muted); }
.rc-score { background: var(--purple-light); color: var(--purple); padding: 4px 10px; border-radius: 6px; font-size: 13px; }
.rc-score b { font-weight: 800; }
.rc-pick__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; font-size: 20px; }
.rc-pick__price .now { font-weight: 800; }
.rc-pick__price .was { color: #9aa0a6; text-decoration: line-through; font-size: 15px; }
.rc-pick__buy { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

.rc-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.rc-proscons__col { border-radius: var(--radius); padding: 16px 18px; }
.rc-proscons__col--pro { background: #f1faf5; }
.rc-proscons__col--con { background: #fdf3f4; }
.rc-proscons h3 { font-size: 14px; font-weight: 800; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .04em; }
.rc-proscons__col--pro h3 { color: #0f8a4d; }
.rc-proscons__col--con h3 { color: #c8324a; }
.rc-proscons ul { margin: 0; padding-left: 18px; }
.rc-proscons li { font-size: 14px; line-height: 1.55; margin-bottom: 7px; color: #3d4046; }

.rc-pick__review { font-size: 15.5px; line-height: 1.7; color: #35383d; margin: 0; }

@media (max-width: 800px) {
  .rc-pick { grid-template-columns: 1fr; gap: 20px; }
  .rc-pick__name { font-size: 20px; }
  .rc-proscons { grid-template-columns: 1fr; }
}

/* Deal single ----------------------------------------------------------- */
.rc-deal-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px 0 10px;
  align-items: start;
}
.rc-deal-single__media { position: relative; }
.rc-deal-single__img {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f3f0f6, #e4dced);
  border-radius: var(--radius);
  color: #a99bb5; font-size: 14px; font-weight: 600;
}
.rc-deal-single__body h1 { font-size: 30px; font-weight: 800; line-height: 1.25; margin: 0 0 18px; }
.rc-deal-single__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.rc-deal-single__price .now { font-size: 34px; font-weight: 800; }
.rc-deal-single__price .was { color: #9aa0a6; text-decoration: line-through; font-size: 18px; }
.rc-deal-single__save { background: #e11d48; color: #fff; font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 6px; }
.rc-deal-single__note { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; }
.rc-deal-single__facts { list-style: none; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--border); }
.rc-deal-single__facts li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.rc-deal-single__facts span { color: var(--text-muted); }

@media (max-width: 760px) {
  .rc-deal-single { grid-template-columns: 1fr; gap: 24px; }
  .rc-deal-single__body h1 { font-size: 23px; }
}

/* Tab panels ------------------------------------------------------------ */
.rc-tabpanel[hidden] { display: none; }

/* =========================================================================
   Authentication: header account menu + sign-in dialog
   ====================================================================== */

/* The header control is an <a> so it still works without JavaScript. */
.rc-signin {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Account menu ---------------------------------------------------------- */
.rc-account { position: relative; flex-shrink: 0; }
.rc-account__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.rc-account__avatar { width: 28px; height: 28px; font-size: 11px; border-radius: 50%; }
.rc-account__name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc-account__toggle svg { transition: transform .2s ease; }
.rc-account.is-open .rc-account__toggle svg { transform: rotate(180deg); }

.rc-account__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(20,10,30,.14);
  padding: 8px;
  z-index: 300;
}
.rc-account.is-open .rc-account__menu { display: block; }
.rc-account__email {
  display: block;
  padding: 8px 12px 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
  word-break: break-all;
}
.rc-account__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.rc-account__menu a:hover { background: var(--purple-light); color: var(--purple); }
.rc-account__signout { color: #c8324a !important; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 12px !important; border-radius: 0 !important; }

@media (max-width: 420px) {
  .rc-account__name { display: none; }
}

/* Dialog ---------------------------------------------------------------- */
body.rc-modal-open { overflow: hidden; }

.rc-modal { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 20px; }
.rc-modal[hidden] { display: none; }
.rc-modal__backdrop { position: absolute; inset: 0; background: rgba(26,20,32,.55); backdrop-filter: blur(2px); }
.rc-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 34px 34px 26px;
  box-shadow: 0 24px 60px rgba(20,10,30,.28);
  max-height: 92vh;
  overflow-y: auto;
}
.rc-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
.rc-modal__close:hover { color: var(--text); }

.rc-modal__head { text-align: center; margin-bottom: 22px; }
.rc-logo--dark { color: var(--purple); }
.rc-modal__head h2 { font-size: 22px; font-weight: 800; margin: 16px 0 8px; }
.rc-modal__head p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Messages */
.rc-auth-msg {
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.rc-auth-msg--error { background: #fdf3f4; color: #b32a41; border: 1px solid #f4d5da; }
.rc-auth-msg--success { background: #f1faf5; color: #0f7a45; border: 1px solid #cdeddd; }

/* Forms */
.rc-auth-form { display: none; }
.rc-auth-form.is-active { display: block; }

.rc-field { display: block; margin-bottom: 16px; }
.rc-field > span { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.rc-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
}
.rc-field input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-light); }
.rc-field small { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-muted); }

.rc-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 13.5px;
}
.rc-check { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); cursor: pointer; }
.rc-check input { accent-color: var(--purple); }

.rc-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}
.rc-link:hover { text-decoration: underline; }

.rc-btn--block { width: 100%; }
.rc-btn:disabled { opacity: .6; cursor: not-allowed; }

.rc-auth-alt { text-align: center; font-size: 14px; color: var(--text-muted); margin: 18px 0 0; }
.rc-auth-legal { text-align: center; font-size: 12.5px; color: var(--text-muted); margin: 22px 0 0; line-height: 1.55; }
.rc-auth-legal a { color: var(--purple); font-weight: 600; }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.rc-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

@media (max-width: 460px) {
  .rc-modal__dialog { padding: 30px 22px 22px; }
}

/* =========================================================================
   Member account: saved coupons, followed stores
   ====================================================================== */

.rc-account__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rc-account__count {
  background: var(--purple);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rc-account__count[hidden] { display: none; }

/* Save / follow toggles -------------------------------------------------- */
.rc-save, .rc-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
}
.rc-save svg, .rc-follow svg { width: 15px; height: 15px; flex-shrink: 0; }
.rc-save:hover, .rc-follow:hover { border-color: var(--purple); color: var(--purple); }
.rc-save.is-active, .rc-follow.is-active {
  background: var(--purple-light);
  border-color: var(--purple);
  color: var(--purple);
}
.rc-save.is-active svg, .rc-follow.is-active svg { fill: currentColor; }
.rc-save:disabled, .rc-follow:disabled { opacity: .55; cursor: wait; }

.rc-follow--compact { padding: 9px 14px; }

.rc-store-hero__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.rc-coupon-row__action { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.rc-store-tile__actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.rc-store-tile__actions .rc-btn { flex: 1; }

/* Store label on a saved coupon row */
.rc-coupon-row__store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.rc-coupon-row__store:hover { color: var(--purple); }
.rc-logo-tile--sm { width: 22px !important; height: 22px !important; font-size: 9px !important; border-radius: 5px; }

/* Empty states ----------------------------------------------------------- */
.rc-empty {
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 56px 28px;
  margin-bottom: 40px;
}
.rc-empty[hidden] { display: none; }
.rc-empty h2 { font-size: 21px; font-weight: 800; margin: 0 0 10px; }
.rc-empty p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0 auto 22px; max-width: 420px; }

/* Transient error toast --------------------------------------------------- */
.rc-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: #24202a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20,10,30,.3);
  z-index: 500;
}

@media (max-width: 720px) {
  .rc-coupon-row__action { flex-direction: row; }
  .rc-coupon-row__action .rc-save { flex-shrink: 0; }
}

/* Emitted-but-hidden blocks (Customizer preview only) ---------------------- */
.rc-hidden { display: none !important; }

/* Long-form static pages ---------------------------------------------------- */
.rc-prose h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--text);
}
.rc-prose h2:first-child { margin-top: 0; }
.rc-prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.rc-prose th, .rc-prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.rc-prose th { background: #faf8fb; font-weight: 700; }

/* Editor placeholder: a fact only the site owner can supply. */
.rc-todo {
  background: #fff8e6;
  border: 1px solid #f0d79a;
  border-left: 4px solid #e0a021;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #7a5806;
}
.rc-todo b { color: #5e4304; }

/* =========================================================================
   About page
   ====================================================================== */

.rc-about-hero {
  border-bottom: 1px solid var(--border);
  padding: 26px 0 34px;
}
.rc-about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 16px;
}
.rc-about-hero__dek {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 0 14px;
}
.rc-about-hero__meta {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 620px) {
  .rc-about-hero h1 { font-size: 30px; }
  .rc-about-hero__dek { font-size: 16.5px; }
}

/* Stat row */
.rc-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 34px 0 8px;
}
.rc-about-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.rc-about-stat b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 6px;
}
.rc-about-stat span { font-size: 13.5px; color: var(--text-muted); }
@media (max-width: 760px) { .rc-about-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .rc-about-stats { grid-template-columns: 1fr; } }

/* Body */
.rc-about-sec { padding: 40px 0 8px; }
.rc-about-prose { max-width: 860px; font-size: 16.5px; line-height: 1.75; color: #35383d; }
.rc-about-prose h2 {
  font-size: 27px;
  font-weight: 800;
  color: var(--text);
  margin: 42px 0 14px;
  padding-top: 20px;
  border-top: 3px solid var(--text);
}
.rc-about-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.rc-about-prose p { margin: 0 0 16px; }
.rc-about-prose a { color: var(--purple); font-weight: 600; }
.rc-about-prose ul, .rc-about-prose ol { margin: 0 0 18px; padding-left: 22px; }
.rc-about-prose li { margin-bottom: 10px; }

/* Verification steps */
.rc-about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 26px 0 30px;
}
.rc-about-step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.rc-about-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--purple-light);
  color: var(--purple);
  margin-bottom: 14px;
}
.rc-about-step__icon svg { width: 21px; height: 21px; }
.rc-about-step b { display: block; font-size: 15.5px; font-weight: 800; margin-bottom: 7px; }
.rc-about-step p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-muted); }
@media (max-width: 900px) { .rc-about-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rc-about-steps { grid-template-columns: 1fr; } }

/* Team grid */
.author-bio-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 26px 0 30px;
}
.author-item {
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.author-avatar-wrap { flex-shrink: 0; }
.rc-avatar-img, .author-avatar-wrap img {
  width: 66px; height: 66px;
  border-radius: 50%;
  object-fit: cover;
}
.author-content h3 { font-size: 17px; font-weight: 800; margin: 0 0 3px; }
.author-content h3 a:hover { color: var(--purple); }
.author-content__role {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.author-content p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
@media (max-width: 760px) { .author-bio-list { grid-template-columns: 1fr; } }

/* Closing call to action */
.rc-about-cta { background: var(--purple-light); margin-top: 48px; padding: 40px 0; }
.rc-about-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.rc-about-cta h2 { font-size: 25px; font-weight: 800; margin: 0 0 8px; }
.rc-about-cta p { margin: 0; color: var(--text-muted); font-size: 15.5px; line-height: 1.6; max-width: 520px; }
.rc-about-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.rc-about-cta__primary { background: var(--purple); color: #fff; }
.rc-about-cta__primary:hover { background: var(--purple-dark); }
.rc-about-cta__ghost { background: #fff; color: var(--purple); border: 1px solid var(--purple); }
