.ip-post-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ip-post-list__item {
    display: flex;
    gap: 1.25rem;
    position: relative;
}

.ip-post-list__image {
    flex-shrink: 0;
    width: 160px;
}

.ip-post-list__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.ip-post-list__content {
    flex: 1;
    min-width: 0;
}

.ip-post-list__date {
    display: block;
    display: none;
    font-size: 0.85em;
    color: #666;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ip-post-list__title {
    margin: 0 0 0.5rem;
    font-size: 1.1em;
    line-height: 1.3;
}

.ip-post-list__link {
    text-decoration: none;
    color: inherit;
}

/* Stretch the link over the entire item */
.ip-post-list__link::after {
    content: '';
    position: absolute;
    inset: 0;
}

.ip-post-list__link:hover {
    text-decoration: underline;
}

.ip-post-list__excerpt {
    margin: 0;
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
}

/* Separator between items */
.ip-post-list__item + .ip-post-list__item {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 480px) {
    .ip-post-list__item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ip-post-list__image {
        width: 100%;
    }
}