.events-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.event-item {
    position: relative;
    background: #00000099;
    border-radius: 15px;
    box-shadow: inset 0 0 0 1px #ffffff05;
    transition: 0.5s ease-in-out;
    padding: 20px;
}

.event-item:before {
    content: '';
    top: -1px;
    left: -1px;
    position: absolute;
    height: 100.5%;
    width: 100.5%;
    z-index: -1;
    border-radius: 15px;
    background: linear-gradient(165deg, #77B9F299, #FFFFFF05);
}

.event-item .event-thumbnail {
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 20px;
	height: 290px;
}

.event-item .event-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

.event-item .event-content {
    margin-top: 0;
    padding: 0;
    color: var(--grey);
}

.event-item .event-date {
    font-family: "Klapt-Regular";
    color: var(--grey);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
	position: relative;
	padding-left: 20px;
}

.event-item .event-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; 
    height: 8px;
    background-color: #77B9F2; 
    border-radius: 50%;
    margin-right: 12px;
}

.event-item h3 {
    font-size: 40px;
    margin-bottom: 0;
    color: var(--grey);
}

.event-item h3 a {
    color: inherit;
    text-decoration: none;
}

.event-item:hover {
    background: #00000039;
}

@media (max-width: 768px) {
    .events-grid-container {
        grid-template-columns: 1fr;
    }
	
	.event-item h3 {
		font-size: 32px;
	}
	
	.event-item {
		padding: 15px;
	}
}