main#articles, main#article {
    padding: 0;
}
#articles footer .custom-shape-divider-bottom-1710171015 {
    display: none;
}
header:not(.dynamic) {
    background: none;
}
.featured-article {
    min-height: 18rem;
    position: relative;
    padding-top: 4rem;
    display: flex;
    justify-content: center;
}

.featured-article figure {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    margin: 0;
}
.featured-article figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.featured-article .content {
    position: absolute;
    top: 0;
    height: 100%;
    padding: .5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#articleList, #articleBody {
    position: relative;
    background: var(--color4, white);
    min-height: 12rem;
    color: var(--color1, black);
}
#articleBody {
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    main#articles .featured-article {
        display: block;
        height: fit-content;
    }
    #articles .featured-article .content {
        position: relative;
    }
    #articleList {
        padding-bottom: 6rem;
    }
}
@media (min-width: 768px) {
    main#articles .featured-article {
        align-items: end !important;
        min-height: 32rem;
    }
}

#articleBody img {
    float: right;
    margin: 0 0 1rem 3rem;
    width: 100%;
    border-radius: 6px;
}
#articleBody a {
    text-decoration: underline;
}
#articleBody a:hover::after {
    display: none;
}

#articleBody sup a {
    color: var(--color4, white);
    background: var(--color1, darkblue);
    text-decoration: none;
    padding: .05rem .5rem;
    margin: 0 .15rem;
    border-radius: 2rem;
    font-size: 7pt;
}
#articleBody sup a:hover::after {
    display: none;
}
#articleBody sup a:hover {
    background: var(--color2, orange);
}

@media (min-width: 768px) {
    .side-panel {
        position: sticky;
        top: 7rem;
        padding: 0;
    }
}
.side-panel {
    height: fit-content;
}
.listen {
    position: relative;
    height: 12rem;
    background: var(--color1, darkblue);
    color: var(--color4, white);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.audio-slider {
    margin: 1rem 0 1.5rem 0;
    position: relative;
    height: 4px;
    width: calc(100% - 30px);
    border-radius: 6px;
    background: grey;
}
.audio-slider .handle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    height: 1rem;
    width: 1rem;
    background: var(--color4, white);
    border-radius: 50%;  
    cursor: grab;  
    z-index: 1;
}
.audio-slider.sliding .handle {
    cursor: grabbing;
}
.audio-slider .fill {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--color2, orange);
    width: 0;
    border-radius: 6px;
}
.audio-slider .times {
    user-select: none;
    margin-top: .75rem;
    width: 100%;
    font-size: 10pt;
    display: flex;
    justify-content: space-between;
}

.play-button {
    position: relative;
    background: var(--color4, white);
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    cursor: pointer;
}
.play-button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    
    border-left: 10px solid var(--color2, orange);
}
.play-button.playing::after {
    border: none;
    height: 35%;
    width: 4px;
    left: 40%;
    background: var(--color2, orange);
}

.play-button.playing::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    height: 35%;
    width: 4px;
    right: 40%;
    background: var(--color2, orange);
}

#sources {
    margin-top: 2rem;
}
.source {
    font-size: 14pt;
}

#popover {
    pointer-events: all;
}
#popover a {
    text-decoration: underline;
}
#popover a:hover::after {
    display: none;
}

.share-links a {
    text-decoration: none !important;
    margin: 0 .5rem;
}

#cta {
    padding: 9rem 0;
}


