#talks {
    max-width: var(--section-max-width);
}

#talks .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row;
}

#talks .top-bar a {
    color: #fff;
    text-decoration: none;
}

#talks .each-day {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

#talks .tgls {
    margin: 30px 0;
}

#talks .speakers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

#talks .placeholder {
    border: 1px solid #fff3;
    padding: 28px 30px;
}
    

@media (max-width: 768px) {
    #talks .each-day {
        gap: 20px;
    }
    .card.half {
        width: calc(50% - 10px);
    }
    #talks .top-bar a {
        font-size: 12px;
    }
}