<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300;400;500;600;700&amp;display=swap');

:root {
    --bs-body-font-size: 1.1rem;
}

* {
    font-family: 'Zilla Slab', serif;
}

.fullheight {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
main.admin &gt; div {
    width: 1024px;
    max-width: unset !important;
}

.vstretch {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.container {
    --bs-gutter-x: 3rem;
    display: block;
}

.nav-link {
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin-bottom: 1rem;
}

main.article p + :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 1.7rem;
}

p, li, a {
    font-weight: 400;
}

nav, footer {
    background-color: #00ccff;
}

.navbar-brand img {
    max-width: 250px;
    height: auto;
}
img.persona-header {
    height: 60px;
    width: auto;
    border-radius: 50%;
    margin-right: 0.5rem;
}
@media (min-width: 520px) {
    .navbar-brand img {
        max-width: 500px;
        height: auto;
    }
}
@media (min-width: 992px) {
    .navbar-brand img {
        height: 150px;
        width: auto;
    }
    img.persona-header {
        height: 100px;
        margin-right: 1rem;
    }
}

img.persona-menu-item {
    height: 20px;
    width: auto;
    border-radius: 50%;
    margin-right: 8px;
}

main.singlecol {
    background-color: #d9f8ff;
}

main.singlecol &gt; .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 88ch;
    background: white;
    padding-top: 30px;
    padding-bottom: 40px;
}

@media (min-width: 992px) {
    main.singlecol &gt; .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.eyebrow {
    text-transform: uppercase;
}

.review-teaser {
    margin-bottom: 2em;
}

.source {
    margin-bottom: 0.8em;
}

.source img {
    width: 20px;
    height: 20px;
    margin-right: 1ex;
}

.perspective {
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.colored {
    color: #008fb3;
}

.bg-colored-bright {
    background-color: #d9f8ff;
}


a {
    position: relative;
    text-decoration: none;
    color: #000;
}
a.colored {
    color: #008fb3;
}
a.underlined:hover {
    text-decoration: underline;
}
a.animated::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
a.animated.colored::before, a.animated.colored::after {
    background-color: #008fb3;
}
a.animated::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
a.animated:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
a.animated:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}
a.button {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #00ccff;
    border-radius: 0.25rem;
    background-color: white;
    color: #008fb3;
    transition: background-color 0.15s ease-in-out;
}
a.button:hover,
a.button:focus {
    background-color: #d9f8ff;
    text-decoration: none;
    color: white;
}

div.perspective-link {
    display: inline-block;
    padding-right: 4px;
    width: 14%;
}
@media (min-width: 768px) {
    div.perspective-link {
        width: 10%;
    }
}
div.perspective-link &gt; div &gt; img {
    filter: grayscale(100%);
    width: 100%;
}
div.perspective-link &gt; div &gt; img:hover {
    filter: grayscale(0%);
}
div.perspective-link &gt; div.active {
    box-sizing: border-box;
    border: 2px solid #00ccff;
}

img.persona {
    border-radius: 1rem;
    width: 75%;
}
@media (min-width: 768px) {
    img.persona {
        width: unset;
    }
}

/* speech bubble (top callout for mobile) */
div.bubble {
    position: relative;
    margin-top: 1rem;
    margin-left: 0.5em;
    margin-right: 0.5em;
    background-color: #fff;
    padding: 1.125em 1.5em;
    border-radius: 1rem;
    box-shadow:    0 0.125rem 0.5rem rgba(0, 0, 0, .3), 0 0.0625rem 0.125rem rgba(0, 0, 0, .2);
}
div.bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    left: 50%;
    border: .75rem solid transparent;
    border-top: none;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, .1));
    transform: translateX(-.75rem); /* Center the triangle vertically */
}
@media (min-width: 768px) {
    /* speech bubble (left callout for non-mobile) */
    div.bubble {
        position: relative;
        margin-top:0;
        margin-left: 1.5rem; /* Add space for the triangle */
        margin-right: 0;
    }
    div.bubble::before {
        margin-top: 0;
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        top: 50px; /* Position vertically at the middle */
        left: -0.75rem; /* Position outside the left border */
        transform: translateY(-50%); /* Center the triangle vertically */
        border: .75rem solid transparent;
        border-left: none; /* Remove left border to create triangle */
        border-right-color: #fff;
        filter: drop-shadow(-0.0625rem 0 0.0625rem rgba(0, 0, 0, .1));
    }
}

div.emblem {
    /* rounded corners, transparent white bg */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    position: absolute;
    bottom: 0.4em;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    padding-left: 1em;
    padding-right: 1em;

}
div.emblem &gt; div {
    position: relative;
    font-weight: 500;
    top: -0.1em;
    white-space: nowrap;
}
@media (min-width: 768px) {
    div.emblem {
        font-size: 75%;
    }
}

.hidden-meta {
    color: white;
    font-size: 10px;
    font-family: Consolas, Courier New, monospace;
}


.pseudologo {
    width: 30px;
    height: 30px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 0.5em;

    .acronym {
        color: white;
        font-family: Arial, sans-serif;
        font-size: 11px;
        text-align: center;
        user-select: none;
    }
}

.audio-player {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    &amp; .player-controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    &amp; #playPauseBtn {
        width: 12px;
    }
    &amp; #muteBtn {
        width: 22px;
    }
    &amp; .control-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: #666;
        margin-right: 0.5em;
        transition: color 0.2s;
    }
    &amp; .control-btn:hover {
        color: #333;
    }
    &amp; .progress-container {
        flex-grow: 1;
        margin-right: 15px;
    }
    &amp; .progress-bar {
        width: 100%;
        height: 5px;
        background: #eee;
        border-radius: 3px;
        cursor: pointer;
        position: relative;
    }
    &amp; .progress {
        width: 0;
        height: 100%;
        background: #00ccff;
        border-radius: 3px;
        transition: width 0.1s linear;
    }
    &amp; .time-display {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }
    &amp; .volume-container {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    &amp; .volume-slider {
        width: 80px;
        height: 5px;
        background: #eee;
        border-radius: 3px;
        cursor: pointer;
        position: relative;
    }
    &amp; .volume-bar {
        width: 100%;
        height: 100%;
        background: #00ccff;
        border-radius: 3px;
    }
}
</pre></body></html>