/* ─────────────────────────────────────────
   RRF / GREECE 2.0 FUNDING BANNER
   Uses global DigiBlock brand tokens from main.css
───────────────────────────────────────── */

.rrf-banner {
    position: relative;
    z-index: 150;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light, rgb(var(--rgb-off-black) / .06));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.rrf-banner-inner {
    max-width: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 8px;
    align-items: center;
}

.rrf-banner-logos {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.rrf-banner-logo {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
}

.rrf-banner-copy {
    min-width: 0;
}

.rrf-banner-title {
    margin: 0 0 4px;
    color: var(--text-dark);
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.rrf-banner-text {
    margin: 0;
    color: var(--text-dark-subtle);
    font-size: 0.6rem;
    font-weight: 400;
    line-height: 1.4;
}

.rrf-banner-links {
    margin: 8px 0 0;
    color: var(--text-dark-subtle);
    font-size: 0.82rem;
    line-height: 1.5;
}

.rrf-banner-links a {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
}

.rrf-banner-links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .rrf-banner-inner {
        padding: 10px 12px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rrf-banner-logo {
        max-width: 280px;
    }

    .rrf-banner-copy {
        margin-left: 4px;
        margin-right: 4px;
    }
}

@media (max-width: 600px) {
    .rrf-banner-inner {
        padding: 12px 16px;
    }

    .rrf-banner-text {
        font-size: 0.68rem;
    }
}
