/* Mengimpor semua jenis weight font Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Nunito', sans-serif;
}

.banner-container {
    position: relative;
    margin: 18px 26px;
    text-align: center; /* Menempatkan teks di tengah */
}

.banner-img {
    width: 95%;
    height: auto;
    border-radius: 10px;
}

/* Gaya untuk judul di banner */
.banner-title {
    font-family: 'Nunito', sans-serif; /* Pastikan menggunakan font Nunito */
    font-size: 45px;
    font-weight: 900;
    text-align: center;
    margin-top: 20px;
    color: #1C5474; /* Warna biru untuk teks */
}

.form-container {
    background-color: #F0F0F0;
    border-radius: 50px;
    padding-bottom: 30px;
}

.form-title {
    padding: 18px 56px;
    font-family: 'Nunito', sans-serif; /* Pastikan menggunakan font Nunito */
    font-size: 16px;
    font-weight: 400; /* Normal weight untuk teks lainnya */
    text-align: center;
    color: #1D8FF6; /* Warna biru untuk teks */
}

.form-title strong {
    font-weight: 700; /* Mengatur teks di dalam <strong> menjadi bold */
}

.durasi-section {
    padding: 0px 24px;
}

.durasi-title {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: start;
    color: #111111;
    margin-bottom: 10px;
}

.durasi-options {
    display: flex;
    justify-content: space-between; 
    align-items: center; /* Align buttons vertically */
    gap: 16px; /* Jarak antar tombol durasi */
    overflow-x: auto; /* Membuat scroll horizontal */
    -webkit-overflow-scrolling: touch; /* Memperbaiki scroll di perangkat mobile */
    padding-bottom: 10px; /* Memberikan ruang bawah agar scroll tidak tertutup */
    margin-bottom: 10px;
}

/* SVG ini berfungsi sebagai "cetakan" untuk memotong button.
    width="0" dan height="0" membuatnya tidak terlihat di halaman.
*/
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
}

.durasi-button {
    /* Gaya dasar dari kode Anda, sudah disesuaikan */
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: black;
    background: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    
    /* --- Perubahan Kunci --- */
    /* 1. Hapus width dan height agar ukuran tombol menyesuaikan teks */
    padding: 7px 20px 12px 20px;
    white-space: nowrap; /* Memastikan teks tetap sebaris */

    /* 2. Terapkan clip-path dari SVG */
    clip-path: url(#pentagon-rounded);
}

.durasi-button:hover {
    background-color: #1D8FF6; /* Mengubah warna latar belakang saat hover */
    color: white; /* Mengubah warna teks saat hover */
}

.durasi-button.selected {
    background-color: #1D8FF6;
    color: white;
}

.batas-putih {
    border: 0; /* Remove default border */
    border-top: 3px solid rgb(255, 255, 255); /* Increase thickness and set a visible color */
}

.jumlah-anak-section {
    padding: 0px 24px 30px 24px;
}

.jumlah-anak-title {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: start;
    color: #111111;
    margin-bottom: 10px;
}


/* Align the counter and total section in a row with space between */
.container-jumlah-anak {
    display: flex; /* Align counter and total elements in a row */
    justify-content: space-between; /* Space between the counter and total sections */
    align-items: center; /* Vertically center the items */
    gap: 16px; /* Optional space between items, but not necessary for space-between */
}

.counter-anak {
    background-color: white;
    border-radius: 10px;
    align-items: center;
    display: flex; /* Apply flexbox */
    flex-grow: 0; /* Allow it to grow and take available space */
    flex-shrink: 1; /* Allow it to shrink when necessary */
    flex-basis: auto; /* Let it start with its natural width, but can adjust */
    width: auto; /* Ensure it adjusts its width based on content */
    min-width: 100px; /* Prevent it from getting too small */
    max-width: 100%; /* Ensure it doesn't exceed the available container width */
}


/* Style for .total-anak */
.total-anak {
    background-color: white;
    padding: 7px 7px; /* Vertical padding 7px, Horizontal padding 1px */
    border-radius: 10px; /* Rounded corners */
}

/* Style for the <p> inside .total-anak */
.total-anak p {
    font-size: 18px;
    font-weight: bold;
    color: #3992D2;
    margin: 0; /* Remove any default margin */
}


.btn-counter {
    flex-shrink: 1;
    background-color: #E6F3FE;
    border: 3px solid #1D8FF6;
    border-radius: 10px;
    padding: 0.2rem 1.0rem; /* Adjust padding relative to font size */
    font-size: 6vw;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-counter:hover {
    background-color: #e0eaff;
}

#count-anak {
    font-size: 6vw;
    margin: 0 15px;
    color: #3992D2;
    font-weight: bold;
}

/* Large screens (min-width: 540px) */
@media screen and (min-width: 540px) {
    #count-anak {
        font-size: 1.5vw; /* Larger font for larger screens */
    }
    .btn-counter {
        font-size: 1.5vw; /* Larger font for larger screens */
        padding: 0.5rem 1rem; /* Slightly larger padding */
    }
    .total-anak p {
        font-size: 1.5vw; /* Match font size for consistency */
    }
}

