/*
 * Camp Gear Data — page styles
 *
 * GENERATED FILE — do not edit in place. Edits here are overwritten on the next build.
 * Source:  hostinger/plugin-base/base.css
 *          + sites/camping-gear/data/site.json → plugin.palette
 *          + sites/camping-gear/wordpress/wp-content/plugins/_src/site.css (appended below, if present)
 * Rebuild: node hostinger/src/build-plugin.js --site=camping-gear
 */

/* ─── Design tokens ─────────────────────────────────────── */
/*
 * Values come from this site's palette in data/site.json; the rules that consume them are shared.
 *
 * Two of these are layout rather than colour, and are worth understanding before changing:
 *
 *   --cgd-container  The Hostinger AI theme sets --wp--style--global--content-size to 700px,
 *                    and block themes cap every direct child of an .is-layout-constrained
 *                    wrapper at that value. Our <article> is such a child, so it rendered at
 *                    700px inside a 1313px parent — roughly 600px of dead space, and a
 *                    six-column comparison table squeezed into 652px. Widened here, with
 *                    running prose held to a readable measure separately, so the extra width
 *                    goes to tables and cards rather than to 110-character lines.
 *
 *   --cgd-measure    Text fills the container by default. Set this to a ch value (~78ch) to
 *                    reintroduce a narrower reading column. At a 1120px container, body text
 *                    runs to roughly 110 characters per line — wider than the classic 50-75
 *                    optimum, and a deliberate choice: the container was widened precisely so
 *                    content could use it.
 */

:root {
    --cgd-accent: #10b981; /* emerald-500 */
    --cgd-accent-deep: #059669; /* emerald-600 */
    --cgd-accent-hover: #047857; /* emerald-700 */
    --cgd-accent-dark: #065f46; /* emerald-800 */
    --cgd-accent-soft: #d1fae5; /* emerald-100 */
    --cgd-accent-glow: #a7f3d0; /* emerald-200 */
    --cgd-accent-mid: #6ee7b7; /* emerald-300 */
    --cgd-hero-bg: #ecfdf5; /* emerald-50 */
    --cgd-page-bg: #f8fefb; /* near-white, emerald-tinted */
    --cgd-surface: #ffffff;
    --cgd-border: #a7f3d0; /* emerald-200 */
    --cgd-border-soft: #d1fae5; /* emerald-100 */
    --cgd-heading: #0f172a; /* slate-900 */
    --cgd-heading-accent: #064e3b; /* emerald-900 */
    --cgd-subheading: #065f46; /* emerald-800 */
    --cgd-body: #1e293b; /* slate-800 */
    --cgd-body-mid: #334155; /* slate-700 */
    --cgd-muted: #475569; /* slate-600 */
    --cgd-muted-light: #64748b; /* slate-500 */
    --cgd-neutral-border: #e2e8f0; /* slate-200 */
    --cgd-table-head-bg: #d1fae5; /* emerald-100 */
    --cgd-table-head-text: #064e3b; /* emerald-900 */
    --cgd-table-row-alt: #f8fefb;
    --cgd-callout-bg: #ecfdf5; /* emerald-50 */
    --cgd-callout-border: #34d399; /* emerald-400 */
    --cgd-decision-bg: #f8fefb;
    --cgd-badge: #10b981;
    --cgd-badge-text: #ffffff;
    --cgd-container: 1120px; /* widened from the theme’s 700px cap so comparison tables fit */
    --cgd-measure: 100%; /* set to ~78ch to reintroduce a narrower reading column */
}


/* ─── Force full-width layout (override theme sidebar) ───── */
/*
 * Most WordPress themes reserve space for a sidebar even on pages with no
 * sidebar content, leaving a blank column on the right. These rules expand
 * the theme's primary content area to fill the full container so our
 * article can center itself correctly.
 */

