.news-post-wrapper {
    background-color: #fafafa;
}
.news-content {
    max-width: 1000px !important;
}
.hero {
    position: relative;
}
.hero > .wp-block-group {
    position: static;
}
.hero-nav {
    --_hero-nav-height: 40px;
    position: static;
    min-height: var(--_hero-nav-height);
    margin: 0 0 1rem 0;
}
@media screen and (max-width: 590px) {
    .hero-nav {
        margin-bottom: 0.5rem;
    }
}

/* Back button - blue and white styling with selective bold text */
.hero .back-button a.wp-element-button,
.hero .back-button .wp-block-button__link,
.hero .back-button a {
    background-color: #2d83f5 !important;
    color: #ffffff !important;
    font-weight: 600 !important; /* Normal weight for base text */
    transition: scale 0.25s ease;
}

/* Make only the <strong> tag bold within back button */
.hero .back-button a strong {
    font-weight: 700 !important;
}

.hero .back-button a::before {
    content: '‹ ';
    font-size: 1.25em;
    line-height: 1;
}
.hero .back-button a:hover {
    opacity: 0.9;
}

/*------------------------------------------------
Post Header
------------------------------------------------*/
.post-header {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #CDCDCD;
    padding: 0.5rem 0;
}
.post-header:not(:has(.author-name)) {
    justify-content: flex-end;
}
.post-header:not(:has(.author-name)) .author-profile {
    display: none;
}
/* Meta */
/*.post-meta-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr;
}*/
/* .author-profile . {
    display: none;
} */
.author-profile .wp-block-post-author__avatar {
    height: 48px;
}
.post-meta-wrapper > * {
    margin-top: 0;
    width: 100%;
}
.post-meta-wrapper .author-profile {
    grid-column: 1/2;
    grid-row: 1/3;
}
.post-meta-wrapper .wp-block-post-author-name {
    font-weight: 700;
}
.post-meta-wrapper .wp-block-post-date {
    color: #676671;
}
/* Tags */
.post-header .tag-wrapper *,
.post-header .region-wrapper * {
    display: inline;
    margin: 0;
}
.post-header .tag-wrapper a {
    background-color: var(--wp--preset--color--primary-alt);
    color: var(--wp--preset--color--primary);
    padding: 5px 10px;
    border-radius: 500px;
    pointer-events: none;
    text-decoration: none;
    margin-inline-start: 5px;
}
.post-header .region-wrapper a {
    pointer-events: none;
    text-decoration: none;
}