/* =========================================
   WAGES / COP STYLES 
   (Auto-Accident Aesthetic: Clean, Gold/Black/White)
   ========================================= */

.wages-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #334155;
    line-height: 1.6;
}

/* --- INTRO TEXT --- */
.wages-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    margin-bottom: 25px;
    color: #334155;
}

.wages-featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* --- SECTIONS --- */

.wages-subtitle {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-top: 60px;
}

/* --- COP TIMELINE / RULES --- */
.wages-section-block {
    margin-bottom: 40px;
}

.wages-highlight-box {
    background: #f8fafc;
    border-left: 4px solid #c5a059;
    padding: 30px;
    margin: 30px 0;
}

.wages-highlight-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.wages-highlight-box strong {
    color: #111;
    font-weight: 700;
}

/* --- ANATOMY CHECK LIST (2 Columns) --- */
.wages-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .wages-check-list {
        grid-template-columns: 1fr 1fr;
    }
}

.wages-check-list li {
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
}

/* Custom Gold Arrow/Check */
.wages-check-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    color: #c5a059;
}

/* --- CLOSING NOTE --- */
.wages-note {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 4px;
    margin-top: 40px;
    font-style: italic;
    color: #64748b;
    text-align: center;
}