.site-main {
    width: 100vw;
    overflow: hidden;
}

.post-header {
    width: 100vw;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.post-thumbnail {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.post-thumbnail:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 15, 7, 0.4)
}

.post-thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(24, 15, 7, 0.00) 0.05%, #180F07 90%);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-title {
    position: relative;
    z-index: 10;
    max-width: 680px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-title);
    text-align: center;
    line-height: 130%;
}

.entry-content {
    padding: 2.5rem 1rem;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}