/*
Theme Name: Gigabyte Grove v3
Theme URI: https://www.gigabytegrove.com/v3
Author: Gigabyte Grove
Author URI: https://www.gigabytegrove.com/
Description: The Gigabyte Grove v3 theme is a dark, high-contrast, block-editor-friendly WordPress theme built for a modern homestead and lab site. It focuses on bold hero sections, status dashboards, and clean content presentation while remaining lightweight and fast.
Tags: blog, one-column, two-columns, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, block-styles
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.6
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: gigabytegrove-v3

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@import url("navigation.css");
@import url("weather.css");
@import url("blogcenter.css");

:root {
    --bg: #f5f5f7;
    --bg-elevated: #ffffff;
    --bg-soft: #f0f0f2;
    --text: #111111;
    --muted: #5e6470;
    --border-subtle: #dddddf;
    --border-strong: #c4c4c8;
    --accent: #d4af37;
    --accent-soft: #f3e6b0;
    --accent-strong: #b7932f;
    --nav-bg: rgba(245, 245, 247, 0.92);
    --nav-border: rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.07);
    --shadow-subtle: 0 6px 18px rgba(0, 0, 0, 0.05);
    --radius-lg: 16px;
    --radius-xl: 22px;
    --radius-pill: 999px;
}

a:active, a:link {
    color: var(--accent);
    font-weight: bold;
}

a:hover {
    color: var(--muted);
    font-weight: bold;
}

[data-theme="dark"] {
    --bg: #050506;
    --bg-elevated: #111217;
    --bg-soft: #171820;
    --text: #f7f7f9;
    --muted: #9a9fb0;
    --border-subtle: #262835;
    --border-strong: #3a3d4c;
    --accent: #d4af37;
    --accent-soft: #8b7a3a;
    --accent-strong: #f3d46b;
    --nav-bg: rgba(5, 5, 7, 0.9);
    --nav-border: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.75);
    --shadow-subtle: 0 10px 26px rgba(0, 0, 0, 0.65);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.color-love {
    color: red;
}
.rounded-circle {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

/* Header / nav */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 3.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
}

.brand img {
    height: 40px;
    width: auto;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 26%;
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text);
    background: var(--bg-elevated);
    box-shadow: var(--shadow-subtle);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 0.98rem;
    font-weight: 620;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--muted);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.4rem;
    padding: 0;
    margin: 0;
}

.main-nav a {
    font-size: 0.88rem;
    color: var(--muted);
    padding-bottom: 0.15rem;
    border-bottom: 1px solid transparent;
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-social {
    display: flex;
    gap: 0.35rem;
}

.nav-social a {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--muted);
}

.nav-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.btn-outline i {
    font-size: 0.85rem;
}

.btn-outline:hover {
    border-color: var(--accent);
}

.theme-toggle {
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 0.35rem 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.theme-toggle:hover {
    color: var(--accent);
}

/* HERO AREA: full-width image + overlay + badge bar */

.hero-media {
    position: relative;
    margin-top: 0.8rem;
}

.hero-media-inner {
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.hero-media-img {
    position: relative;
    width: 100%;
    min-height: 340px;
    max-height: 520px;
    background-image: url("https://www.gigabytegrove.com/wp-content/themes/ggrove/assets/img/background.jpg");
    background-size: cover;
    background-position: center center;
}

.hero-media-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
    padding: 3rem 0 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-shadow: 2px 2px black;
}

.hero-overlay-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-overlay-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-overlay-title {
    font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.6rem);
    line-height: 1.1;
    margin: 0 0 0.5rem;
    color: #fff;
}

.hero-overlay-title span {
    color: var(--accent);
}

.hero-overlay-lead {
    font-size: 0.95rem;
    max-width: 32rem;
    color: #fff;
}

.hero-badge-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: var(--bg-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.hero-badge-inner {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-end;
    padding: 0.7rem 0;
}

.hero-badge-heading {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    padding: 0.7rem 0;
    text-shadow: 1px 1px 2px black;
}

.hero-badge-label {
    margin-right: auto;
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    padding: 0.24rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-elevated);
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
}

.hero-tag i {
    font-size: 0.78rem;
    color: var(--accent);
}

.hero-tag:hover {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.06);
    transform: translateY(-1px);
}

/* Main hero (overview + at-a-glance under hero image) */

