/* Baseball Hub UK event pages: match Add Club shell */
.event-shell-match .topbar,
.event-shell-match .add-club-wrap{
    box-sizing:border-box;
}

.event-shell-match .event-page-wrap{
    width:100%;
}

.event-shell-match .event-page-hero{
    margin-bottom:18px;
}

.event-shell-match .event-page-hero h1 span{
    color:#d8232a;
}

.event-top-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.event-add-icon{
    background:#0f172a;
    color:#fff;
}

.event-list-shell{
    padding:18px;
}

.event-list-stack{
    display:grid;
    gap:16px;
}

.bh-event-card{
    display:grid;
    grid-template-columns:76px minmax(0,1fr);
    gap:16px;
    align-items:start;
    width:100%;
    padding:16px;
    border:1px solid rgba(15,23,42,0.08);
    border-radius:22px;
    background:#fff;
    box-shadow:0 10px 24px rgba(15,23,42,0.05);
    box-sizing:border-box;
}

.bh-event-date{
    min-height:74px;
    border-radius:18px;
    background:linear-gradient(180deg,#fff5f5,#ffe8e8);
    border:1px solid rgba(216,35,42,0.12);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#d8232a;
}

.bh-event-date strong{
    font-size:28px;
    line-height:1;
    letter-spacing:-1px;
}

.bh-event-date span{
    margin-top:5px;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.bh-event-body{
    min-width:0;
}

.bh-event-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:10px;
}

.bh-event-title-row h2{
    margin:0;
    color:#d8232a;
    font-size:22px;
    line-height:1.15;
    letter-spacing:-.03em;
}

.bh-event-type{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:7px 10px;
    background:#eef2ff;
    color:#1e3a8a;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.bh-event-info{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0 0 12px;
}

.bh-event-info span,
.bh-event-info a{
    color:#334155;
}

.bh-event-info span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    border-radius:999px;
    padding:8px 11px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,0.07);
    font-size:13px;
    font-weight:650;
}

.bh-event-info i{
    color:#d8232a;
}

.bh-event-description{
    margin:0;
    color:#475569;
    font-size:15px;
    line-height:1.6;
}

.bh-event-actions{
    margin-top:14px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.bh-no-link{
    color:#64748b;
    font-size:13px;
    font-weight:650;
}

.event-empty-card,
.event-message-card{
    margin-top:0;
}

.event-submit-form{
    display:grid;
    gap:20px;
}

.event-form-section{
    padding:0;
    margin:0;
}

.event-form-section + .event-form-section{
    border-top:1px solid rgba(15,23,42,0.08);
    padding-top:20px;
}

.event-form-section h2{
    margin:0 0 14px;
    font-size:20px;
    line-height:1.2;
    letter-spacing:-.02em;
    color:#0f172a;
}

.event-submit-form .public-form-field label,
.event-submit-form label{
    font-weight:650;
}

.event-submit-form textarea{
    min-height:128px;
    resize:vertical;
}

.event-submit-form small{
    margin-top:6px;
    display:block;
    color:#64748b;
    font-size:12px;
    font-weight:500;
}

@media (max-width:700px){
    .event-top-actions{
        gap:8px;
    }

    .event-list-shell{
        padding:14px;
    }

    .bh-event-card{
        grid-template-columns:58px minmax(0,1fr);
        gap:12px;
        padding:14px;
        border-radius:20px;
    }

    .bh-event-date{
        min-height:62px;
        border-radius:16px;
    }

    .bh-event-date strong{
        font-size:23px;
    }

    .bh-event-date span{
        font-size:11px;
    }

    .bh-event-title-row{
        display:block;
    }

    .bh-event-title-row h2{
        font-size:20px;
        margin-bottom:9px;
    }

    .bh-event-type{
        width:max-content;
        max-width:100%;
    }

    .bh-event-info{
        gap:7px;
    }

    .bh-event-info span{
        width:100%;
        box-sizing:border-box;
        justify-content:flex-start;
        white-space:normal;
    }

    .bh-event-description{
        font-size:14px;
    }
}
