.featured-post-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 940px;
    padding: 26px;
    max-width: calc(100dvw - 56px);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}
.featured-post-container:hover {
    background: var(--theme-mist);
}
.featured-post-info-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    max-width: 420px;
}
.featured-post-category {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--active-green);
}
.featured-post-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: var(--theme-moonlight);
    margin: -20px 0 0 0;
}
.featured-post-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-twilight);
    max-height: 40px;
    width: 420px;
    max-width: calc(100vw - 56px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.featured-post-author-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 16px;
}
.post-author-container {
    gap: 12px;
}
.featured-post-author-image {
    height: 44px;
    min-width: 44px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.post-author-image {
    height: 60px;
    min-width: 60px;
}
.featured-post-author-info-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}
.post-author-info-container {
    gap: 4px;
}
.featured-post-author {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--theme-twilight);
}
.featured-post-info {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--theme-granite);
}
.featured-post-image-container {
    width: 460px;
    border-radius: 10px;
    background: var(--blue-grad);
    height: 242px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(100dvw - 56px);
}
.post-image-container {
    width: 940px;
    height: 496px;
    max-height: calc(100dvw - 156px);
    min-height: 160px;
}
.featured-post-image {
    width: 65%;
}

.blog-post-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1100px;
}
.blog-post {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    padding: 26px;
    border-radius: 10px;
}
.blog-post:hover {
    background: var(--theme-mist);
}
.blog-post-img-container {
    height: 176px;
    width: 300px;
    border-radius: 10px;
    background: var(--blue-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100dvw - 56px);
}
.blog-post-img {
    width: 65%;
}
.blog-post-category {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--theme-granite);
}
.blog-post-info {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    width: 300px;
    color: var(--theme-granite);
    max-width: calc(100dvw - 56px);
}
.blog-post-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    width: 300px;
    color: var(--theme-twilight);
    max-width: calc(100dvw - 56px);
}

@media (max-width: 1128px) {
    .featured-post-container {
        flex-direction: column-reverse;
        gap: 24px;
        border-radius: 0;
        width: 100%;
    }
    .blog-post {
        width: 500px;
        max-width: calc(100vw - 52px);
    }
    .blog-post-img-container {
        /*height: 176px;*/
        width: 100%;
        height: 260px;
    }
}
@media (max-width: 560px) {
    .blog-post {
        border-radius: 0;
    }
}