/* Early & Away - Main Stylesheet
/* Editorial design with brand colors
/* ---------------------------------------------------------- */

@import "vars.css";

/* Reset & Base
/* ---------------------------------------------------------- */

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

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: var(--color-base);
    font-family: var(--font-body);
    font-size: 1.7rem;
    line-height: 1.7;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography
/* ---------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-base);
    margin: 0 0 1.5rem;
}

h1 { font-size: 5.2rem; font-weight: 300; }
h2 { font-size: 3.6rem; }
h3 { font-size: 2.8rem; }
h4 { font-size: 2.2rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.6rem; }

p {
    margin: 0 0 1.5rem;
}

a {
    color: var(--color-cta);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-slate-blue);
}

/* Layout
/* ---------------------------------------------------------- */

.gh-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gh-main {
    flex-grow: 1;
}

.gh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.gh-container-narrow {
    max-width: 720px;
}

/* Buttons
/* ---------------------------------------------------------- */

.gh-button {
    display: inline-block;
    padding: 1.4rem 3rem;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: var(--color-cta);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gh-button:hover {
    background: var(--color-deep-teal);
    color: #fff;
}

.gh-button-secondary {
    color: var(--color-base);
    background: transparent;
    border: 1px solid var(--color-base);
}

.gh-button-secondary:hover {
    color: #fff;
    background: var(--color-base);
}

.gh-button-text {
    padding: 0;
    color: var(--color-cta);
    background: none;
    font-weight: 500;
}

.gh-button-text:hover {
    color: var(--color-deep-teal);
    background: none;
}

.gh-button-text::after {
    content: ' →';
}

/* Header
/* ---------------------------------------------------------- */

.gh-head {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 3rem 0 0;
    background: #fff;
}

.gh-head-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.gh-head-brand {
    text-align: center;
}

.gh-head-logo {
    display: inline-block;
}

.gh-head-logo:hover {
    opacity: 0.8;
}

.gh-head-logo img {
    height: 10rem;
    width: auto;
}

.gh-head-menu {
    width: 100%;
    margin-top: 1rem;
    padding: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-head-menu > ul {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.gh-head-menu > ul > li {
    flex: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-head-menu > ul > li:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-head-menu li.has-submenu {
    position: relative;
}

.gh-head-menu li.has-submenu > a::after {
    content: ' ▾';
    font-size: 1.6em;
    vertical-align: middle;
    line-height: 1;
}

.gh-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style-type: square;
    padding-left: 2.5rem;
}

.gh-head-menu li.has-submenu:hover .gh-submenu {
    display: block;
}

.gh-submenu li {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gh-submenu li::marker {
    color: var(--color-terracotta);
}

.gh-submenu li:last-child {
    border-bottom: none;
}

.gh-submenu a {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
}

.gh-submenu a:hover {
    background: var(--color-terracotta);
    color: #fff;
}

.gh-head-menu a {
    display: block;
    padding: 1.5rem 3rem;
    color: var(--color-base);
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease, background 0.2s ease;
}

.gh-head-menu a:hover {
    color: #fff;
    background: var(--color-terracotta);
}

.gh-head-actions {
    position: absolute;
    top: 2.5rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gh-head-actions .gh-button {
    padding: 0.8rem 1.8rem;
    font-size: 1.3rem;
}

.gh-head-actions .gh-button-secondary {
    background: transparent;
    color: var(--color-base);
    border: none;
    padding: 0.8rem 0;
}

.gh-head-actions .gh-button-secondary:hover {
    background: transparent;
    color: var(--color-cta);
}

/* Mobile menu */
.gh-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.gh-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-base);
    transition: transform 0.3s ease;
}

/* Hero Section
/* ---------------------------------------------------------- */

.gh-hero {
    width: 100%;
}

.gh-hero-image {
    width: 100%;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gh-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 59, 73, 0.5);
}

.gh-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem;
    max-width: 800px;
}

.gh-hero-title {
    font-size: 5.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gh-hero-description {
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Page Headers
/* ---------------------------------------------------------- */

.gh-page-header {
    padding: 6rem 0 4rem;
    text-align: center;
}

.gh-page-header h1 {
    font-size: 4.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.gh-page-header p {
    font-size: 1.8rem;
    color: var(--color-slate-blue);
}

.gh-tag-header,
.gh-author-header {
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.gh-tag-count,
.gh-author-count {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--color-slate-blue);
}

.gh-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
}

.gh-author-bio {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    color: var(--color-slate-blue);
}

.gh-author-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-slate-blue);
}

.gh-author-meta a {
    color: var(--color-cta);
}

/* Home Layout with Sidebar
/* ---------------------------------------------------------- */

.gh-home-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    padding: 2rem 0;
}

