.page-template .gh-article-header {
    margin-top: var(--header-spacing, 80px);
}

.gh-article-tag {
    color: var(--ghost-accent-color);
}

.gh-article-title {
    word-break: break-word;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-article-title {
    font-family: var(--gh-font-heading, var(--font-serif));
    letter-spacing: -0.01em;
}

.gh-article-excerpt {
    margin-top: 2rem;
    font-size: 2.1rem;
    line-height: 1.5;
    color: var(--color-secondary-text);
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-article-excerpt {
    font-family: var(--gh-font-body, var(--font-serif));
}

.gh-article-image {
    grid-column: wide-start/wide-end;
    margin-top: 4rem;
}

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

@media (max-width: 767px) {
    .gh-article-excerpt {
        font-size: 1.9rem;
    }

    .gh-article-image {
        margin-top: 2.4rem;
    }
}

/* Share */

.gh-meta-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gh-button-share {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5em 1.2em;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 999px;
    color: rgba(0, 0, 0, 0.85);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    text-decoration: none;
}

.gh-button-share:hover {
    border-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.gh-button-share svg {
    width: 20px;
    height: 20px;
    margin-top: -2px;
    margin-right: -4px;
}

:is(.dark-mode, .theme-dark, .has-light-text) .gh-button-share {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
}

:is(.dark-mode, .theme-dark, .has-light-text) .gh-button-share:hover {
    border-color: rgba(255, 255, 255, 0.5);
}
