.latest-posts-grid-0e10f2c3 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.latest-posts-card-0e10f2c3 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    background-color: #121212; /* Background fallback */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-posts-card-0e10f2c3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(216, 30, 40, 0.3); /* Accentuate with Text color #D81E28 */
}

.latest-posts-link-0e10f2c3 {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.latest-posts-overlay-0e10f2c3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.8) 100%); /* #121212 overlay */
    transition: background 0.3s ease;
}

.latest-posts-card-0e10f2c3:hover .latest-posts-overlay-0e10f2c3 {
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.2) 0%, rgba(158, 21, 28, 0.9) 100%); /* #9E151C Accent color */
}

.latest-posts-content-0e10f2c3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

.latest-posts-title-0e10f2c3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF; /* Primary color */
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.latest-posts-preview-0e10f2c3 {
    padding: 20px;
    background: #121212;
    color: #FFFFFF;
    border: 1px dashed #D81E28;
    text-align: center;
    border-radius: 8px;
}