/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 13 2025 | 11:36:32 */
.latest-articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .latest-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .latest-articles {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 300px;
}

.article-card a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.article-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 15px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
}

.article-title {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.article-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.read-more {
    font-weight: bold;
}