body.camp-gear-data #primary,
body.camp-gear-data .content-area,
body.camp-gear-data #content,
body.camp-gear-data .site-content,
body.camp-gear-data .content-wrap,
body.camp-gear-data .entry-content-wrap,
body.camp-gear-data .entry-content,
body.camp-gear-data .single-content {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
}

body.camp-gear-data #secondary,
body.camp-gear-data .widget-area,
body.camp-gear-data .sidebar {
    display: none !important;
}

/* ─── Layout width ───────────────────────────────────────── */
/*
 * The Hostinger AI theme sets --wp--style--global--content-size to 700px, and block
 * themes cap every direct child of an .is-layout-constrained wrapper at that value.
 * Our <article> is such a child, so it rendered at 700px inside a 1313px parent —
 * about 600px of dead space, and a six-column comparison table squeezed into 652px.
 *
 * Measured in-browser at 1440px viewport after this change:
 *   article 1120 · table 1072 · card grid 1072 · prose 835 (~78 characters)
 *
 * !important is needed because the theme's cap comes from the generated global
 * stylesheet at higher specificity.
 */
body.camp-gear-data .entry-content > .page-content,
body.camp-gear-data .entry-content > .pillar-page,
body.camp-gear-data .page-content,
body.camp-gear-data .pillar-page {
    max-width: var(--cgd-container) !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

/*
 * Prose is LEFT-aligned rather than centred, so headings, body copy and callouts all
 * share one left edge. Centring a narrower column inside the wider container gave them
 * three different left edges, which read as broken alignment.
 *
 * Width is governed by --cgd-measure, currently 100% so text fills the container.
 */
.page-content > h1,
.page-content > p,
.page-content > ul,
.page-content > ol,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > blockquote,
.page-content > .cgd-callout,
.pillar-page > h1,
.pillar-page > p,
.pillar-page > ul,
.pillar-page > ol,
.pillar-page > h2,
.pillar-page > h3,
.pillar-page > h4,
.pillar-page > blockquote,
.pillar-page > .cgd-callout,
.cgd-faq > h2,
.cgd-faq > h3,
.cgd-faq > p {
    max-width: var(--cgd-measure);
    margin-left: 0;
    margin-right: auto;
}

/* The elements the extra width was reclaimed for. */
.page-content > table,
.pillar-page > table,
.page-content > .cgd-hero,
.pillar-page > .cgd-hero,
.page-content > .cgd-card-grid,
.pillar-page > .cgd-card-grid,
.page-content > nav,
.pillar-page > nav {
    max-width: 100%;
}

/*
 * The theme prints the post title as its own <h1> above our content, which already
 * opens with an <h1>. That is two H1s with near-identical text on every page. Ours is
 * the one to keep — it carries the fuller, keyword-bearing headline ("…Compared: 9
 * Sensors by Hub Compatibility" against the theme's bare page title).
 */
/*
 * Matched on the bare block class, NOT on a theme-specific modifier. The original selector
 * required `.hostinger-ai-page-title`, which only exists because water-leak-hub's custom page
 * template adds it — so the rule silently did nothing on any site running a different theme.
 * campgeardata.com is on twentytwentyfive, which emits a plain `.wp-block-post-title`, and shipped
 * two H1s on every page until this was widened.
 *
 * Safe against our own markup: page-pack headings are bare <h1> inside .page-content /
 * .pillar-page and never carry the block class, so only the theme's duplicate is hidden.
 */
body.camp-gear-data .wp-block-post-title,
body.camp-gear-data .wp-block-post-title.hostinger-ai-page-title {
    display: none !important;
}

/* The front page is the one place the theme title is the *only* H1 worth keeping if our own
 * hero somehow fails to render — but our home fragment always opens with an <h1>, so it is
 * hidden there too for consistency. Revisit only if a page ships without its own H1. */

/* Below the container width there is nothing to reclaim — let prose use the room. */
@media (max-width: 1180px) {
    .page-content > h1,
    .page-content > p,
    .page-content > ul,
    .page-content > ol,
    .page-content > h2,
    .page-content > h3,
    .page-content > h4,
    .page-content > blockquote,
    .page-content > .cgd-callout,
    .pillar-page > h1,
    .pillar-page > p,
    .pillar-page > ul,
    .pillar-page > ol,
    .pillar-page > h2,
    .pillar-page > h3,
    .pillar-page > h4,
    .pillar-page > blockquote,
    .pillar-page > .cgd-callout,
    .cgd-faq > h2,
    .cgd-faq > h3,
    .cgd-faq > p {
        max-width: 100%;
    }
}

/* ─── Featured image banner ──────────────────────────────── */
/*
 * The theme's page template shipped with only post-title and post-content — no
 * post-featured-image block at all — so featured images were set in the database and
 * never rendered. The template now includes one; these rules make it a banner rather
 * than a 640px-tall wall of image (the sources are 1344x768, which at container width
 * would otherwise push all content below the fold).
 */
.cgd-page-hero {
    /* Match the content column exactly. The article carries 1.5rem of horizontal
       padding, so the banner has to subtract 3rem from the container or it sits 24px
       proud on each side — close enough to alignment to look like a mistake rather
       than a choice. Measured: banner 1120 at x=153 against content 1072 at x=201. */
    max-width: calc(var(--cgd-container) - 3rem);
    margin-left: auto;
    margin-right: auto;
}

.cgd-page-hero img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* The front page shows its banner above the gradient hero card. An earlier version
   hid it here on the theory that two heroes was one too many — that was the wrong
   call for the site's most important page, which was left as the only page with no
   image at all. */

@media (max-width: 640px) {
    .cgd-page-hero img {
        max-height: 180px;
        border-radius: 8px;
    }
}

/* ─── Product thumbnails in comparison tables ────────────── */
/*
 * The thumbnail sits inside the affiliate anchor, so it inherits the rel="nofollow
 * sponsored" already on that link and reads to Amazon as imagery presented in
 * connection with the link it belongs to.
 *
 * Sources are Amazon CDN renders at _AC_SL320_ (~10 KB). Fixed box + object-fit
 * contain keeps a row height stable regardless of the source aspect ratio, and
 * white background matches Amazon's cut-outs so odd-shaped products do not show a
 * grey block behind them.
 */
.cgd-product-cell a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.cgd-product-thumb {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--cgd-border-soft);
    border-radius: 6px;
    padding: 3px;
}

