body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: rgb(221,214,190);
    margin: 0;
    color: #222;
    line-height: 1.5;
}

/* CARD */
.container {
    max-width: 1250px;
    margin: 50px auto;
    background: #f7f7f7;
    padding: 40px;
}

/* TOP */
.basicInfo {
    display: flex;
    gap: 20px;
    align-items: center;
}

.imageInfo img {
    width: 180px;
    height:180px;
    border-radius: 12px;
    object-fit: cover;
}

.event{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex:1;
    min-width:0;
}

/* META */
.eventData {
    margin-top: 6px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.eventData a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.eventInfo a{
    color:#0b63ff;
    text-decoration:none;
    font-weight:600;
}

.eventInfo a:hover{
    text-decoration:underline;
}

.date, .location {
    margin-bottom: 5px;
}

/* CONTENT */
.content {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 40px;
    margin-top:30px;
    align-items:start;
}

.title{
    font-size: clamp(28px,3vw,42px);
    font-weight: 900;
    color:#1f2b3a;
    margin:0;
    line-height:1.15;
}

.title::after{
    content:"";
    display:block;
    width:85px;
    height:8px;
    background:#2f5f0d;
    margin-top:18px;
}

.eventInfo p {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.location a{
    color:#0d3f91;
    text-decoration:none;
    font-weight:500;
}

.location a:hover{
    text-decoration:underline;
}

/* LINKS */

.venueList,
.linksList {
   width:100%;
   margin:0;
}

.venueList h4,
.linksList h4 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #1f2430;
    font-weight: 700;
}

.venueList ul,
.linksList ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f5f5f5;
    border: 1px solid #dddddd;
    border-radius: 18px;
    overflow: hidden;
}

.venueList li,
.linksList li {
   border-bottom:1px solid #e5e5e5;
}

.venueList a,
.linksList a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    text-decoration: none;
    color: #0b63ff;
    transition: all .2s ease;
}

.venueList a:hover,
.linksList a:hover {
    background: #fafafa;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width:280px;
}

.bookingList{
    width:100%;
    margin:0;
}

.bookingList h4{
    font-size:16px;
    margin:0 0 10px;
    color:#1f2430;
    font-weight:700;
}

.tito-widget-button{
    width:100%!important;
    padding:16px 18px!important;
    border-radius:18px!important;
    background:#fafafa!important;
    color:#0b63ff!important;
    font-size:15px!important;
    font-weight:700!important;
    cursor:pointer!important;
    transition:all .2s ease!important;
    text-align:center!important;
}

.tito-widget-button:hover{
    background:#0b63ff!important;
    color: white!important;
}

.tito-widget-button:active{
    transform:translateY(0);
}

@media (max-width: 768px) {
    .basicInfo {
        flex-direction: column;
    }

    .content {
        grid-template-columns: 1fr;
    }

    .container {
        margin: 20px;
        padding: 20px;
    }

    .linksList{ 
        max-width:100%; 
    } 
    
    .linksList a{ 
        font-size:18px; padding:18px; 
    } 
    
    .arrow{ font-size:28px;
    }

    .title{
        font-size:30px;
    }

    .imageInfo img{
        width:140px;
        height:140px;
    }
}