.events-category-page {
    background: #fff;
}
.events-category-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.section-kicker {
    color: #e7193f;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
}
.events-category-head h2 {
    color: #071b43;
    font-weight: 950;
    margin: 8px 0;
}
.events-category-head p {
    color: #65748b;
    max-width: 780px;
    margin: 0;
}
.event-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}
.event-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #d9e2ef;
    background: #fff;
    color: #071b43 !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 14px;
    transition: all .22s ease;
}
.event-category-pill:hover,
.event-category-pill.active {
    background: #e7193f;
    color: #fff !important;
    border-color: #e7193f;
    box-shadow: 0 12px 28px rgba(231,25,63,.18);
}
.event-card-modern {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(7,27,67,.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(7,27,67,.07);
    display: flex;
    flex-direction: column;
}
.event-card-img {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #f5f7fb;
}
.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.event-card-modern:hover .event-card-img img {
    transform: scale(1.04);
}
.event-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.event-card-cat {
    display: inline-flex;
    align-self: flex-start;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(7,27,67,.08);
    color: #071b43;
    font-size: 12px;
    font-weight: 900;
}
.event-card-body h3 {
    font-size: 20px;
    line-height: 1.35;
    margin: 0;
    font-weight: 900;
}
.event-card-body h3 a {
    color: #071b43 !important;
    text-decoration: none !important;
}
.event-card-body p {
    color: #65748b;
    line-height: 1.65;
    margin: 0;
}
.event-meta {
    color: #071b43 !important;
    font-weight: 700;
}
.event-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #071b43;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    margin-top: auto;
}
.event-read-btn:hover {
    background: #e7193f;
}
@media(max-width: 575.98px) {
    .event-category-pill { width: 100%; justify-content: center; }
    .event-card-img { height: 190px; }
}
