.post-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-sizing: border-box;
    width: 100%;
    gap: 20px;
}

.post-list article {
    margin-bottom: 20px;
    height: 100px;
    overflow: hidden;
}

.article-body {
    display: grid; 
    grid-template-columns: 1fr 0.3fr;
    width: 100%;
}

.article-body .read-time {
    font-size: 12px;
}

.article-body .date-author {
    font-size: 14px;
}

.article-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.article-body img {
    min-height: 100px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.post-row {
    display: flex;
    flex-direction: column;
}

.post-list article header > span {
    font-weight: bold;
}


.meta {
    margin: 0px;
    padding: 0px;
}

.meta .date {
    font-weight: bold;
}

.meta li {
    list-style-type: none;
    display: inline-block;
}

.full-article .full-article-header {
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid var(--main-text-color);
    padding: 10px;
}

.full-article-body {
    padding: 20px;
    padding-top: 0px;
}

.full-article-body img {
    border: 1px solid var(--main-text-color);
    border-bottom-width: 2px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .post-list {
        grid-template-columns: 1fr;
    }

    .full-article-body img {
        width: 100%;
        box-sizing: border-box;
    }

    .post-list article {
        margin-bottom: 5px;
        height: 150px;
        overflow: hidden;
    }

    .article-body img {
        min-height: 150px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

