.header-carousel .owl-carousel-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
/* Badge style */
.badge-job {
    background: #e9f3ff;
    color: #0d6efd;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
}

/* Logo perusahaan */
.company-logo {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    object-fit: cover;
    background: #fff;
    border: 1px solid #eee;
}

/* Button hover selengkapnya */
.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.btn-more i {
    font-size: 16px;
}

/* Default: teks disembunyikan */
.btn-more span {
    max-width: 0;
    opacity: 0;
    transition: all .3s ease;
}

/* Hover: teks muncul */
.btn-more:hover span {
    max-width: 200px;
    opacity: 1;
}

/* Hover effect */
.btn-more:hover {
    background: #0d6efd;
    color: #fff;
    padding-right: 18px;
}
.album-img {
    width: 100%;
    height: 250px; /* atur tinggi sesuai selera */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}    