.cgd-product-name {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cgd-product-cell a:hover .cgd-product-name {
    color: var(--cgd-accent-hover);
}

@media (max-width: 640px) {
    .cgd-product-cell a { gap: 0.5rem; }
    .cgd-product-thumb { width: 40px; height: 40px; }
}

/* ─── Contact form (Contact Form 7) ──────────────────────── */
/*
 * CF7 ships almost no styling — raw browser inputs and a default grey submit button,
 * which on this site looked like an unfinished page. These rules put the form in a
 * card that matches the callout treatment used elsewhere and size the controls to the
 * body text rather than the browser default.
 */
.cgd-contact-form {
    background: var(--cgd-page-bg);
    border: 1px solid var(--cgd-border-soft);
    border-radius: 12px;
    padding: 1.75rem 1.75rem 1.5rem;
    margin: 1.5rem 0 2.5rem;
    max-width: 640px;
}

.cgd-contact-form .wpcf7-form p {
    margin: 0 0 1.15rem;
    max-width: 100%;
}

.cgd-contact-form label {
    display: block;
    font-weight: 600;
    color: var(--cgd-heading-accent);
    font-size: 0.9375rem;
    margin-bottom: 0.35rem;
}

.cgd-contact-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 0.35rem;
}

.cgd-contact-form input[type="text"],
.cgd-contact-form input[type="email"],
.cgd-contact-form input[type="url"],
.cgd-contact-form input[type="tel"],
.cgd-contact-form select,
.cgd-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    font: inherit;
    font-size: 1rem;
    color: var(--cgd-body);
    background: var(--cgd-surface);
    border: 1px solid var(--cgd-border);
    border-radius: 8px;
    padding: 0.65rem 0.8rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/*
 * Height is set here rather than left to CF7's rows attribute. The shortcode takes its
 * size as COLSxROWS, so a transposed `8x40` yields rows="40" — a 1047px textarea that
 * pushes the submit button off-screen. Fixing it in CSS makes the layout immune to that
 * whichever way round the shortcode is written.
 */
