.jtl-section {
    margin: 40px 0;
}

.jtl-section-header {
    display: flex;
    justify-content: space-between;
    background: #00A66A;
    padding: 12px 15px;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.jtl-section-header h2 {
    margin: 0;
    font-size: 22px;
}

.jtl-view-all {
    background: #fff;
    color: #00A66A;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.jtl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border: 2px solid #00A66A;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    background: #fff;
}

.jtl-card {
    border: 2px solid #0dbc7c;
    border-radius: 10px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.jtl-title {
    margin-bottom: 10px;
    font-size: 18px;
}

.jtl-date {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
}

.jtl-apply {
    background: #00A66A;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

/* Responsive */
@media(max-width: 767px) {
    .jtl-grid {
        grid-template-columns: 1fr;
    }
}
