body {
    background: #142864;
    color: #ffffff;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.blog-hero,
.post-hero {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

.blog-hero__content,
.post-hero__content {
    max-width: 860px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding-bottom: 4rem;
}

.blog-search {
    padding-bottom: 2rem;
}

.blog-search__box {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 1.25rem;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 18px 45px rgba(16, 22, 40, .18);
}

.blog-search__input {
    min-width: 0;
    flex: 1;
    border: 0;
    color: #101628;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
}

.blog-search__input::placeholder {
    color: #6b7280;
    font-weight: 600;
}

.blog-search__button {
    border: 0;
    border-radius: .85rem;
    background: #1d4ed8;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    padding: .75rem 1rem;
}

.blog-search__button:hover,
.blog-search__button:focus-visible {
    background: #101628;
    outline: none;
}

.blog-empty {
    display: none;
    margin-top: -2rem;
    padding-bottom: 4rem;
    text-align: center;
}

.blog-empty.is-visible {
    display: block;
}

.blog-local {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    color: #101628;
    box-shadow: 0 18px 45px rgba(16, 22, 40, .18);
}

.blog-local h2 {
    margin-top: .45rem;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.blog-local p {
    margin-top: .75rem;
    color: #4b5563;
    line-height: 1.65;
}

.blog-card {
    display: flex;
    min-height: 100px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.5rem;
    background: #ffffff;
    padding: 1rem;
    color: #101628;
    box-shadow: 0 18px 45px rgba(16, 22, 40, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover,
.blog-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(16, 22, 40, .24);
    outline: none;
}

.blog-card__meta,
.post-meta {
    color: #1d4ed8;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.post-meta {
    color: #dbeafe;
}

.blog-card__title {
    margin-top: .45rem;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.blog-card__excerpt {
    margin-top: .45rem;
    color: #4b5563;
    line-height: 1.35;
}

.blog-card__link {
    margin-top: .75rem;
    color: #1d4ed8;
    font-weight: 800;
}

.breadcrumb {
    color: #dbeafe;
    font-weight: 700;
}

.breadcrumb:hover {
    color: #ffffff;
}

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
    padding-bottom: 4rem;
}

.post-content {
    border-radius: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    color: #101628;
    box-shadow: 0 18px 45px rgba(16, 22, 40, .18);
}

.post-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.post-content h2:first-child {
    margin-top: 0;
}

.post-content h3 {
    margin-top: 1.25rem;
    color: #101628;
    font-size: 1.05rem;
    font-weight: 800;
}

.post-content p,
.post-content li {
    color: #4b5563;
    line-height: 1.75;
}

.blog-local a,
.post-content a {
    color: #1d4ed8;
    font-weight: 800;
}

.blog-local a:hover,
.blog-local a:focus-visible,
.post-content a:hover,
.post-content a:focus-visible {
    text-decoration: underline;
}

.post-content p + p {
    margin-top: 1rem;
}

.post-content ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.post-sidebar {
    align-self: start;
    border-radius: 1.5rem;
    background: #101628;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(16, 22, 40, .2);
}

.post-map {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 1rem;
    background: #ffffff;
}

.post-map iframe {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
}

.post-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    border-radius: .75rem;
    background: #1d4ed8;
    padding: .75rem 1rem;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.blog-local .post-button {
    color: #ffffff;
    text-decoration: none;
}

.post-button + .post-button {
    margin-left: .5rem;
}

.post-button--secondary {
    background: #ffffff;
    color: #101628;
}

.post-sidebar__section {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 1.5rem;
}

.post-button:hover,
.post-button:focus-visible {
    background: #ffffff;
    color: #101628;
    outline: none;
    text-decoration: none;
}

.blog-local .post-button:hover,
.blog-local .post-button:focus-visible {
    color: #101628;
    text-decoration: none;
}

@media (max-width: 900px) {
    .blog-grid,
    .post-layout {
        grid-template-columns: 1fr;
    }

    .blog-search__box {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-local {
        align-items: flex-start;
        flex-direction: column;
    }

    .post-button + .post-button {
        margin-left: 0;
    }
}
