/* ============================================================
   KidsTime Ghost Theme — Screen CSS
   Design tokens from kidstime.edu.pl landing page
   ============================================================ */

/* ── CSS Variables (from landing page :root) ──────────────── */
:root {
    --kt-dark: #0B204C;
    --kt-navy: #0f172a;
    --kt-navy-light: #1e293b;
    --kt-light: #9298A6;
    --kt-red: #DC2725;
    --kt-yellow: #FBC30A;
    --kt-yellow-hover: #FFBF00;
    --kt-blue: #1e40af;
    --kt-bg-gray: #F8F8F8;
    --kt-white: #ffffff;
    --kt-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    --kt-shadow-yellow: 0 4px 10px 0 rgba(255, 191, 0, 0.5);
    --kt-radius: 1rem;
    --kt-radius-pill: 5rem;
    --kt-transition: 300ms ease;
    --kt-container: 78.75rem;
    --kt-container-narrow: 48rem;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--kt-dark);
    background-color: var(--kt-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--kt-dark);
    text-decoration: none;
    transition: color var(--kt-transition);
}

a:hover {
    color: var(--kt-yellow);
}

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

/* ── Container ────────────────────────────────────────────── */
.kt-container {
    max-width: var(--kt-container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.kt-container--narrow {
    max-width: var(--kt-container-narrow);
}

@media (min-width: 768px) {
    .kt-container {
        padding-inline: 2.5rem;
    }
}

/* ── Header / Navigation ──────────────────────────────────── */
.kt-header {
    background: linear-gradient(135deg, var(--kt-navy) 0%, var(--kt-navy-light) 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kt-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.kt-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.kt-nav__logo img {
    height: 36px;
    width: auto;
}

.kt-nav__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kt-white);
    letter-spacing: -0.02em;
}

.kt-nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.kt-nav__links ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.kt-nav__links li a {
    color: var(--kt-white);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--kt-transition);
    white-space: nowrap;
}

.kt-nav__links li a:hover {
    color: var(--kt-yellow);
}

/* Status indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #E0E4ED;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .15s;
}

.status-indicator:hover {
    border-color: var(--kt-yellow);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot-operational { background: #22c55e; box-shadow: 0 0 4px #22c55e80; }
.status-dot-degraded { background: #eab308; box-shadow: 0 0 4px #eab30880; }
.status-dot-outage { background: #ef4444; box-shadow: 0 0 4px #ef444480; }
.status-dot-unknown { background: #9ca3af; }

.status-label {
    font-size: 12px;
    font-weight: 500;
    color: #475569;
}

/* Hide nav links + status on mobile, show logo + CTA */
@media (max-width: 767px) {
    .kt-nav__links ul,
    .status-indicator,
    .kt-btn--outline {
        display: none;
    }
}

/* ── Buttons ──────────────────────────────────────────────── */
.kt-btn {
    display: inline-block;
    border: 1px solid transparent;
    transition: all var(--kt-transition);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

.kt-btn--small {
    border-radius: 1.75rem;
    font-size: 0.8125rem;
    padding: 0.5rem 1.25rem;
}

.kt-btn--medium {
    border-radius: var(--kt-radius-pill);
    font-size: 0.875rem;
    padding: 0.75rem 1.75rem;
}

.kt-btn--yellow {
    background-color: var(--kt-yellow);
    color: var(--kt-dark);
    border-color: var(--kt-yellow);
}

.kt-btn--yellow:hover {
    background-color: transparent;
    color: var(--kt-yellow);
    border-color: var(--kt-yellow);
}

.kt-btn--outline {
    background-color: transparent;
    color: var(--kt-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.kt-btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--kt-white);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ── Hero Section ─────────────────────────────────────────── */
.kt-hero {
    background: linear-gradient(135deg, var(--kt-navy) 0%, var(--kt-navy-light) 100%);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.kt-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--kt-white);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.kt-hero__content {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.kt-hero__subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kt-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.kt-hero__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--kt-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.kt-hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .kt-hero {
        padding: 4rem 0 5rem;
    }

    .kt-hero__title {
        font-size: 3rem;
    }
}

/* ── Featured Post ────────────────────────────────────────── */
.kt-featured {
    padding: 2rem 0 3rem;
}

.kt-featured__card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--kt-bg-gray);
    border-radius: var(--kt-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--kt-dark);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all var(--kt-transition);
}

.kt-featured__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--kt-dark);
}

.kt-featured__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.kt-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--kt-transition);
}

.kt-featured__card:hover .kt-featured__image img {
    transform: scale(1.03);
}

.kt-featured__content {
    padding: 1.5rem;
}

