.conference-container{
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.conference-heading{
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

.conference-content-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.conference-body{
    width: 100%;
    height: 100%;
    max-width: 240px;
    /* max-height: 400px; */
    aspect-ratio: 3/4;
    position: relative;
    border: #fff solid 1px;
    border-radius: 15px;
    padding: 10px;
}

.conference-image{
    width: 100%;
    height: 100%;
    max-width: 240px;
    /* max-height: 400px; */
    aspect-ratio: 3/4;
    border-radius: 5px;
}

.conference-date-container {
    background-color: #262626;
    width: 70%;
    margin: 0 auto;
    border-radius: 0 0 30px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 15%;
}

.conference-date-container p {
    margin-bottom: 0;
}
.conference-date {
    font-size: 36px;
    font-weight: 500;
}

.conference-month-th p {
    color: #C6D93B;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 12px;
}
.conference-date-container p {
    margin-bottom: 0;
}