.event-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #071621;
    max-width: 300px;

    hr{
        width: 100%;
        color: #403756;
        margin-top: 10px !important;
    }
    .event-validated{
        gap: 5px;
        display: flex;
        font-size: 20px;
        color: #403756;
        font-weight: bold;
        align-items: center;
    }
    .event-logo{
        img{
            border-radius: 20px;
        }
    }
    .event-basics-info{
        font-weight: 600;
        h1{
            color: #071621 !important;
        }
        .event-website{
            margin-top: 10px;
            font-size: 18px;
            a{
                color: #403756 !important;
                text-decoration: underline;
            }
        }
    }
    .event-details{
        gap: 10px;
        display: flex;
        flex-direction: column;
        .location-view{
            gap: 0px;
            display: flex;
            font-weight: 800;
        }
        .date-view{
            gap: 5px;
            display: flex;
            color: #403756;
            align-items: center;
            span{
                font-weight: bold;
            }
        }
    }
    .event-attendees{
        h3{
            color: #071621 !important;
            font-size: 18px;
            font-weight: bold;
        }
        .attendees-list{
            gap: 10px;
            display: flex;
            flex-direction: column;
            div{
                font-size: 16px;
                .number{
                    font-weight: bold;
                }
            }
        }
    }
    .event-socials{
        gap: 16px;
        margin: auto;
        display: flex;
        margin-top: 20px;
        align-items: center;
        a{
            display: flex;
            padding: 10px;
            max-width: 40px;
            max-height: 40px;
            border-radius:100%;
            align-items: center;
            justify-content: center;
            border: 1px solid #403756;
            svg{
                color: #403756 ;
            }
        }
        
    }
}

.event-socials > a:hover{
    border: 1px solid #071621;
    background-color: #403756;
    svg{
        color: #FFD7EB ;
    }
}