body {
    background-color: #0f0f0f;
}

.role-page {
    background-color: #0f0f0f;
    color: #f5f5f5;
}

.role-detail {
    padding: 48px 0 100px;
}

.role-container {
    max-width: 980px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #f5f5f5;
    text-decoration: none;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.88;
}

.back-link:hover {
    opacity: 1;
}

.role-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.role-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.role-badge {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-yellow);
    color: #121212;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.role-header h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.apply-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 34px;
    padding: 0 18px;
    text-decoration: none;
    border-radius: 999px;
    background-color: var(--primary-yellow);
    color: #141414;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.apply-pill:hover {
    opacity: 0.85;
}

.role-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 34px;
}

.meta-label {
    color: #b9b9b9;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.meta-value {
    color: #ffffff;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 14px;
}

.role-section {
    margin-bottom: 34px;
}

.role-section h2 {
    color: #ffffff;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1;
    margin-bottom: 12px;
}

.role-section p,
.role-section li {
    color: #f2f2f2;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.role-section p + p {
    margin-top: 10px;
}

.role-section ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.role-apply a {
    color: var(--primary-yellow);
    font-weight: 700;
}

@media (max-width: 768px) {
    .role-detail {
        padding: 34px 0 72px;
    }

    .role-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .role-title-wrap {
        align-items: flex-start;
    }

    .apply-pill {
        min-width: 110px;
    }

    .role-meta {
        margin-bottom: 26px;
    }

    .role-section {
        margin-bottom: 28px;
    }
}
