input {
    margin-bottom: 0;
}

.career-banner.with-overlay {
    position: relative;
    background-image: url("/landing/images/banner-1.webp");
    background-size: cover;
    background-position: 100% 80%;
    background-repeat: no-repeat;
    /* min-height: 400px; */
    z-index: 0;
    overflow: hidden;
}

.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
}

.search-bar input,
.search-bar select {
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    flex: 1;
    height: 50px;
    font-size: 15px;
}

.search-bar button {
    /* background: #000;
    color: #fff; */
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    height: 50px;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.job-card {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease; /* animasi transisi */
}

.job-card:hover {
    transform: translateY(-6px); /* naik sedikit */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* bayangan lebih besar */
}

.job-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: clamp(18px, 2.5vw, 28px);
    /* color: #004120; */
}

.meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.company-name {
    font-weight: 600;
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.meta-item i {
    font-size: 14px;
    margin-right: 8px;
    margin-top: 2px;
    /* color: #004120; */
    min-width: 16px;
}

.meta-text {
    word-break: break-word;
}

.department {
    font-weight: 600;
    color: #004120;
    background-color: #e6f4ec;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
}

.description {
    flex-grow: 1;
    font-size: 15px;
    margin-bottom: 16px;
    font-size: 15px;
}

.more-link {
    color: #004120;
    cursor: pointer;
}

.more-link:hover {
    color: #006633;
}

.posted {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-btn {
    background: #f3f3f3;
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
}

.bookmark-btn {
    background: transparent;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}


@media (max-width: 1200px) {
    .job-listings {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .search-bar {
        flex-direction: column;
    }

    .search-bar input,
    .search-bar select,
    .search-bar button {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .job-listings {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-listings {
        grid-template-columns: 1fr;
    }

    .job-card {
        min-height: auto;
    }
}