.hero {
    padding: 2.2rem 0 3.6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 2.2rem;
    align-items: center;
}

.hero-logo-block {
    margin-bottom: 0.9rem;
    /* logo now lives in the overlay hero; keep markup but hide this slot */
    display: none;
}

.hero-logo-img {
    max-width: 260px;
    height: auto;
    display: block;
}

.eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.hero-title {
    font-size: clamp(2rem, 1.4rem + 1.8vw, 2.8rem);
    line-height: 1.1;
    margin: 0 0 0.7rem;
}

.hero-title span {
    color: var(--accent);
}

.hero-lead {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #111;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary i {
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: transparent;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text);
}

.btn-ghost i {
    font-size: 0.9rem;
}

.btn-ghost:hover {
    border-color: var(--accent);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-meta strong {
    color: var(--text);
}

.hero-card {
    border-radius: var(--radius-xl);
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem 1.5rem;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.hero-chip {
    font-size: 0.78rem;
    border-radius: var(--radius-pill);
    padding: 0.2rem 0.7rem;
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--muted);
}

.hero-chip i {
    font-size: 0.7rem;
    color: var(--accent);
}

/* Enhanced At a Glance sections */
.glance-section {
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border-subtle);
}

.glance-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.glance-section-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.2rem;
}

.metric-label {
    font-size: 0.76rem;
    color: var(--muted);
}

.metric-value {
    font-size: 1rem;
    font-weight: 600;
}

.status-online {
    color: #22c55e;
}
.status-offline {
    color: #c52222;
}
.status-degraded {
    color: #c57e22;
}

.hero-note {
    font-size: 0.82rem;
    color: var(--muted);
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.9rem;
    margin-top: 0.3rem;
}

.hero-note code {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    background: var(--bg-soft);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

/* Sections */

.section {
    padding: 2.8rem 0;
}

.section-header {
    margin-bottom: 1.8rem;
}

.section-title {
    margin: 0;
    font-size: 1.35rem;
}

.section-subtitle {
    margin-top: 0.35rem;
    font-size: 0.94rem;
    color: var(--muted);
    max-width: 34rem;
}

/* Grid & cards */

.grid {
    display: grid;
    gap: 1.4rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    border-radius: var(--radius-lg);
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-subtle);
    padding: 1.1rem 1.2rem;
}

.card-header-inline {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.4rem;
}

.card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-soft);
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--accent);
}

.card-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card-title {
    font-size: 1rem;
    margin: 0 0 0.3rem;
}

.card-tagline {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.card-body {
    font-size: 0.88rem;
    color: var(--muted);
}

.card-footer {
    margin-top: 0.9rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.card-footer a {
    font-size: 0.82rem;
    color: var(--accent);
}

.card-footer a i {
    font-size: 0.74rem;
    margin-left: 0.25rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.7rem;
    font-size: 0.74rem;
    color: var(--muted);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
}

/* Updates / posts */

.posts-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 2fr);
    gap: 2rem;
}

.post-item + .post-item {
    margin-top: 0.9rem;
}

.post-title {
    font-size: 0.98rem;
    margin: 0 0 0.2rem;
}

.post-meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.post-summary {
    font-size: 0.86rem;
    color: var(--muted);
}

/* Contact & donate */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
    gap: 2rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.form-control,
.form-textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 0.7rem;
    font-size: 0.88rem;
    background-color: var(--bg-soft);
    color: var(--text);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-help {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--accent);
    background-color: var(--accent);
    color: #111;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: var(--accent-strong);
    border-color: var(--accent-strong);
}

.donate-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.donate-highlight {
    font-size: 0.9rem;
}

.donate-uses {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0.35rem 0 0.6rem;
    font-size: 0.84rem;
    color: var(--muted);
}

.donate-uses li::marker {
    color: var(--accent);
}

/* Footer */

.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 1.8rem 0 1.6rem;
    margin-top: 1.8rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}

/* Responsive */

