/* VOA-eligibility notice, shown before the "Apply Now" CTA on -national pages (Task 16).
   Site crimson/gold palette, same tokens as resident-visa.css. */
.voa-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #faf7f2;
    border: 1px solid #e2d9cb;
    border-left: 4px solid #c8a84b;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 0 0 16px;
    text-align: left;
}
.voa-notice-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #8b1a1a;
    margin-top: 1px;
}
.voa-notice-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}
.voa-notice-body {
    min-width: 0;
}
.voa-notice-text {
    margin: 0 0 8px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #2a1e15;
}
.voa-notice-text strong {
    color: #6b1212;
    font-weight: 600;
}
.voa-notice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #8b1a1a;
    text-decoration: none;
}
.voa-notice-link:hover,
.voa-notice-link:focus {
    color: #6b1212;
    text-decoration: underline;
}
.voa-notice-link:focus-visible {
    outline: 2px solid #c8a84b;
    outline-offset: 2px;
}
@media (max-width: 575px) {
    .voa-notice {
        padding: 10px 12px;
    }
    .voa-notice-text {
        font-size: 13px;
    }
}