.cgd-contact-form textarea {
    height: 190px;
    min-height: 190px;
    max-height: 60vh;
    resize: vertical;
    line-height: 1.6;
}

.cgd-contact-form input:focus,
.cgd-contact-form select:focus,
.cgd-contact-form textarea:focus {
    outline: none;
    border-color: var(--cgd-accent);
    box-shadow: 0 0 0 3px var(--cgd-accent-glow);
}

.cgd-contact-form .cgd-req {
    font-weight: 500;
    color: var(--cgd-muted);
    font-size: 0.8125rem;
}

.cgd-contact-form .cgd-opt {
    font-weight: 400;
    color: var(--cgd-muted-light);
    font-size: 0.8125rem;
}

.cgd-contact-form .cgd-form-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--cgd-muted);
}

.cgd-contact-form .wpcf7-submit {
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--cgd-accent);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cgd-contact-form .wpcf7-submit:hover {
    background: var(--cgd-accent-hover);
}

.cgd-contact-form .wpcf7-submit:focus-visible {
    outline: 3px solid var(--cgd-accent-glow);
    outline-offset: 2px;
}

/* Validation and submission feedback. CF7's defaults are unstyled red text with a
   full-width border that reads as a broken layout. */
.cgd-contact-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #b91c1c;
}

.cgd-contact-form input.wpcf7-not-valid,
.cgd-contact-form select.wpcf7-not-valid,
.cgd-contact-form textarea.wpcf7-not-valid {
    border-color: #dc2626;
}

.cgd-contact-form .wpcf7-response-output {
    margin: 1.25rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border-width: 1px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.cgd-contact-form form.sent .wpcf7-response-output {
    border-color: var(--cgd-accent);
    background: var(--cgd-callout-bg);
    color: var(--cgd-heading-accent);
}

.cgd-contact-form form.invalid .wpcf7-response-output,
.cgd-contact-form form.failed .wpcf7-response-output {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.cgd-contact-form .wpcf7-spinner {
    margin: 0 0 0 0.75rem;
}

@media (max-width: 640px) {
    .cgd-contact-form {
        padding: 1.25rem 1rem 1rem;
        border-radius: 8px;
    }
    .cgd-contact-form .wpcf7-submit { width: 100%; }
}

/* ─── Header lockup: logo + site name ────────────────────── */
/*
 * The Hostinger AI theme hides the site title as soon as a site logo is set — a
 * "logo OR wordmark" pattern. That is a reasonable default for a logo that already
 * contains the brand name, but ours is a bare droplet mark, so setting it silently
 * removed the site's name from the header entirely.
 *
 * Both are shown here: the mark scaled down to sit beside the name rather than
 * dominating at the theme's 80px.
 */
body.camp-gear-data .wp-block-site-title,
body.camp-gear-data .hostinger-ai-site-title {
    display: block !important;
}

body.camp-gear-data .wp-block-site-title a {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;
    color: var(--cgd-heading) !important;
}

body.camp-gear-data .wp-block-site-title a:hover {
    color: var(--cgd-accent-hover) !important;
}

body.camp-gear-data .wp-block-site-logo img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px;
}

body.camp-gear-data .hostinger-ai-menu-wrapper > .wp-block-group:first-child {
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 640px) {
    body.camp-gear-data .wp-block-site-title a { font-size: 1.05rem; }
    body.camp-gear-data .wp-block-site-logo img { width: 36px !important; height: 36px !important; }
}

/* ─── Base ───────────────────────────────────────────────── */

.page-content,
.pillar-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.78;
    color: var(--cgd-body);
    background-color: var(--cgd-surface);
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 3.5rem;
    box-sizing: border-box;
}

