/* === FILE: CSS/style-artikel.css === */

.article-section {
        padding: 40px 0;
    }
    .article-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .article-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-decoration: none;
        color: #333;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }
    .article-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .article-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .article-content {
        padding: 20px;
    }
    .article-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #0e9455;
    }
    .article-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .article-date {
        display: block;
        font-size: 12px;
        color: #777;
        margin-bottom: 10px;
    }
    .readmore {
        font-weight: bold;
        color: #0e9455;
        margin-top: auto;
    }