@media (max-width: 960px) {
    .hero-media-img {
        min-height: 260px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        max-width: 420px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .posts-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 780px) {
    .nav-inner {
        flex-wrap: wrap;
        gap: 0.8rem 1rem;
        padding-block: 0.35rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        row-gap: 0.25rem;
    }

    .nav-right {
        margin-left: auto;
    }

    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-logo-img {
        max-width: 210px;
    }

    .hero-badge-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .container {
        width: min(100% - 1.6rem, 520px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* Basic WordPress alignment helpers – layout only, no colors or typography */

/* Generic alignment classes */
.alignnone {
	margin: 0 0 1em 0;
}

.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

/* Image-specific alignment */
img.alignnone {
	margin: 0 0 1em 0;
}

img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

img.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

/* Figure / caption alignment */
.wp-caption {
	max-width: 100%;
}

.wp-caption.alignnone {
	margin: 0 0 1em 0;
}

.wp-caption.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

.wp-caption.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

.wp-caption.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

.wp-caption img {
	display: block;
	width: 100%;
	height: auto;
}

/* Caption text – no colors, just spacing & alignment */
.wp-caption-text {
	margin-top: 0.5em;
	text-align: center;
}

/* WordPress galleries – structure only */
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5em 1em;
}

.gallery-item {
	box-sizing: border-box;
	padding: 0 0.5em 1em;
}

/* Default column handling (can be supplemented by theme) */
.gallery-columns-1 .gallery-item { width: 100%; }
.gallery-columns-2 .gallery-item { width: 50%; }
.gallery-columns-3 .gallery-item { width: 33.3333%; }
.gallery-columns-4 .gallery-item { width: 25%; }
.gallery-columns-5 .gallery-item { width: 20%; }
.gallery-columns-6 .gallery-item { width: 16.6667%; }
.gallery-columns-7 .gallery-item { width: 14.2857%; }
.gallery-columns-8 .gallery-item { width: 12.5%; }
.gallery-columns-9 .gallery-item { width: 11.1111%; }

.gallery-caption {
	margin-top: 0.5em;
	text-align: center;
}

/* Clearfix for floated elements */
.clearfix::after,
.alignleft::after,
.alignright::after,
.wp-caption::after {
	content: "";
	display: table;
	clear: both;
}

/* Base alert */
.alert {
	position: relative;
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .375rem;
	font-size: 0.95rem;
}

/* Headings inside alerts */
.alert-heading {
	font-weight: 600;
	margin-bottom: .5rem;
}

/* Links inside alerts */
.alert-link {
	font-weight: 600;
	text-decoration: underline;
}

/* Dismissible alerts */
.alert-dismissible {
	padding-right: 3rem;
}

.alert-dismissible .btn-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.6;
}

.alert-dismissible .btn-close:hover {
	opacity: 1;
}

/* Contextual colors (Bootstrap-style names) */
.alert-primary {
	color: #084298;
	background-color: #cfe2ff;
	border-color: #b6d4fe;
}

.alert-secondary {
	color: #41464b;
	background-color: #e2e3e5;
	border-color: #d3d6d8;
}

.alert-success {
	color: #0f5132;
	background-color: #d1e7dd;
	border-color: #badbcc;
}

.alert-danger {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}

.alert-warning {
	color: #664d03;
	background-color: #fff3cd;
	border-color: #ffecb5;
}

.alert-info {
	color: #055160;
	background-color: #cff4fc;
	border-color: #b6effb;
}

.alert-light {
	color: #636464;
	background-color: #fefefe;
	border-color: #fdfdfe;
}

.alert-dark {
	color: #141619;
	background-color: #d3d3d4;
	border-color: #bcbebf;
}


pre:before {
    padding: 5px;
}
pre {
    background-color: white;
    padding: 10px;
    color: goldenrod;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;    
}
pre:hover {
    color: black;
}
/* --- Article wrapper / spacing --- */
.gg-article {
	margin-bottom: 3rem;
}

.gg-article__header {
	margin: 1.25rem 0 1.5rem;
}

/* --- Meta bar at top of article --- */
.gg-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	padding: 0.5rem 0.75rem;
	background: rgba(0, 0, 0, 0.7); /* adjust or remove if you want it transparent */
	border-radius: 0.5rem;
	font-size: 0.85rem;
}

.gg-article__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	white-space: nowrap;
}

.gg-article__meta-item i {
	font-size: 0.9em;
	opacity: 0.85;
}

.gg-article__meta-label {
	font-weight: 500;
	opacity: 0.85;
	margin-right: 0.15rem;
}

.gg-article__meta a {
	color: inherit;
	text-decoration: none;
}

.gg-article__meta a:hover {
	text-decoration: underline;
}

/* Stack items a bit looser on mobile */
@media (max-width: 640px) {
	.gg-article__meta {
		padding: 0.5rem;
		gap: 0.35rem;
	}
}