/* ─── Hero ───────────────────────────────────────────────── */

.cgd-hero {
    background: linear-gradient(140deg, var(--cgd-hero-bg) 0%, var(--cgd-accent-soft) 100%);
    border: 1px solid var(--cgd-accent-glow);
    border-radius: 12px;
    padding: 3rem 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

.cgd-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cgd-heading-accent);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.cgd-hero p {
    font-size: 1.125rem;
    color: var(--cgd-body-mid);
    margin: 0 0 1.75rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cgd-btn {
    display: inline-block;
    background-color: var(--cgd-accent);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.875rem;
    border-radius: 6px;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: background-color 0.15s ease;
}

.cgd-btn:hover {
    background-color: var(--cgd-accent-hover) !important;
}

/* ─── Typography ─────────────────────────────────────────── */

.page-content h1,
.pillar-page h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--cgd-heading);
    margin: 0 0 0.625rem;
    line-height: 1.28;
}

.page-content h2,
.pillar-page h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--cgd-heading-accent);
    margin: 2.75rem 0 0.875rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--cgd-accent-glow);
    line-height: 1.35;
}

.page-content h3,
.pillar-page h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cgd-subheading);
    margin: 1.875rem 0 0.5rem;
}

.page-content h4,
.pillar-page h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cgd-heading);
    margin: 1.5rem 0 0.375rem;
}

.page-content p,
.pillar-page p {
    margin: 0 0 1.125rem;
}

.cgd-updated {
    font-size: 0.875rem;
    color: var(--cgd-muted-light);
    margin-bottom: 1.625rem;
}

.cgd-lead {
    font-size: 1.125rem;
    color: var(--cgd-body-mid);
    line-height: 1.72;
    margin-bottom: 2rem;
    border-left: 4px solid var(--cgd-accent-mid);
    padding-left: 1rem;
    background: var(--cgd-hero-bg);
    border-radius: 0 6px 6px 0;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

/* ─── Links ──────────────────────────────────────────────── */

.page-content a,
.pillar-page a {
    color: var(--cgd-accent-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.12s;
}

.page-content a:hover,
.pillar-page a:hover {
    color: var(--cgd-accent-hover);
}

/* ─── Lists ──────────────────────────────────────────────── */

.page-content ul,
.pillar-page ul {
    margin: 0.25rem 0 1.25rem 0;
    padding-left: 1.375rem;
}

.page-content ol,
.pillar-page ol {
    margin: 0.25rem 0 1.25rem 0;
    padding-left: 1.5rem;
}

.page-content li,
.pillar-page li {
    margin-bottom: 0.4rem;
}

.page-content ul > li::marker,
.pillar-page ul > li::marker {
    color: var(--cgd-accent);
}

.page-content ol > li::marker,
.pillar-page ol > li::marker {
    color: var(--cgd-accent-deep);
    font-weight: 700;
}

/* ─── Category cards ─────────────────────────────────────── */

.cgd-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.125rem;
    margin: 1.5rem 0 2.25rem;
}

.cgd-card {
    background: var(--cgd-hero-bg);
    border: 1px solid var(--cgd-accent-glow);
    border-radius: 8px;
    padding: 1.25rem 1.25rem 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.cgd-card:hover {
    border-color: var(--cgd-accent-mid);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.14);
}

.cgd-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    color: var(--cgd-accent-deep);
    font-weight: 700;
}

.cgd-card h3 a {
    text-decoration: none;
    color: inherit;
}

.cgd-card h3 a:hover {
    color: var(--cgd-accent-hover);
}

.cgd-card p {
    font-size: 0.9375rem;
    color: var(--cgd-body-mid);
    margin: 0;
    line-height: 1.6;
}

/* ─── Tables ─────────────────────────────────────────────── */

