/* =============================================================
   Help Centre — public-facing styles
   Scope: .r33-hc-* classes
   ============================================================= */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --hc-gold:          #c9a84c;
    --hc-gold-dim:      rgba(201, 168, 76, 0.15);
    --hc-gold-border:   rgba(201, 168, 76, 0.25);
    --hc-bg:            #0a0a0a;
    --hc-card:          #111214;
    --hc-card-hover:    #161a1d;
    --hc-border:        rgba(255, 255, 255, 0.07);
    --hc-border-hover:  rgba(255, 255, 255, 0.14);
    --hc-text:          #e2e2e2;
    --hc-muted:         #888;
    --hc-radius:        12px;
    --hc-radius-sm:     8px;
}

/* ── Main Wrapper ──────────────────────────────────────────── */
.r33-hc-main {
    background: var(--hc-bg);
    min-height: 60vh;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    color: var(--hc-text);
}

.r33-hc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.r33-hc-hero {
    background: linear-gradient(160deg, #0f0f0f 0%, #111 60%, #0d0d0d 100%);
    border-bottom: 1px solid var(--hc-gold-border);
    padding: 64px 24px 52px;
    text-align: center;
}

.r33-hc-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.r33-hc-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hc-gold);
    margin: 0 0 14px;
}

.r33-hc-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
    line-height: 1.1;
}

.r33-hc-hero-sub {
    font-size: 16px;
    color: var(--hc-muted);
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Search */
.r33-hc-search {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid var(--hc-border-hover);
    border-radius: 10px;
    overflow: hidden;
    background: #161616;
    transition: border-color 0.2s;
}

.r33-hc-search:focus-within {
    border-color: var(--hc-gold-border);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.r33-hc-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--hc-text);
    font-family: inherit;
}

.r33-hc-search-input::placeholder {
    color: #555;
}

.r33-hc-search-btn {
    background: var(--hc-gold-dim);
    border: none;
    border-left: 1px solid var(--hc-border-hover);
    color: var(--hc-gold);
    font-size: 13px;
    font-weight: 600;
    padding: 13px 20px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.r33-hc-search-btn:hover {
    background: rgba(201, 168, 76, 0.25);
    color: #e8c86e;
}

/* ── Sections ──────────────────────────────────────────────── */
.r33-hc-section {
    margin-bottom: 56px;
}

.r33-hc-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.r33-hc-section-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0 0 24px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.r33-hc-section-head .r33-hc-section-heading {
    margin-bottom: 4px;
    border-bottom: none;
    padding-bottom: 0;
}

.r33-hc-section-sub {
    font-size: 13px;
    color: var(--hc-muted);
    margin: 0;
}

.r33-hc-view-all {
    font-size: 13px;
    color: var(--hc-gold);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

.r33-hc-view-all:hover {
    border-bottom-color: var(--hc-gold);
}

/* Premium section accent */
.r33-hc-section--premium {
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
    border: 1px solid var(--hc-gold-border);
    border-radius: var(--hc-radius);
    padding: 28px;
    margin-left: -4px;
    margin-right: -4px;
}

/* ── Category Grid ─────────────────────────────────────────── */
.r33-hc-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.r33-hc-cat-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 20px;
    background: var(--hc-card);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    text-decoration: none;
    color: inherit;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
    cursor: pointer;
}

.r33-hc-cat-card:hover {
    background: var(--hc-card-hover);
    border-color: var(--hc-gold-border);
    border-left-color: var(--hc-gold);
    transform: translateY(-2px);
    color: inherit;
}

.r33-hc-cat-card:hover .r33-hc-cat-name {
    color: var(--hc-gold);
}

.r33-hc-cat-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--hc-gold);
    margin-bottom: 4px;
}

.r33-hc-cat-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.r33-hc-cat-desc {
    font-size: 12px;
    color: var(--hc-muted);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.r33-hc-cat-count {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.r33-hc-cat-count--soon {
    color: #444;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.r33-hc-cat-arrow {
    opacity: 0;
    transform: translateX(-4px);
    display: inline-block;
    transition: opacity 0.15s, transform 0.15s;
    font-weight: 400;
}

.r33-hc-cat-card:hover .r33-hc-cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Guide Card Grid ───────────────────────────────────────── */
.r33-hc-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.r33-hc-guide-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Guide Card ────────────────────────────────────────────── */
.r33-gc {
    display: flex;
    flex-direction: column;
    background: var(--hc-card);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.r33-gc:hover {
    border-color: var(--hc-border-hover);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.r33-gc--premium {
    border-color: var(--hc-gold-border);
}

.r33-gc--premium:hover {
    border-color: rgba(201, 168, 76, 0.45);
}

/* Thumbnail */
.r33-gc-thumb-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1a1a1a;
}

.r33-gc-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.r33-gc:hover .r33-gc-thumb {
    transform: scale(1.03);
}

.r33-gc-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #141414, #1c1c1c);
}

.r33-gc-thumb-placeholder span {
    font-size: 22px;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.3);
    letter-spacing: -1px;
}

/* Premium badge on thumbnail */
.r33-gc-premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--hc-gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Card Body */
.r33-gc-body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.r33-gc-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hc-gold);
    text-decoration: none;
}

