.post-list a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.post-list .post-category {
    background-color: var(--color-mint-light);
    border-radius: 15px;
    color: var(--color-canvas-text) !important;
    display: inline-block;
    font-family: 'Poppins';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 10px 0 !important;
    padding: 2px 10px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.post-list .post-category a {
    color: inherit;
}

.post-list .post-category:hover {
    background-color: var(--color-mint-pale);
    color: inherit;
}

.post-list .post-meta {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.post-list .post-meta span {
    display: inline-block;
    margin: 0 5px;
    position: relative;
}

.post-list .post-meta span:not(:last-child)::after {
    background-color: var(--color-grey);
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 2px;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
}

.post-list .post-meta .post-reading-time {
    align-items: center;
    color: var(--color-grey);
    display: flex;
    justify-content: center;
    transition: color 0.3s ease;
}

.post-list .post-meta .post-reading-time .icon-eye {
    content: '\f06e';
    font-family: 'icons';
    font-size: 1em;
    margin-right: 5px;
    vertical-align: middle;
}

.post-list .post-title {
    color: var(--color-canvas-text);
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin: 0;
}

.post-list .post-title:hover {
    text-decoration: underline;
}

.post-list .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-list .post-thumbnail {
    border-radius: 15px;
    margin: 0 15px 0 0;
    overflow: hidden;
    position: relative;

    max-width: none;
    aspect-ratio: unset;
    width: 215px;
    height: 144px;
    flex: 0 0 215px;
}

.post-list .post-thumbnail:before {
    position: absolute;
    inset: 0;
    content: '';
    display: block;
    transition: all .2s ease;
    background: #2c2f30;
    opacity: 0;
    z-index: 1;
}

.post-list .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-list:hover .post-thumbnail:before {
    opacity: 0.3;
}

.post-list:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-list:hover .post-thumbnail img,
.post-list:hover .post-title {
    color: var(--color-brand-blue);
}

@media (max-width: 768px) {
    .post-list a {
        align-items: flex-start;
    }

    .post-list .post-thumbnail {
        border-radius: 5px;
        width: 74px;
        height: 50px;
        flex: 0 0 74px;
    }

    .post-list .post-title {
        margin: 0 16px 0 0;
    }

    .post-list .post-meta {
        color: var(--color-neutral-gray-400);
        font-family: 'Poppins';
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
    }
}