/*! Place your custom styles here */
.card-image {
    width: 100%; /* Agar gambar melebar mengikuti lebar container */
    height: 200px; /* Atur tinggi sesuai keinginan */
    object-fit: cover; /* Agar gambar tetap proporsional tanpa terdistorsi */
}
.row_card {
    display: flex;
    flex-wrap: wrap;
}
.feature {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article__body img {
    width: 100%; 
    height: auto;
    object-fit: cover;
}

.article__title {
    margin-bottom: 20px;
}

.article__body p {
    margin-top: 15px;
}
.switchable img {
    width: 80%; /* Mengisi lebar container secara penuh */
    height: auto; /* Mengatur tinggi gambar secara otomatis */
    max-height: 300px; /* Membatasi tinggi maksimal jika diperlukan */
    object-fit: cover; /* Menjaga proporsi gambar */
    border-radius: 10px; /* Menambah rounded corners */
}