.blog-container {
    padding: 0;
    margin: auto;
    width: 100%;
    max-width: 768px;
    margin-top: 60px;
    --title-color: #333333;
    --text-color: #777777;
    color: var(--text-color);
}

.blog-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 16px;
}

.blog-section-title {
    color: var(--title-color);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    margin: 0;
}

.blog-entry-container {
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

.blog-entry {
    padding: 10px 0px;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    text-decoration: none;
    transition: all 0.3s;
}

a.blog-entry:link:hover, a.blog-entry[href]:hover {
    color: var(--text-color);
    text-decoration: none;
    /* background-color: #F2F2F2; */
}

.blog-image-container {
    flex-shrink: 0;
    width: 112px;
    height: 112px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F5F5F5;
}

.blog-excerpt {
    flex-grow: 1;
}

.blog-date {
    font-size: 12px;
    color: var(--text-color);
}

.blog-title {
    color: var(--title-color);
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.blog-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.blog-tag {
    font-weight: 500;
    font-size: 10px;
    background-color: #EBEBEB;
    color: var(--text-color);
    padding: 4px 10px;
    border-radius: 4rem;
}

@media screen and (min-width: 768px) {
    .blog-container {
        max-width: 768px;
    }

    .blog-section-title {
        font-size: 28px;
    }

    .blog-entry {
        padding: 20px;
    }

    .blog-image-container {
        width: 171px;
        height: 120px;
    }

    .blog-title {
        margin-top: 10px;
    }

    .blog-date {
        font-size: 14px;
    }

    .blog-tag {
        font-weight: 500;
        font-size: 12px;
    }
}

@media screen and (min-width: 1280px) {
    .blog-container {
        padding: 0;
    }
}