﻿.event-details-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.event-details-heading div {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 25px;
}

.event-details-heading img {
    height: 40px;
    width: auto;
}

.banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    height: fit-content;
    margin-top: 50px;
    margin-bottom: 20px;
}

.banner-placeholder img {
    width: inherit;
    height: auto;
}

.event-details-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding-left:20px;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px
}

.event-genre-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.paragraph-container {
    width: 100%;
    margin: 0 auto;
    display: block;
    justify-content: left;
    margin-bottom: 50px;
}

.paragraph-container div {
    width: 75%;
    height: fit-content;
    overflow: hidden;
    padding: 0 20px 0 20px;
}

.paragraph-container div p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.see-more {
    color: midnightblue;
}

.small-card-content {
    width: 100px;
    height: 100px;
    background-color: black;
    border-radius: 50px;
    border: 3.5px solid black;
    overflow: hidden;
}

.small-card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tickets-button {
    background-color: #CCFF00;
    color: black;
    padding: 10px 100px;
    margin-top: 30px;
    cursor: pointer;
    border: 2px solid black;
    border-radius: 25px;
}