/* apply-cta.css — Styles for the shared "APPLY ONLINE" block
   (`includes/apply-cta.php`). Loaded globally via head.php so any
   page that pulls in the partial — regardless of its own
   `$page_css` — picks up the correct visual treatment. */

.apply-cta-section {
    background: #ffffff;
    padding: 3.5rem 0 3rem;
    border-top: 1px solid #ececec;
}

.apply-cta {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.apply-cta-title {
    color: #c41f32;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 1.25rem;
}

.apply-cta-intro {
    color: #44506a;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 1.75rem;
}

.apply-cta-primary { margin-bottom: 1.5rem; }

.apply-cta-primary .btn {
    background: #c41f32;
    color: #ffffff;
    border: 0;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.apply-cta-primary .btn:hover { background: #a61729; }

.apply-cta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 0.5rem;
}

.cta-pill {
    display: inline-block;
    padding: 10px 26px;
    background: #c41f32;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.cta-pill:hover { background: #a61729; }

@media (max-width: 640px) {
    .apply-cta-title { font-size: 1.5rem; }
    .apply-cta-pills { gap: 10px; }
    .cta-pill { padding: 8px 16px; font-size: 0.82rem; }
}