.gh-home-main {
    min-width: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* Sidebar
/* ---------------------------------------------------------- */

.gh-sidebar {
    position: sticky;
    top: 8rem;
    align-self: start;
    padding: 2rem 3rem;
}

.gh-sidebar-section {
    padding: 0;
    background: #fff;
    border: none;
    margin-bottom: 2rem;
}

.gh-sidebar-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-sidebar-logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 1.5rem;
}

.gh-sidebar-description {
    font-size: 1.5rem;
    color: var(--color-slate-blue);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gh-sidebar-about .gh-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.gh-sidebar-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gh-sidebar-tags li {
    margin-bottom: 0;
}

.gh-sidebar-tags a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--color-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease;
}

.gh-sidebar-tags li:last-child a {
    border-bottom: none;
}

.gh-sidebar-tags a:hover {
    color: var(--color-cta);
}

.gh-sidebar-tag-name {
    font-size: 1.5rem;
}

.gh-sidebar-tag-count {
    font-size: 1.3rem;
    color: var(--color-slate-blue);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.8rem;
    border-radius: 0;
}

.gh-sidebar-social-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gh-sidebar-social-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--color-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease;
}

.gh-sidebar-social-links a:last-child {
    border-bottom: none;
}

.gh-sidebar-social-links a:hover {
    color: var(--color-cta);
}

.gh-sidebar-social-links svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gh-sidebar-social-links a[aria-label="Facebook"] svg,
.gh-sidebar-social-links a[aria-label="X (Twitter)"] svg {
    fill: currentColor;
    stroke: none;
}

.gh-sidebar-social-links a[aria-label="TikTok"] svg {
    stroke-width: 2.5;
}

.gh-sidebar-social-links span {
    font-size: 1.5rem;
}

/* Post Card Grid
/* ---------------------------------------------------------- */

.gh-post-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 2rem 0;
}

.gh-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-card:nth-child(2n) {
    border-right: none;
}

.gh-card:hover .gh-card-title a {
    color: var(--color-cta);
}

/* Featured Card Styles */
.gh-card-featured {
    background: rgba(223, 168, 142, 0.08);
    padding: 2rem;
}

.gh-card-featured .gh-card-title {
    font-size: 3rem;
}

.gh-card-featured .gh-card-excerpt {
    font-size: 1.7rem;
}

.gh-card-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--color-cta);
    border-radius: 0;
}

.gh-card-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.gh-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gh-card:hover .gh-card-image img {
    transform: scale(1.03);
}

.gh-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

.gh-card-tag {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cta);
}

.gh-card-title {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gh-card-title a {
    color: var(--color-base);
}

.gh-card-title a:hover {
    color: var(--color-cta);
}

.gh-card-excerpt {
    flex-grow: 1;
    color: var(--color-slate-blue);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gh-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: var(--color-slate-blue);
}

.gh-card-meta time {
    color: var(--color-slate-blue);
}

.gh-card-author {
    font-weight: 500;
    color: var(--color-base);
}

.gh-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-card-footer .gh-button-text {
    display: block;
    padding: 1rem 0 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: right;
}

.gh-card-footer .gh-button-text::after {
    content: ' →';
}

/* Article Styles
/* ---------------------------------------------------------- */

.gh-article {
    padding: 4rem 0 6rem;
}

.gh-article-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    padding-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gh-article-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cta);
}

.gh-article-title {
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.gh-article-excerpt {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-slate-blue);
    line-height: 1.5;
}

.gh-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    font-size: 1.5rem;
    color: var(--color-slate-blue);
}

.gh-article-meta span::after {
    content: '·';
    margin: 0 0.5rem;
}

.gh-article-meta span:last-child::after {
    display: none;
}

.gh-article-author {
    font-weight: 500;
    color: var(--color-base);
}

.gh-article-image {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.gh-article-image img {
    width: 100%;
}

.gh-article-image figcaption {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-slate-blue);
}

/* Content Styles
/* ---------------------------------------------------------- */

.gh-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.9rem;
    line-height: 1.8;
}

.gh-content > * + * {
    margin-top: 2.5rem;
}