.kt-featured__badge {
    display: inline-block;
    background: var(--kt-yellow);
    color: var(--kt-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.875rem;
    border-radius: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(251, 195, 10, 0.3);
}

.kt-featured__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.kt-featured__excerpt {
    color: var(--kt-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.kt-featured__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--kt-light);
}

.kt-featured__author {
    font-weight: 600;
    color: var(--kt-dark);
}

@media (min-width: 768px) {
    .kt-featured__card {
        grid-template-columns: 1fr 1fr;
    }

    .kt-featured__image {
        aspect-ratio: auto;
    }

    .kt-featured__content {
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .kt-featured__title {
        font-size: 1.75rem;
    }
}

/* ── Section Title ────────────────────────────────────────── */
.kt-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kt-dark);
    margin-bottom: 2rem;
    line-height: 1;
}

@media (min-width: 1024px) {
    .kt-section-title {
        font-size: 2rem;
    }
}

/* ── Post Cards Grid ──────────────────────────────────────── */
.kt-posts {
    padding: 2rem 0 4rem;
}

.kt-posts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .kt-posts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .kt-posts__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ── Post Card ────────────────────────────────────────────── */
.kt-card {
    background: var(--kt-bg-gray);
    border-radius: var(--kt-radius);
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all var(--kt-transition);
}

.kt-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.kt-card__link {
    display: block;
    text-decoration: none;
    color: var(--kt-dark);
}

.kt-card__link:hover {
    color: var(--kt-dark);
}

.kt-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--kt-bg-gray);
}

.kt-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--kt-transition);
}

.kt-card:hover .kt-card__image img {
    transform: scale(1.05);
}

.kt-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kt-card__content {
    padding: 1.25rem;
}

.kt-card__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--kt-dark);
    background: rgba(251, 195, 10, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.kt-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kt-card__excerpt {
    font-size: 0.8125rem;
    color: var(--kt-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kt-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--kt-light);
    flex-wrap: wrap;
}

.kt-card__author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.kt-card__author {
    font-weight: 600;
    color: var(--kt-dark);
}

/* ── Pagination ───────────────────────────────────────────── */
.kt-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.kt-pagination__info {
    font-size: 0.8125rem;
    color: var(--kt-light);
}

/* ── Article (Post/Page) ──────────────────────────────────── */
.kt-article__header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.kt-article__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--kt-dark);
    background: rgba(251, 195, 10, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.kt-article__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--kt-dark);
}

.kt-article__excerpt {
    font-size: 1.125rem;
    color: var(--kt-light);
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

.kt-article__meta {
    display: flex;
    justify-content: center;
}

.kt-article__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.kt-article__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--kt-yellow);
    object-fit: cover;
}

.kt-article__author div {
    text-align: left;
}

.kt-article__author-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--kt-dark);
}

.kt-article__author time,
.kt-article__reading-time {
    font-size: 0.8125rem;
    color: var(--kt-light);
}

@media (min-width: 1024px) {
    .kt-article__header {
        padding: 4rem 0 2.5rem;
    }

    .kt-article__title {
        font-size: 2.75rem;
    }
}

/* ── Feature Image ────────────────────────────────────────── */
.kt-article__feature-image {
    margin-bottom: 2.5rem;
}

.kt-article__feature-image img {
    border-radius: var(--kt-radius);
    width: 100%;
    height: auto;
}

.kt-article__feature-image figcaption {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--kt-light);
    margin-top: 0.75rem;
}

/* ── Article Body (Ghost content) ─────────────────────────── */
.kt-article__body {
    padding-bottom: 3rem;
}

.kt-article__body h1,
.kt-article__body h2,
.kt-article__body h3,
.kt-article__body h4,
.kt-article__body h5,
.kt-article__body h6 {
    color: var(--kt-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.kt-article__body h2 { font-size: 1.75rem; }
.kt-article__body h3 { font-size: 1.375rem; }
.kt-article__body h4 { font-size: 1.125rem; }

.kt-article__body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 1.5em;
}

.kt-article__body a {
    color: #1e40af;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.kt-article__body a:hover {
    color: var(--kt-yellow);
}

.kt-article__body ul,
.kt-article__body ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.kt-article__body li {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0.5em;
}

.kt-article__body blockquote {
    border-left: 3px solid var(--kt-yellow);
    padding: 0.5rem 1.5rem;
    margin: 1.5em 0;
    background: var(--kt-bg-gray);
    border-radius: 0 var(--kt-radius) var(--kt-radius) 0;
}

.kt-article__body blockquote p {
    font-style: italic;
    color: var(--kt-dark);
    margin-bottom: 0;
}

.kt-article__body pre {
    background: var(--kt-dark);
    color: #e0e0e0;
    border-radius: var(--kt-radius);
    padding: 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.5em;
    font-size: 0.875rem;
    line-height: 1.6;
}

.kt-article__body code {
    font-family: "JetBrains Mono", "Fira Code", monospace;
    font-size: 0.875em;
}

.kt-article__body p code {
    background: var(--kt-bg-gray);
    padding: 0.15em 0.4em;
    border-radius: 0.25rem;
    color: var(--kt-dark);
}

.kt-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--kt-radius);
    margin: 1.5em 0;
}