/* Medium screens (between 481px and 768px, e.g., tablets) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .container-jumlah-anak {
        gap: 0.8rem; /* Slightly reduced gap for medium screens */
    }
    .btn-counter {
        padding: 0.35rem 0.7rem; /* Adjusted padding */
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
    .total-anak {
        padding: 0.35rem 0.5rem;
    }
    #count-anak {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
    .total-anak p {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }
}

/* Small screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .container-jumlah-anak {
        gap: 0.6rem; /* Increased gap for small screens */
    }
    .btn-counter {
        padding: 0.5rem 1rem; /* Adjusted padding from user input */
        font-size: clamp(1rem, 3vw, 1rem); /* Slightly smaller for small screens */
    }
    .total-anak {
        padding: 0.4rem 0.6rem; /* Adjusted padding from user input */
        font-size: clamp(0.8rem, 4vw, 0.9rem); /* Use viewport width for responsive font size */
        white-space: nowrap; /* Prevent text from wrapping */
        overflow: hidden; /* Hide overflow if text is too long */
        text-overflow: ellipsis; /* Show "..." if text overflows */
    }
    #count-anak {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
}

.data-diri-section {
    padding: 0px 24px;
}

.data-diri-title {
    font-family: 'Nunito', sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    color: #111111;
    margin-bottom: 10px;
}

/* Container for the custom widget */
.custom-data-diri-field {
    margin-top: 24px;
    margin-bottom: 16px; /* Space between widgets */
}

/* Label styling */
.custom-data-diri-field-label {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #389DF7;
    margin-bottom: 8px; /* Margin below label */
    display: block;
}

/* Input, textarea, and select field styling */
.custom-data-diri-field-input {
    width: 100%; /* Full width of the container */
    padding: 10px 20px 10px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #050505;
    background-color: white;
    border: 0px;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); /* Shadow effect */
    outline: none; /* Remove default outline */
    transition: box-shadow 0.3s ease; /* Smooth transition on focus */
}

/* Shadow effect on focus */
.custom-data-diri-field-input:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Darker shadow when focused */
    border-color: #389DF7; /* Border color changes on focus */
}

/* For text areas (similar to input fields) */
textarea.custom-data-diri-field-input {
    font-family: 'Nunito', sans-serif;
    resize: vertical; /* Allow vertical resizing */
    height: 100px; /* Set height */
}

/* Dropdown styling */
select.custom-data-diri-field-input {
    font-family: 'Nunito', sans-serif;
    padding: 10px;
    font-weight: 400;
    size: 16;
    color: #050505;
    /* Menghilangkan caret bawaan browser */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Menambahkan caret kustom menggunakan background image */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center; /* Menggeser caret ke kiri dengan mengurangi nilai right */
    background-size: 12px; /* Ukuran caret */
}

input.custom-data-diri-field-input {
    font-family: 'Nunito', sans-serif;
    padding: 10px;
    font-weight: 400;
    size: 16;
    color: #050505;
}


/* Placeholder text styling */
.custom-data-diri-field-input::placeholder {
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    color: #aaa;
}

.reminder-date-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
}

.reminder-date-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.reminder-date-input {
    width: 100%; /* Full width of the container */
    padding: 10px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #050505;
    background-color: white;
    border: 0px;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); /* Shadow effect */
    outline: none; /* Remove default outline */
    transition: box-shadow 0.3s ease; /* Smooth transition on focus */
    box-sizing: border-box;
}


/* Force spinner visibility */
input[type="number"].reminder-date-input {
    -webkit-appearance: textfield; /* Ensure input looks like text but keeps spinner */
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"].reminder-date-input::-webkit-inner-spin-button,
input[type="number"].reminder-date-input::-webkit-outer-spin-button {
    -webkit-appearance: inner-spin-button;
    opacity: 1;
    width: 20px;
    height: 60%;
    background: #E6F3FE; /* Match btn-counter style */
    border-left: 1px solid #1D8FF6;
    cursor: pointer;
    margin: 0;
    position: absolute;
    right: 15px; /* Shift spinner to the left by reducing right position */
    /* top: 0; */
}

input[type="number"].reminder-date-input::-moz-number-spin-box {
    background: #E6F3FE;
    border-left: 1px solid #1D8FF6;
    padding: 0 5px;
}

.reminder-date-input:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35); /* Enhanced shadow on focus */
}