.gh-content a {
    color: var(--color-cta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gh-content h2 {
    font-size: 3.2rem;
    margin-top: 5rem;
}

.gh-content h3 {
    font-size: 2.6rem;
    margin-top: 4rem;
}

.gh-content blockquote {
    margin: 4rem 0;
    padding: 0 0 0 3rem;
    border-left: 3px solid var(--color-cta);
    font-family: var(--font-headline);
    font-size: 2.4rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
}

.gh-content pre {
    padding: 2.5rem;
    background: var(--color-off-white);
    border-radius: 0;
    overflow-x: auto;
}

.gh-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.gh-content img {
    margin: 3rem 0;
}

.gh-content ul,
.gh-content ol {
    padding-left: 2.5rem;
}

.gh-content li {
    margin-bottom: 1rem;
}

/* Koenig Editor Width Classes
/* ---------------------------------------------------------- */

.gh-content .kg-width-wide {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gh-content .kg-width-full {
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.gh-content .kg-width-wide img,
.gh-content .kg-width-full img {
    width: 100%;
}

/* Error Page
/* ---------------------------------------------------------- */

.gh-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 4rem;
}

.gh-error-code {
    font-family: var(--font-headline);
    font-size: 10rem;
    font-weight: 300;
    color: var(--color-warm-peach);
    line-height: 1;
    margin-bottom: 1rem;
}

.gh-error-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.gh-error-description {
    font-size: 1.8rem;
    color: var(--color-slate-blue);
    max-width: 450px;
    margin-bottom: 3rem;
}

/* Pagination
/* ---------------------------------------------------------- */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0 6rem;
}

.pagination a {
    color: var(--color-base);
    font-size: 1.5rem;
    font-weight: 500;
}

.pagination a:hover {
    color: var(--color-cta);
}

/* Footer
/* ---------------------------------------------------------- */

.gh-foot {
    padding: 6rem 0 4rem;
    background: var(--color-off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.gh-foot-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: start;
}

.gh-foot-brand {
    max-width: 280px;
}

.gh-foot-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.gh-foot-logo img {
    max-height: 8rem;
}

.gh-foot-tagline {
    font-size: 1.5rem;
    color: var(--color-slate-blue);
    line-height: 1.6;
}

.gh-foot-nav {
    display: flex;
    gap: 4rem;
}

.gh-foot-nav nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gh-foot-nav nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gh-foot-nav nav li {
    margin: 0;
}

.gh-foot-nav-title {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-base);
}

.gh-foot a {
    color: var(--color-slate-blue);
    font-size: 1.4rem;
}

.gh-foot a:hover {
    color: var(--color-cta);
}

.gh-foot .gh-button {
    color: #fff;
    font-size: 1.4rem;
}

.gh-foot .gh-button:hover {
    color: #fff;
}

.gh-foot-signup {
    text-align: right;
}

.gh-foot-signup h4 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.gh-foot-signup p {
    font-size: 1.4rem;
    color: var(--color-slate-blue);
    margin-bottom: 1.5rem;
}

.gh-foot-logo-centered {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.gh-foot-logo-centered img {
    max-width: 350px;
    height: auto;
}

.gh-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1.3rem;
    color: var(--color-slate-blue);
}

.gh-foot-bottom p {
    margin: 0;
}

.gh-foot-bottom a {
    color: var(--color-slate-blue);
}

.gh-foot-bottom a:hover {
    color: var(--color-cta);
}

/* Newsletter CTA
/* ---------------------------------------------------------- */

.gh-subscribe {
    padding: 6rem 4rem;
    background: var(--color-off-white);
    text-align: center;
    margin: 4rem 0;
}

.gh-subscribe h3 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.gh-subscribe p {
    font-size: 1.7rem;
    color: var(--color-slate-blue);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Responsive
/* ---------------------------------------------------------- */

@media (max-width: 1024px) {
    .gh-home-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gh-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gh-sidebar-section {
        margin-bottom: 0;
    }

    .gh-foot-inner {
        grid-template-columns: 1fr 1fr;
    }

    .gh-foot-signup {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 740px) {
    .gh-container {
        padding: 0 2rem;
    }

    h1 { font-size: 3.4rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 2.2rem; }

    .gh-hero {
        padding: 6rem 2rem 5rem;
    }

    .gh-hero-title {
        font-size: 3.6rem;
    }

    .gh-hero-description {
        font-size: 1.7rem;
    }

    .gh-home-layout {
        padding: 2rem 0;
    }

    .gh-sidebar {
        grid-template-columns: 1fr;
    }

    .gh-post-feed {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gh-card {
        border-right: none;
    }

    .gh-card-featured .gh-card-title {
        font-size: 2.2rem;
    }

    .gh-card-title {
        font-size: 2.2rem;
    }

    .gh-article-title {
        font-size: 3.2rem;
    }

    .gh-content {
        font-size: 1.7rem;
    }

    .gh-head-menu {
        display: none;
    }

    .gh-burger {
        display: flex;
    }

    .gh-foot-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gh-foot-brand {
        max-width: 100%;
    }

    .gh-foot-nav {
        justify-content: center;
    }

    .gh-foot-signup {
        text-align: center;
    }

    .gh-foot-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
