.fb-event-container{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.fb-event-image img{
width:100%;
border-radius:12px;
margin-bottom:30px;
}

.fb-event-title{
font-size:30px;
margin-bottom:20px;
}

.fb-event-meta{
margin-bottom:30px;
font-size:18px;
}

.fb-event-content{
font-size:18px;
line-height:1.7;
}

.fb-event-register a{
display:inline-block;
margin-top:30px;
padding:14px 28px;
background:#40499c;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

/* EVENTS GRID */

.events-container{
width:100%;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* EVENT CARD */

.event{
border:none;
border-radius:20px;
box-shadow:4px 4px 8px rgba(0,0,0,0.2);
text-align:left;
font-family:Montserrat;
background-color:white;
padding-bottom:20px;
transition:transform .3s ease-in-out;
overflow:hidden;
display:flex;
flex-direction:column;
}

.event:hover{
transform:scale(1.05);
}

/* IMAGE */

.image img{
width:100%;
height:200px;
object-fit:cover;
object-position:center;
border-radius:20px 20px 0 0;
}

/* TEXT */

.event-text{
width:100%;
font-weight:bold;
font-family: Poppins;
padding:20px;
text-align:center;
flex-grow:1;
display:flex;
flex-direction:column;
justify-content:flex-start;
	
}

.event-info{
font-weight:650;
font-size:1.1em;
color:black;
line-height:1.5;
margin-top:1px;
font-family: Poppins;
}

.event-name{
font-size:1.4em;
font-weight:750;
color:#000;
line-height:1.25;
font-family: Poppins;
}

/* RESPONSIVE */

@media screen and (max-width:900px){

.events-container{
grid-template-columns:1fr;
}

.event-name{
font-size:2em;
}

.event-info{
font-size:1.2em;
}

}