.page-content table,
.pillar-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    font-size: 0.9375rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--cgd-border-soft);
}

.page-content thead,
.pillar-page thead {
    background-color: var(--cgd-table-head-bg);
}

.page-content th,
.pillar-page th {
    color: var(--cgd-table-head-text);
    font-weight: 700;
    text-align: left;
    padding: 0.7rem 1rem;
    border-bottom: 2px solid var(--cgd-accent-mid);
}

.page-content td,
.pillar-page td {
    padding: 0.625rem 1rem;
    border-bottom: 1px solid var(--cgd-border-soft);
    color: var(--cgd-body);
    vertical-align: top;
}

.page-content tr:last-child td,
.pillar-page tr:last-child td {
    border-bottom: none;
}

.page-content tbody tr:nth-child(even) td,
.pillar-page tbody tr:nth-child(even) td {
    background-color: var(--cgd-table-row-alt);
}

/* ─── Callouts ───────────────────────────────────────────── */

.cgd-callout,
blockquote {
    background: var(--cgd-callout-bg);
    border-left: 4px solid var(--cgd-callout-border);
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.375rem;
    margin: 1.75rem 0;
    color: var(--cgd-body-mid);
}

.cgd-callout p:last-child,
blockquote p:last-child {
    margin-bottom: 0;
}

blockquote {
    font-style: italic;
}

/* ─── Decision box ───────────────────────────────────────── */

.cgd-decision {
    background: var(--cgd-hero-bg);
    border: 1px solid var(--cgd-accent-mid);
    border-radius: 8px;
    padding: 1.375rem 1.5rem;
    margin: 2rem 0;
}

.cgd-decision h3 {
    margin-top: 0;
    color: var(--cgd-accent-hover);
    font-size: 1.0625rem;
}

.cgd-decision p:last-child,
.cgd-decision ul:last-child {
    margin-bottom: 0;
}

/* ─── FAQ section ────────────────────────────────────────── */

.cgd-faq h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--cgd-heading);
    border-top: 1px solid var(--cgd-border-soft);
    padding-top: 1.125rem;
    margin-top: 1.375rem;
}

/* ─── Related pages nav ──────────────────────────────────── */

.cgd-related {
    background: var(--cgd-hero-bg);
    border: 1px solid var(--cgd-accent-glow);
    border-radius: 8px;
    padding: 1.375rem 1.5rem;
    margin-top: 3rem;
}

.cgd-related h2 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--cgd-accent-deep);
    margin: 0 0 0.875rem;
    border: none !important;
    padding: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cgd-related ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cgd-related ul li {
    margin: 0;
}

.cgd-related ul li a {
    display: inline-block;
    background: var(--cgd-surface);
    border: 1px solid var(--cgd-accent-mid);
    color: var(--cgd-accent-deep);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.325rem 0.875rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.13s, color 0.13s, border-color 0.13s;
}