/* --- Featured image --- */
.gg-article__thumbnail {
	margin: 1rem 0 1.5rem;
	border-radius: 0.6rem;
	overflow: hidden;
}

.gg-article__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

/* --- Article content --- */
.gg-article__content {
	font-size: 1rem;
	line-height: 1.7;
}

/* --- Tags (clickable chips) --- */
.gg-article__tags {
	margin-top: 1.75rem;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gg-article__tags-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.8;
}

.gg-article__tags-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.gg-article__tag-item {
	margin: 0;
}

.gg-article__tag-link {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	font-size: 0.8rem;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.06);
}

.gg-article__tag-link:hover {
	background: rgba(255, 255, 255, 0.16);
}

/* --- Comments section --- */
.gg-comments {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gg-comments__title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gg-comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.gg-comment-list > li {
	margin-bottom: 1.5rem;
}

.gg-comment-list .comment-body {
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.gg-comment-list .comment-meta {
	margin-bottom: 0.5rem;
	font-size: 0.8rem;
	opacity: 0.85;
}

/* --- Comment form --- */
.gg-comment-form {
	margin-top: 1.5rem;
}

.gg-comment-form p {
	margin-bottom: 1rem;
}

.gg-comment-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.35rem;
	opacity: 0.85;
}

.gg-comment-form input[type="text"],
.gg-comment-form input[type="email"],
.gg-comment-form input[type="url"],
.gg-comment-form textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border-radius: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.6);
	color: inherit;
	font: inherit;
}

.gg-comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.gg-comment-form input:focus,
.gg-comment-form textarea:focus {
	outline: none;
	border-color: #0b8a44;
	box-shadow: 0 0 0 1px rgba(11, 138, 68, 0.6);
}

/* --- Buttons used by comment form --- */
.gg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.3rem;
	font-size: 0.9rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: 0.15s all ease;
}

.gg-button--primary {
	background: #0b8a44;
	color: #ffffff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.gg-button--primary:hover {
	filter: brightness(1.1);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


/* Add this to your theme stylesheet to make thumbnails uniform and clean */



/* Responsive tweaks */
@media (min-width: 768px) {
    .gg-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .gg-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* === Donation Center: Minimal Additions (Non-Conflicting) === */

/* Simple grid spacing for support cards */
.donation-options-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Keep the intro and impact cards side by side where possible */
.donation-intro-layout {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 900px) {
	.donation-intro-layout {
		grid-template-columns: 2fr 1.2fr;
	}
}

/* Clean bullet styling for hardware list */
.donation-feature-list {
	list-style: none;
	margin: 1rem 0;
	padding: 0;
}

.donation-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.donation-feature-icon {
	color: var(--accent, #d4af37);
	margin-top: 0.3rem;
}

/* At-a-glance sidebar cleanup */
.donation-impact-list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.donation-impact-item {
	padding: 0.4rem 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.donation-impact-item:last-child {
	border-bottom: none;
}

.donation-impact-label {
	font-weight: 600;
	font-size: 0.95rem;
}

.donation-impact-value {
	font-size: 0.9rem;
	color: var(--muted, #aaa);
}

/* Support options section */
.donation-options-header {
	text-align: center;
	margin: 0 auto 2.5rem;
	max-width: 720px;
}

.section-lead {
	color: var(--muted, #aaa);
	font-size: 0.95rem;
}

/* Channel list (PayPal / CashApp) */
.donation-channel-list {
	margin-top: 0.75rem;
}

.donation-channel {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
}

.donation-channel dt {
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.donation-channel dd {
	margin: 0;
	font-family: ui-monospace, monospace;
	color: var(--text, #fff);
}

/* Shared text spacing */
.donation-note,
.donation-impact-note {
	color: var(--muted, #aaa);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Free-to-do pill */
.pill-soft {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
	font-size: 0.85rem;
}

/* Keep footer buttons consistent */
.card-footer {
	text-align: center;
	padding-top: 1rem;
}

.card-footer .btn-ghost i,
.card-footer .btn-primary i {
	margin-right: 0.4rem;
}

/* FAQ section alignment */
.donation-faq {
	margin-top: 3rem;
	text-align: center;
}

.donation-faq-body p {
	font-size: 0.95rem;
	color: var(--muted, #aaa);
}

h4 {
	color: var(--accent);
}


