/* Sections */
section.image {
    width: 100%;
    position: relative;

    img {
        width: 100%;
    }

    .reveal {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: var(--black);
    }
}

section.event-details {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    margin: 2rem 0;
    gap: 2rem;

    @media (max-width: 800px) {
        grid-template-columns: 1fr;
    }

    .h4 {
        margin-bottom: 0.5rem;
    }

    .panelist {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 26rem;

        .panelist-details {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            min-height: 5rem;
        }

        .h4 {
            text-wrap: balance;
        }

        img, .no-image {
            width: 60%;
            aspect-ratio: 1/1;
            margin-bottom: 1rem;
        }

        .no-image {
            background-color: rgba(255, 255, 255, 0.1);
        }
    }
}