.r33-gc-cat:hover {
    color: #e8c86e;
}

.r33-gc-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.r33-gc-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.15s;
}

.r33-gc-title a:hover {
    color: var(--hc-gold);
}

.r33-gc-excerpt {
    margin: 0;
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.r33-gc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--hc-border);
}

.r33-gc-readtime {
    font-size: 11px;
    color: #555;
    font-weight: 500;
}

.r33-gc-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--hc-gold);
    text-decoration: none;
    transition: color 0.15s;
}

.r33-gc-link:hover {
    color: #e8c86e;
}

/* ── Category Archive Header ───────────────────────────────── */
.r33-hc-cat-header {
    background: var(--hc-card);
    border-bottom: 1px solid var(--hc-border);
    padding: 48px 24px 40px;
}

.r33-hc-cat-header-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.r33-hc-cat-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    color: var(--hc-gold);
    margin: 10px 0 8px;
}

.r33-hc-cat-desc-text {
    font-size: 15px;
    color: var(--hc-muted);
    margin: 0 0 12px;
    max-width: 560px;
    line-height: 1.6;
}

.r33-hc-cat-meta {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.r33-hc-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: #555;
    margin-bottom: 14px;
}

.r33-hc-breadcrumb a {
    color: var(--hc-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.r33-hc-breadcrumb a:hover {
    color: var(--hc-gold);
}

/* ── Sidebar Layout ────────────────────────────────────────── */
.r33-hc-wrap--with-sidebar,
.r33-hc-wrap--article {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
    padding-top: 40px;
}

.r33-hc-grid-col {
    min-width: 0;
}

.r33-hc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 32px;
}

.r33-hc-sidebar-card {
    background: var(--hc-card);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    padding: 20px;
}

.r33-hc-sidebar-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 14px;
}

.r33-hc-sidebar-text {
    font-size: 13px;
    color: var(--hc-muted);
    line-height: 1.55;
    margin: 0 0 12px;
}

.r33-hc-sidebar-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--hc-gold);
    text-decoration: none;
    display: inline-block;
}

.r33-hc-sidebar-more:hover {
    color: #e8c86e;
}

.r33-hc-sidebar-cta {
    border-color: var(--hc-gold-border);
    background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
}

.r33-hc-sidebar-cta-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.55;
    margin: 0 0 14px;
}

/* Full-width button modifier */
.r33-hc-btn--full {
    width: 100%;
    justify-content: center;
}

/* Sidebar related guides list */
.r33-hc-sidebar-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.r33-hc-sidebar-guide-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.r33-hc-sidebar-guide-link:hover {
    background: rgba(255,255,255,0.04);
}

.r33-hc-sidebar-guide-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hc-gold);
}

.r33-hc-sidebar-guide-title {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    transition: color 0.15s;
}

.r33-hc-sidebar-guide-link:hover .r33-hc-sidebar-guide-title {
    color: #fff;
}

/* Topic List */
.r33-hc-topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.r33-hc-topic-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    font-size: 13px;
    color: var(--hc-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.r33-hc-topic-list li a:hover,
.r33-hc-topic-list li.active a {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.r33-hc-topic-list li.active a {
    color: var(--hc-gold);
}

.r33-hc-topic-count {
    font-size: 11px;
    color: #555;
    font-weight: 500;
}

/* Pagination */
.r33-hc-pagination {
    margin-top: 32px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.r33-hc-pagination .page-numbers {
    padding: 7px 14px;
    background: var(--hc-card);
    border: 1px solid var(--hc-border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--hc-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.r33-hc-pagination .page-numbers.current,
.r33-hc-pagination .page-numbers:hover {
    background: var(--hc-gold-dim);
    border-color: var(--hc-gold-border);
    color: var(--hc-gold);
}

.r33-hc-empty {
    color: var(--hc-muted);
    font-size: 14px;
    padding: 32px 0;
}

/* ── Single Article ────────────────────────────────────────── */
.r33-hc-article {
    min-width: 0;
}

.r33-hc-article-header {
    background: var(--hc-card);
    border: 1px solid var(--hc-border);
    border-radius: var(--hc-radius);
    padding: 28px 28px 24px;
    margin-bottom: 28px;
}

.r33-hc-art-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hc-gold);
    text-decoration: none;
    margin-right: 10px;
}

.r33-hc-art-cat:hover {
    color: #e8c86e;
}

.r33-hc-art-premium {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--hc-gold-dim);
    color: var(--hc-gold);
    border: 1px solid var(--hc-gold-border);
    border-radius: 4px;
    padding: 2px 8px;
    vertical-align: middle;
}

.r33-hc-art-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    color: var(--hc-gold);
    line-height: 1.25;
    margin: 14px 0 12px;
    letter-spacing: -0.3px;
}

.r33-hc-art-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: #555;
}

.r33-hc-art-meta span + span::before {
    content: '\2022';
    margin-right: 14px;
}