.kt-article__body figure {
    margin: 2em 0;
}

.kt-article__body figcaption {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--kt-light);
    margin-top: 0.5rem;
}

.kt-article__body hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 2.5em 0;
}

.kt-article__body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-size: 0.9375rem;
}

.kt-article__body th,
.kt-article__body td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.kt-article__body th {
    font-weight: 600;
    background: var(--kt-bg-gray);
}

/* Ghost-specific content cards */
.kg-card {
    margin-bottom: 1.5em;
}

.kg-image-card img,
.kg-gallery-image img {
    border-radius: var(--kt-radius);
}

.kg-width-wide {
    margin-left: -5vw;
    margin-right: -5vw;
    max-width: none;
}

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

.kg-bookmark-card {
    border: none;
    border-radius: var(--kt-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.kg-bookmark-container {
    display: flex;
    text-decoration: none;
    color: var(--kt-dark);
}

.kg-bookmark-content {
    padding: 1.25rem;
    flex: 1;
}

.kg-bookmark-title {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.kg-bookmark-description {
    font-size: 0.8125rem;
    color: var(--kt-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kg-bookmark-thumbnail {
    width: 200px;
    flex-shrink: 0;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ── Tags at bottom of article ────────────────────────────── */
.kt-article__tags {
    padding: 1.5rem 0 3rem;
    border-top: 1px solid #eee;
}

.kt-article__tags .kt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kt-tag {
    display: inline-block;
    background: var(--kt-bg-gray);
    color: var(--kt-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 1.75rem;
    text-decoration: none;
    transition: all var(--kt-transition);
}

.kt-tag:hover {
    background: var(--kt-yellow);
    color: var(--kt-dark);
    transform: translateY(-2px);
}

/* ── Related Posts ────────────────────────────────────────── */
.kt-related {
    background: var(--kt-bg-gray);
    padding: 3rem 0;
    border-top: 3px solid var(--kt-yellow);
}

/* ── Archive (Tag/Author pages) ───────────────────────────── */
.kt-archive {
    padding: 3rem 0 4rem;
}

.kt-archive__header {
    text-align: center;
    margin-bottom: 3rem;
}

.kt-archive__header--author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kt-archive__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--kt-yellow);
    object-fit: cover;
    margin-bottom: 1rem;
}

.kt-archive__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--kt-dark);
    margin-bottom: 0.5rem;
}

.kt-archive__description {
    font-size: 1rem;
    color: var(--kt-light);
    max-width: 36rem;
    margin: 0 auto 0.75rem;
}

.kt-archive__count {
    font-size: 0.8125rem;
    color: var(--kt-light);
}

/* ── Error Page ───────────────────────────────────────────── */
.kt-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    padding: 3rem 0;
}

.kt-error__code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--kt-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.kt-error__message {
    font-size: 1.25rem;
    color: var(--kt-light);
    margin-bottom: 2rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.kt-footer {
    background: linear-gradient(135deg, var(--kt-navy) 0%, #162033 100%);
    color: var(--kt-white);
    padding-top: 3rem;
}

.kt-footer a {
    color: var(--kt-white);
    text-decoration: none;
    transition: color var(--kt-transition);
}

.kt-footer a:hover {
    color: var(--kt-yellow);
}

.kt-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.kt-footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--kt-white);
}

.kt-footer__stores {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.kt-footer__stores img {
    height: 40px;
    width: auto;
}

.kt-footer__social-icons {
    display: flex;
    gap: 0.75rem;
}

.kt-footer__social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--kt-white);
    transition: all var(--kt-transition);
}

.kt-footer__social-icons a:hover {
    background: var(--kt-yellow);
    color: var(--kt-dark);
    transform: translateY(-3px);
}

.kt-footer__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kt-footer__nav li a {
    font-size: 0.875rem;
    font-weight: 500;
}

.kt-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--kt-white);
}

.kt-footer__contact span {
    color: var(--kt-white);
}

.kt-footer__contact-label {
    color: var(--kt-yellow) !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.kt-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .kt-footer__inner {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .kt-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ── Utility: Hide Ghost subscribe forms (optional) ───────── */
.gh-subscribe-form {
    display: none;
}
