.artikels {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid #dfdfdf;
    font-family: "Poppins", serif;
    font-weight: 600;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.artikels h2, .artikels h2 a {
    background: none !important;
}
.artikels img.thumb {
    width: 35%;
    height: 130px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
    box-shadow: none;
    padding: 0;
    border: 1px solid #eee;
}
.artikels .konten {
    flex: 1;
}
.artikels h2 {
    margin: 0 0 8px;
    font-size: 105%;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-family: "Poppins", serif;
    font-weight: 500;
}
.artikels h2 a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
    font-size: 105%;
    letter-spacing: 0.5px;
    font-family: "Poppins", serif;
    transition: color 0.3s ease;
}
.artikels h2 a:hover {
    color: #004d80;
}
.category {
    font-size: 75%;
    color: #F60 !important;
    font-weight:600;
    padding-bottom: 6px;
    text-transform: uppercase ;
    letter-spacing: 0.7px;
}
.meta {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 600px) {
    .artikels {
        flex-direction: row;
        padding: 10px 0;
    }
    .artikels img.thumb {
        width: 35%;
        height: 120px;
        margin-right: 10px;
        border-radius: 6px;
         object-fit: cover;
    }
    .artikels h2 {
        font-size: 100%;
        line-height: 1.6;
    }
    .artikels h2 a {
        font-size: 100%;
    }
    .meta {
        line-height: 1.8;
        color: #555;
    }
    
    .category { color: #F60 !important; font-weight:600;}
}
