.mq-events-wrapper {
    max-width: 1312px;
    margin: auto;
}

.mq-events-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.mq-events-filters .mq-filter {
    border: 1px solid rgba(148, 188, 221, 1);
    padding: 4px 12px;
    border-radius: 999px;
    background: white;
    cursor: pointer;
    color: rgba(148, 188, 221, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 50px;
}

.mq-events-filters .mq-filter:hover,
.mq-events-filters .mq-filter.active:hover,
.mq-events-filters .mq-filter:focus {
    background-color: rgba(236, 102, 39, 1);
    border-color: rgba(236, 102, 39, 1);
    color: #FFF;
    border-radius: 50px;
}

.mq-events-filters .mq-filter.active,
.mq-events-filters .mq-filter.active:focus {
    background-color: transparent;
    border-color: rgba(236, 102, 39, 1);
    color: rgba(236, 102, 39, 1);
    border-radius: 50px;
}

.mq-events-wrapper .mq-event-card {
    display: grid;
    grid-template-columns: 337px 366px 1fr;
    gap: 24px;
    border: 1px solid rgba(191, 216, 237, 1);
    border-radius: 16px;
    padding: 10px 24px;
    margin-bottom: 16px;
    background: white;
}

.mq-events-wrapper .mq-event-date-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
}

.mq-events-wrapper .mq-event-image-col {
    display: flex;
    align-items: center;
}

.mq-events-wrapper .mq-event-image-col img {
    width: 100%;
    height: 216px;
    object-fit: cover;
    border-radius: 8px;
}

.mq-events-wrapper .mq-event-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px
}

.mq-events-wrapper .mq-date-pill {
    background-color: rgba(255, 248, 245, 1);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding: 4px 12px;
    color: rgba(235, 138, 47, 1);
    border-radius: 4px;
}

.mq-events-wrapper .mq-location-pill {
    background-color: rgba(234, 244, 253, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(18, 103, 173, 1);
    padding: 4px 12px;
    border-radius: 4px;
}

.mq-events-wrapper h3.mq-event-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #000;
    margin: 0;
}

.mq-events-wrapper .mq-speaker-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    padding: 4px 10px;
    border-radius: 8px;
    gap: 4px;
    align-self: baseline;
    text-transform: capitalize;
}

.mq-events-wrapper .mq-short-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(100, 116, 139, 1);
}

.mq-events-wrapper .mq-read-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(18, 103, 173, 1);
    text-decoration: none;
}

.mq-events-wrapper .mq-load-more-wrap {
    text-align: center;
    margin-top: 30px;
}

.mq-events-wrapper #mq-load-more {
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .mq-events-wrapper .mq-event-card {
        grid-template-columns: 1fr;
    }
}

/* ── Skeleton Loader ───────────────────────────────────────────────── */
@keyframes mq-shimmer {
    0%   { background-position: -800px 0; }
    100% { background-position:  800px 0; }
}

.mq-skeleton-card {
    display: grid;
    grid-template-columns: 337px 366px 1fr;
    gap: 24px;
    border: 1px solid rgba(191, 216, 237, 1);
    border-radius: 16px;
    padding: 10px 24px;
    margin-bottom: 16px;
    background: white;
    min-height: 236px;
    pointer-events: none;
}

.mq-skeleton-block {
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        #eef3f7 25%,
        #dde8f0 50%,
        #eef3f7 75%
    );
    background-size: 800px 100%;
    animation: mq-shimmer 1.4s infinite linear;
}

/* Date column */
.mq-skeleton-date-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.mq-skeleton-date-pill {
    height: 36px;
    width: 70%;
    border-radius: 4px;
}

.mq-skeleton-location-pill {
    height: 32px;
    width: 90%;
    border-radius: 4px;
}

/* Image column */
.mq-skeleton-image-col {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.mq-skeleton-image {
    width: 100%;
    height: 216px;
    border-radius: 8px;
}

/* Content column */
.mq-skeleton-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.mq-skeleton-title {
    height: 28px;
    width: 85%;
    border-radius: 4px;
}

.mq-skeleton-title-short {
    height: 28px;
    width: 55%;
    border-radius: 4px;
    margin-top: -4px;
}

.mq-skeleton-speaker {
    height: 32px;
    width: 45%;
    border-radius: 8px;
}

.mq-skeleton-desc {
    height: 16px;
    width: 100%;
    border-radius: 4px;
}

.mq-skeleton-desc-short {
    height: 16px;
    width: 70%;
    border-radius: 4px;
}

.mq-skeleton-link {
    height: 16px;
    width: 80px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .mq-skeleton-card {
        grid-template-columns: 1fr;
    }
}