/* Event Mention Widget CSS */
/* Scoped only inside .event-card */

/* ===========================
    Events Widget
=========================== */

.event-card .event-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    /*color: rgba(255, 255, 255, 0.95);*/
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

.event-card .event-location {
    text-align: right;
    line-height: 1.05;
}

.event-card .event-location-top {
    font-size: 10px;
    /* text-transform: uppercase; */
}

.event-card .event-location-bottom {
    margin-top: 3px;
    font-size: 10px;
    /* text-transform: uppercase; */
}

.event-card .event-icon {
    display: grid;
    place-items: center;
    width: 30px;
}

.event-card .event-icon img {
    width: 100%;
    height: auto;
}

.event-card .event-icon i {
    font-size: 25px !important;
}

.event-card .event-main {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.event-card .event-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1;
	color: rgba(255,255,255,0.95);
}

.event-card .event-temp {
    font-size: clamp(20px, 4.2vw, 25px);
    font-weight: 700;
}

.event-card .event-cond {
    font-size: clamp(16px, 2.4vw, 22px);
    font-weight: 600;
}

.event-card .event-sub {
    font-size: 10px;
    /* text-transform: uppercase; */
}

.event-sub--right {
	color: rgba(255,255,255,0.85);
}

.event-card-link .event-card .event-main .event-sub.event-sub--center {
	color: #fff!important;
}
@media screen and (min-width: 1025px) {
	.event-card-link .event-card .event-main .event-sub.event-sub--center {
		font-size: 25px;
	}
}

@media screen and (max-width: 1024px) {
    .event-card .event-temp {
        font-size: 18px;
    }

    .event-card .event-cond {
        font-size: 16px;
    }

    .event-card .event-icon {
        width: 30px;
    }
	.event-card-link .event-card .event-main .event-sub.event-sub--center {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
    .event-card .event-content {
        justify-content: flex-start;
    }

    .event-card .event-temp {
        font-size: 16px;
    }

    .event-card .event-content {
        gap: 10px;
    }
}