/* FreeLine blog style sheet */

.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 90px;
    row-gap: 80px;
}

.post_sidebar_ttl {
    font-size: 24px;
    font-weight: 700;
}

.post_sidebar {
    width: 420px;
    height: fit-content;
    position: sticky;
    top: 20px;
    gap: 16px;
}

.post_body {
    width: calc(100% - 460px);
    gap: 24px;
}

.post_image {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.post_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post_info {
    gap: 6px;
}

.post_info span:first-child {
    color: #999;
}