.angie-latest-posts-grid {
    display: grid;
    gap: 30px;
}
.angie-cols-1 { grid-template-columns: 1fr; }
.angie-cols-2 { grid-template-columns: repeat(2, 1fr); }
.angie-cols-3 { grid-template-columns: repeat(3, 1fr); }
.angie-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .angie-latest-posts-grid[class*="angie-cols-"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .angie-latest-posts-grid[class*="angie-cols-"] { grid-template-columns: 1fr; }
}

.angie-latest-posts-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}
.angie-latest-posts-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.angie-latest-posts-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.angie-latest-posts-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.angie-latest-posts-title {
    margin: 0 0 12px;
    font-size: 1.3rem;
    line-height: 1.4;
}
.angie-latest-posts-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.angie-latest-posts-excerpt {
    margin-bottom: 20px;
    color: #555555;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}
.angie-latest-posts-read-more {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    color: #051D4B;
    margin-top: auto;
}
