[data-ah-vdom-post-list] {
    position: relative;
}

[data-ah-cache-status="loading"] {
    opacity: 0.96;
}

[data-ah-cache-status="cached"]::before,
[data-ah-cache-status="fresh"]::before {
    content: "";
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ah-vdom-post-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 16px;
    margin: 0 0 22px;
    overflow: hidden;
    padding: 18px;
}

.ah-vdom-post-card__image {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.ah-vdom-post-card__image img {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.ah-vdom-post-card__title {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    margin: 0 0 8px;
}

.ah-vdom-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.ah-vdom-post-card__title a:hover,
.ah-vdom-post-card__title a:focus-visible {
    color: #0284c7;
}

.ah-vdom-post-card__meta {
    color: #64748b;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 8px 14px;
    margin-bottom: 10px;
}

.ah-vdom-post-card__excerpt {
    color: #334155;
    line-height: 1.65;
    margin: 0 0 14px;
}

.ah-vdom-post-card__read-more {
    align-items: center;
    display: inline-flex;
    font-weight: 700;
}

@media (min-width: 720px) {
    .ah-vdom-post-card:has(.ah-vdom-post-card__image) {
        grid-template-columns: minmax(220px, 32%) 1fr;
    }
}
