body {
    font-family: system-ui, Arial, sans-serif;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    padding: 0 1rem
}

.header {
    margin-bottom: 1rem
}

.logo {
    max-width: 260px;
    height: auto
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px
}

a {
    color: #0077cc;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.subtitle {
    color: #555;
    text-align: left;
    margin: 0 0 .25rem
}

h1 {
    text-align: left;
    margin: .25rem 0 1rem
}

.back {
    text-align: left;
    margin: 0 0 1rem
}

.date {
    display: flex;
    align-items: center;
    font-size: .8rem;
    color: #666;
    margin: 1rem 0;
    text-align: left
}

.date svg {
    width: 16px;
    height: 16px;
    fill: #d00000;
    margin-right: .35rem
}

.author {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    text-align: left
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex: none
}

.author-meta {
    margin-left: .75rem
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
    display: block
}

.author-meta a.mail {
    display: inline-block;
    margin-bottom: .25rem
}

.author-meta svg {
    width: 18px;
    height: 14px;
    fill: #d00000
}

.credit {
    font-size: .75rem;
    color: #555;
    text-align: left;
    margin: .25rem 0 1rem
}

.carousel {
    position: relative
}

.carousel-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: opacity .3s
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    border: 0;
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1
}

.carousel button.prev {
    left: 10px
}

.carousel button.next {
    right: 10px
}

.footer {
    margin-top: 3rem;
    font-size: .8rem;
    color: #555
}

@media(prefers-reduced-motion:reduce) {
    .carousel-img {
        transition: none
    }
}