/* ── Join popup ──────────────────────────────────────────────────────────── */

.join-popup-hero {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.join-popup-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

.join-popup-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.45) 100%);
}

.join-popup-body {
    padding: 22px 28px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.join-popup-brand {
    font-family: var(--brevitiveFont);
    font-size: 2.2rem;
    color: #1a1a1a;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.join-popup-message {
    font-family: var(--mainFont);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #666;
    margin: 0 0 22px;
}

.join-popup-btn {
    display: inline-block;
    background: #2c2c2c;
    color: white;
    font-family: var(--mainFont);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 44px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s;
}

.join-popup-btn:hover {
    background: #484848;
}
