/* Global security awareness strip */

.oh-security-strip {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.oh-security-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.oh-security-strip-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 240px;
}

.oh-security-strip-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(26, 122, 66, 0.2);
    color: #86efac;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.oh-security-strip-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.oh-security-strip-text span {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.oh-security-strip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #1a7a42;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.oh-security-strip-link:hover {
    background: #15803d;
    color: #fff;
}

@media (max-width: 640px) {
    .oh-security-strip-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .oh-security-strip-link {
        justify-content: center;
    }
}