/* Featured image */
.r33-hc-art-image {
    margin: 0 0 32px;
    border-radius: var(--hc-radius);
    overflow: hidden;
    border: 1px solid var(--hc-border);
}

.r33-hc-art-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article prose */
.r33-hc-art-content {
    font-size: 15px;
    line-height: 1.75;
    color: #ccc;
}

.r33-hc-art-content h2,
.r33-hc-art-content h3,
.r33-hc-art-content h4 {
    color: #fff;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.r33-hc-art-content h2 { font-size: 20px; }
.r33-hc-art-content h3 { font-size: 17px; }
.r33-hc-art-content h4 { font-size: 15px; }

.r33-hc-art-content p { margin-bottom: 18px; }

.r33-hc-art-content ul,
.r33-hc-art-content ol {
    padding-left: 20px;
    margin-bottom: 18px;
}

.r33-hc-art-content li { margin-bottom: 6px; }

.r33-hc-art-content a {
    color: var(--hc-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.r33-hc-art-content a:hover { color: #e8c86e; }

.r33-hc-art-content strong { color: #e8e8e8; }

.r33-hc-art-content blockquote {
    border-left: 3px solid var(--hc-gold);
    padding: 12px 20px;
    margin: 24px 0;
    background: rgba(201,168,76,0.04);
    border-radius: 0 var(--hc-radius-sm) var(--hc-radius-sm) 0;
    color: #aaa;
    font-style: italic;
}

/* Teaser (premium preview) */
.r33-hc-teaser {
    margin-bottom: 0;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    max-height: 220px;
    overflow: hidden;
}

/* Paywall */
.r33-hc-paywall {
    margin-top: 8px;
    padding: 0 0 8px;
}

.r33-hc-paywall-inner {
    background: linear-gradient(135deg, #111 0%, #0e0e0e 100%);
    border: 1px solid var(--hc-gold-border);
    border-radius: var(--hc-radius);
    padding: 36px 32px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.r33-hc-paywall-lock {
    width: 44px;
    height: 44px;
    background: var(--hc-gold-dim);
    border: 1px solid var(--hc-gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--hc-gold);
}

.r33-hc-paywall-lock svg {
    width: 20px;
    height: 20px;
}

.r33-hc-paywall-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.r33-hc-paywall-desc {
    font-size: 14px;
    color: var(--hc-muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

.r33-hc-paywall-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--hc-gold);
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.r33-hc-paywall-login {
    margin: 14px 0 0;
    font-size: 12px;
    color: #555;
}

.r33-hc-paywall-login a {
    color: var(--hc-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Contextual CTA */
.r33-hc-art-cta {
    margin-top: 40px;
    padding: 28px 28px;
    background: var(--hc-gold-dim);
    border: 1px solid var(--hc-gold-border);
    border-radius: var(--hc-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.r33-hc-art-cta-text {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    flex: 1;
    line-height: 1.5;
    min-width: 200px;
}

/* Related section */
.r33-hc-related {
    padding-top: 20px;
    margin-bottom: 40px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.r33-hc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: var(--hc-radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}

.r33-hc-btn--gold {
    background: var(--hc-gold);
    color: #000;
}

.r33-hc-btn--gold:hover {
    background: #d9b85c;
    color: #000;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.r33-hc-btn--lg {
    padding: 14px 28px;
    font-size: 14px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .r33-hc-wrap--with-sidebar,
    .r33-hc-wrap--article {
        grid-template-columns: 1fr;
    }

    .r33-hc-sidebar {
        position: static;
        order: -1;
    }

    .r33-hc-article {
        order: 2;
    }

    .r33-hc-sidebar {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .r33-hc-sidebar-card {
        flex: 1;
        min-width: 220px;
    }
}

@media (max-width: 640px) {
    .r33-hc-hero {
        padding: 44px 20px 36px;
    }

    .r33-hc-cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .r33-hc-guide-grid,
    .r33-hc-guide-grid--3 {
        grid-template-columns: 1fr;
    }

    .r33-hc-wrap {
        padding: 0 16px 40px;
    }

    .r33-hc-art-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .r33-hc-paywall-inner {
        padding: 24px 20px;
    }
}

@media (max-width: 400px) {
    .r33-hc-cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Intent badges (guide card) ─────────────────────────────────────────────── */
.r33-gc-intent-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
    line-height: 1.6;
}
.r33-gc-intent-badge--beginner {
    background: rgba(255,255,255,.07);
    color: var(--hc-muted, #888);
}
.r33-gc-intent-badge--advanced {
    background: rgba(201,168,76,.12);
    color: var(--hc-gold, #c9a84c);
}

/* ── Location coming-soon block ─────────────────────────────────────────────── */
.r33-hc-location-soon {
    padding: 40px 0;
    max-width: 560px;
}
.r33-hc-location-soon-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--hc-text, #e2e2e2);
    margin: 0 0 10px;
}
.r33-hc-location-soon-sub {
    color: var(--hc-muted, #888);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}
.r33-hc-location-soon-sub a {
    color: var(--hc-gold, #c9a84c);
    text-decoration: none;
}
.r33-hc-location-soon-sub a:hover {
    text-decoration: underline;
}