.cgd-related ul li a:hover {
    background-color: var(--cgd-accent);
    color: #fff;
    border-color: var(--cgd-accent);
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 640px) {
    .page-content,
    .pillar-page {
        padding: 1.25rem 1rem 2.5rem;
    }

    .cgd-hero {
        padding: 2rem 1.25rem;
    }

    .cgd-hero h1 {
        font-size: 1.5rem;
    }

    .cgd-hero p {
        font-size: 1rem;
    }

    .page-content h1,
    .pillar-page h1 {
        font-size: 1.5rem;
    }

    .page-content h2,
    .pillar-page h2 {
        font-size: 1.25rem;
    }

    .cgd-card-grid {
        grid-template-columns: 1fr;
    }

    .page-content table,
    .pillar-page table {
        font-size: 0.875rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cgd-lead {
        font-size: 1rem;
    }
}


/* ═══ Site-specific additions ══════════════════════════════
 * Source: sites/camping-gear/wordpress/wp-content/plugins/_src/site.css
 * Rules here apply to this site only. When a rule turns up in every site's
 * site.css, promote it into hostinger/plugin-base/base.css instead.
 */

/*
 * Camp Gear Data — site-specific style additions.
 *
 * Appended after hostinger/plugin-base/base.css at build time, so these rules win where they
 * overlap it. Everything here is a rule this site had before the shared base existed and that the
 * base does not carry — mostly .pillar-page typography and table treatment, where this site's page
 * pack uses a different wrapper convention than water-leak-hub's.
 *
 * When a rule here turns up in every site's site.css, promote it into base.css and delete it here.
 */

.page-content strong,
.pillar-page strong {
    color: var(--cgd-heading-accent);
    font-weight: 650;
}

.cgd-updated strong {
    color: var(--cgd-muted) !important;
    font-weight: 600;
}

/* ─── Lists ─────────────────────────────────────────────── */

.page-content ul,
.page-content ol,
.pillar-page ul,
.pillar-page ol {
    margin: 0 0 1.35rem;
    padding-left: 1.4rem;
}

.page-content ul li::marker,
.pillar-page ul li::marker {
    color: var(--cgd-accent-deep);
}

.page-content ol li::marker,
.pillar-page ol li::marker {
    color: var(--cgd-accent-deep);
    font-weight: 650;
}

.page-content thead th,
.pillar-page thead th {
    background: var(--cgd-table-head-bg);
    color: var(--cgd-table-head-text);
    font-weight: 650;
    text-align: left;
    padding: 0.8rem 0.9rem;
    border-bottom: 2px solid var(--cgd-border);
    white-space: nowrap;
}

.page-content tbody td,
.pillar-page tbody td {
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid var(--cgd-neutral-border);
    vertical-align: top;
}

.page-content tbody tr:nth-child(even),
.pillar-page tbody tr:nth-child(even) {
    background: var(--cgd-table-row-alt);
}

.page-content tbody tr:last-child td,
.pillar-page tbody tr:last-child td {
    border-bottom: none;
}

/* ─── Callout and decision boxes ────────────────────────── */

.cgd-callout {
    background: var(--cgd-callout-bg);
    border-left: 4px solid var(--cgd-callout-border);
    border-radius: 0 10px 10px 0;
    padding: 1.15rem 1.35rem;
    margin: 1.75rem 0;
}

.cgd-callout p:last-child {
    margin-bottom: 0;
}

/* ─── Blockquote ────────────────────────────────────────── */

.page-content blockquote,
.pillar-page blockquote {
    background: var(--cgd-accent-soft);
    border-left: 4px solid var(--cgd-accent);
    border-radius: 0 10px 10px 0;
    margin: 1.75rem 0;
    padding: 1.1rem 1.35rem;
    color: var(--cgd-body-mid);
    font-style: normal;
}

.page-content blockquote p:last-child,
.pillar-page blockquote p:last-child {
    margin-bottom: 0;
}

/* ─── FAQ ───────────────────────────────────────────────── */

.cgd-faq {
    margin: 2.75rem 0 1rem;
    padding: 1.75rem 1.75rem 0.75rem;
    background: var(--cgd-surface);
    border: 1px solid var(--cgd-neutral-border);
    border-radius: 12px;
}

.cgd-faq h2 {
    margin-top: 0;
}

.cgd-faq h3:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0.75rem;
}

.cgd-faq p {
    color: var(--cgd-muted);
}

.cgd-related li {
    margin: 0;
    padding: 0;
}

.cgd-related a {
    display: inline-block;
    background: var(--cgd-surface);
    border: 1px solid var(--cgd-border);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.94rem;
    text-decoration: none;
    color: var(--cgd-accent-hover);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cgd-related a:hover {
    background: var(--cgd-accent-deep);
    border-color: var(--cgd-accent-deep);
    color: #ffffff;
}

/* ─── Home page tweaks ──────────────────────────────────── */

.cgd-home .cgd-card-grid {
    margin-top: 1.5rem;
}
