@font-face {
    font-family: 'Bitter';
    src: url('Bitter-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Bitter';
    src: url('Bitter-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    border: none;
    background: transparent;
    font: inherit;
    color: inherit;
}

:root {
    --background-color: #EFF3F6;
}

body {
    font-family: 'Bitter', serif;
    line-height: 1.4;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.content {
    width: 50rem;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.published-date {
    margin: 0;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Add this to establish a positioning context for the iframe */
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Remove default border */
}

.closing-text {
    margin: 0;
}

.audio-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audio-link img {
    width: 1.5rem;
    height: 1.5rem;
}

a {
    color: #007AFF;
}

a:visited {
    color: #007AFF;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .content {
        width: 100%;
        min-height: 100dvh;
        margin: 0;
        border: none;
        border-radius: 0;
    }
}