/* Placeholder text styling */
.reminder-date-input::placeholder {
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    color: #aaa;
}

.data-diri-footer {
    margin-top: 30px;
    font-family: 'Nunito', sans-serif;
    size: 13;
    font-weight: 300;
    color: #111111;
}

.btn-position {
    padding: 15px 25px;
}

.btn-submit-data-diri {
    /* margin: 0 25px; */
    width: 100%;
    background-color: #3992D2;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}


.data-asuh-container {
    position: relative;
    margin: 18px 26px 50px 26px;
    text-align: center; /* Menempatkan teks di tengah */
}

.btn-href.position {
    padding: 15px 25px;
}

.btn-href {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    background-color: transparent;
    color: #389DF7;
    border: 1px solid #389DF7; /* Added the border style */
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
/* Data Anak Asuh Section Styles */
.data-anak-asuh-section {
    padding-top: 10%;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Keep items in a single row */
    gap: 1rem; /* Space between data cards */
    width: 100%;
    box-sizing: border-box;
}

.data-anak-asuh {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 30%; /* Base width for items */
    background-color: white;
    border-radius: 0.625rem;
    padding: 0.5rem;
    text-align: center;
    min-width: 0; /* Prevent overflow */
}

.icon-data-asuh {
    width: 80%;
    height: auto;
    margin-bottom: 0.75rem; /* 12px in rem */
}

.name-data-asuh {
    font-size: 3vw;
    font-weight: bold;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 0.5rem; /* 8px in rem */
}

.jumlah-data-asuh {
    align-items: center;
    text-align: center;
    font-size: 5vw;
    font-weight: bold;
    color: #3992D2;
}

/* Large screens (min-width: 769px) */
@media screen and (min-width: 769px) {
    .data-anak-asuh {
        flex: 1 1 30%; /* 3 items visible in the viewport */
    }
    .name-data-asuh {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    .jumlah-data-asuh {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
}

/* Medium screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .data-anak-asuh {
        flex: 1 1 45%; /* Wider items for medium screens */
    }
    .name-data-asuh {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .jumlah-data-asuh {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
    }
}

/* Small screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .data-anak-asuh {
        flex: 1 1 40%; /* Wider items for small screens */
    }
    .name-data-asuh {
        font-size: 3vw;
    }
    .jumlah-data-asuh {
        font-size: 6vw;
    }
}


.overview-container {
    background-color: #4DAFE8;
    padding: 30px 30px 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.image-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
}

.title-overview {
    position: absolute;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: #E6F3FE;
    top: 0;
    left: 0;
    margin-top: 3%;
    margin-left: 25%;
}

.icon-up {
    top: 0;
    right: 0;
    max-height: 15%;
    margin-top: 10px;
    margin-right: 15px;
    position: absolute;
}

.content-overview {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 1.5;
    max-width: 65%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 20%;
    margin-left: 35%;
}

@media screen and (min-width: 769px) {
    .image-left {
        height: 95%;
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .image-left {
        height: 95%;
        width: auto;
    }
}

@media screen and (max-width: 480px) {
    .image-left {
        width: 65%;
        height: auto;
        left: 0;
    }
    .title-overview {
        font-size: 30px;
        margin-top: 3%;
        margin-left: 30%;
    }
    .content-overview {
        margin-top: 23%;
        margin-left: 40%;
        font-size: 13px;
        max-width: 60%;
        padding-right: 10px;
    }
    .overview-container {
        padding-bottom: 30%;
    }
}


.alasan-container {
    background-color: #E6F3FE;
    padding: 14px 30px;
    display: flex;
    flex-direction: column; /* Stack title and items vertically */
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.alasan-title {
    align-items: center;
    font-family: 'Nunito', sans-serif; /* Pastikan menggunakan font Nunito */
    font-size: 14px;
    font-weight: 900; /* Normal weight untuk teks lainnya */
    text-align: center;
    color: #389DF7; /* Warna biru untuk teks */
    margin-bottom: 20px; /* Space below the title */
}

.alasan {
    width: 100%; /* Ensure the items take up full width */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 15px; /* Space between each point and its text */
}

.alasan-item {
    display: flex;
    align-items: flex-start; /* Align text to the left */
    gap: 12px; /* Space between the point and the text */
}

.alasan-poin {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #389DF7;
    width: 30px; /* Width for the number */
    text-align: center; /* Center the number */
}

.alasan-isi {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-align: justify;
    color: #389DF7;
    line-height: 1.6; /* Adjust line spacing for readability */
    flex-grow: 1; /* Allow the text to take available space */
}

@media screen and (max-width: 480px) {
    .alasan-title {
        font-size: 13px;
    }
    .alasan-poin {
        font-size: 13px; /* Reduce point number size on small screens */
    }

    .alasan-isi {
        font-size: 12px; /* Reduce font size of the text on small screens */
    }

}

.benefit-container {
    background-color: #DEC613;
    padding: 10px 5px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: 100%; /* Atur agar mengambil lebar penuh */
}

.benefit {
    flex: 1; /* Membuat kedua kolom memiliki lebar yang sama */
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.benefit-title {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    color: white;
    top: 0;
    /* padding-left: 20px; */
}

.divider-benefit { 
    border-left: 2px solid white;
    height: 80%; /* Menyesuaikan tinggi divider */
    position: absolute;
    top: 60%; /* Menempatkan divider di tengah secara vertikal relatif terhadap container */
    left: 50%; /* Menempatkan divider di tengah secara horizontal */
    transform: translate(-50%, -60%); /* Menyesuaikan posisi agar tepat di tengah */
}

.benefit-item {
    margin-top: 5px; /* Space below the title */
    display: flex;
    align-items: center; /* Align text to the left */
    gap: 5px; /* Space between the point and the text */
}

.benefit-poin img {
    width: 25px; /* Set the image width */
    height: auto; /* Maintain aspect ratio */
}

.benefit-isi {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 500;
    align-items: center;
    text-align: justify;
    color: black;
    line-height: 1.6; /* Adjust line spacing for readability */
    flex-grow: 1; /* Allow the text to take available space */
}

@media screen and (max-width: 480px) {
    .benefit-poin img {
        width: 24px; /* Reduce the image size on smaller screens */
    }
    
    .benefit-isi {
        font-size: 11px; /* Reduce font size of the text on small screens */
    }
}

.syarat-container {
    background-color: #ffffff;
    padding: 10px 5px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: 100%; /* Atur agar mengambil lebar penuh */
}

.syarat-title {
    margin: 15px 0px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    align-items: center;
    color: black;
    top: 0;
    /* padding-left: 20px; */
}

.poin-syarat {
    margin: 10px 25px;
    background-color: #3992D2;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    text-align: center;
}

.isi-syarat {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    align-items: center;
    /* padding-left: 20px; */
}

.syarat-footer {
    margin: 30px 40px;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    align-items: center;
    color: #389DF7;
    top: 0;
    /* padding-left: 20px; */
}

.doa-container {
    background-color: #D9D9D9;
    padding: 10px 5px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.doa-title {
    margin: 7.5px 0;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    align-items: center;
    color: #18648F;
}

.doa-card {
    width: 150px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 7.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 10px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    flex: 0 0 150px; /* Consistent width */
}

.doa-pict {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ff8c42;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.doa-pict img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.doa-name {
    font-size: 16px;
    color: #1e90ff;
    margin-bottom: 5px;
    font-weight: bold;
}

.doa-isi {
    font-size: 12px;
    color: #333333;
    line-height: 1.2;
}

.doa-section {
    padding: 0px 12px;
}

.doa-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

/* Media Queries */
@media (max-width: 768px) {
    .doa-card {
        width: 100px;
        height: 200px;
    }
    .doa-pict {
        width: 80px;
        height: 80px;
    }
    .doa-name {
        font-size: 16px;
    }
    .doa-isi {
        font-size: 12px;
    }
    .doa-list {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .doa-card {
        width: 80px;
        height: 200px;
    }
    .doa-pict {
        width: 80px;
        height: 80px;
    }
    .doa-name {
        font-size: 16px;
    }
    .doa-isi {
        font-size: 12px;
    }
    .doa-list {
        gap: 6px;
    }
}

.cerita-container {
    background-color: #E6F3FE;
    padding: 30px 0;
    position: relative; /* For absolute positioning of icon */
    text-align: center; /* Center align title and card */
}

.icon-up-cerita {
    top: 5px; /* Adjust as needed */
    right: 5px; /* Adjust as needed */
    max-width: 5%;
    position: absolute; /* Keep icon in top-right corner */
}

.cerita-title {
    margin: 7.5px 0;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #18648F;
    padding: 0 20px; /* Add some padding for better spacing */
}

.cerita-card {
    width: 85%; /* Adjust width as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block; /* Allows centering with text-align */
    font-family: 'Nunito', sans-serif;
    margin: 10px auto 0; /* Margin top to separate from title */
}

.cerita-media {
    height: 200px; /* Adjust height for image/video */
    background-color: #000000; /* Black background */
    position: relative;
}

.cerita-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the area */
}

.cerita-video {
    width: 100%;
    height: 100%;
    border: none;
}

.cerita-text {
    background-color: #ffffff;
    padding: 10px;
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
}

.cerita-name {
    align-items: start;
    text-align: left;
    margin: 7.5px 0;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #18648F;
    padding: 0 20px; /* Add some padding for better spacing */
}