/* Company Profile Job Detail Page Styles */

/* ─── Job Header Section ─── */
.jms-cpjd-job-header {
    background: #faf7f2;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.jms-cpjd-job-header .jms-cpj-job-header {
    margin-bottom: 10px;
}

.jms-cpjd-job-header .jms-cpj-badges {
    margin-bottom: 14px;
}

/* ─── Feature Tags (outlined badges) ─── */
.jms-cpjd-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jms-cpjd-feature-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #0d8c3f;
    color: #0d8c3f;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    background: transparent;
}

/* ─── Detail Button as Anchor ─── */
a.jms-cpj-detail-btn {
    text-decoration: none;
    color: #0d8c3f;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

a.jms-cpj-detail-btn:hover {
    background: #0d8c3f;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* ─── Inquiry Button ─── */
.jms-cpjd-inquiry-section {
    text-align: center;
    margin: 32px 0;
}

.jms-cpjd-inquiry-btn {
    display: inline-block;
    padding: 14px 48px;
    background: #0d8c3f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .jms-cpjd-job-header {
        padding: 18px 16px;
    }

    .jms-cpjd-feature-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .jms-cpjd-inquiry-btn {
        display: block;
        width: 100%;
        padding: 12px;
    }
}
