.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube {
    width: 100%;
    max-width: 100vw;
    max-height: 60vh;
    aspect-ratio: 16 / 9;
}

/* .ics-download {
    vertical-align: super;
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--accent-color, #0078d4);
    color: var(--bg-color, white);
    border-radius: 4px;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9em;
}

.ics-download:active,
.ics-download:active:hover,
.ics-download:visited,
.ics-download:link {
    color: var(--bg-color, white);
}

.ics-download:hover {
    opacity: 0.9;
}

.ticket-link {
    display: inline-block;
    padding: 0.6em 1.2em;
    background: var(--main-colour);
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin: 0.5em 1em;
    vertical-align: super;
    animation: ticket-grow 2s infinite ease-in-out;
}

@keyframes ticket-grow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {  
        transform: scale(1);
    }
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
    margin-bottom: 1em;
    justify-content: space-around;
} */