.journal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.page-header .shell > p:not(.eyebrow) {
    max-width: 650px;
    color: #d2cdc1;
    font-size: 1.2rem;
}

.journal-message {
    margin: 0 0 32px;
    padding: 16px 20px;
    border: 1px solid #84701f;
    background: #fff2a8;
    color: var(--ink);
    font-weight: 700;
}

@media (max-width: 620px) {
    .journal-actions .button {
        width: 100%;
    }
}

.journal-timeline {
    display: flex;
    gap: 10px;
    margin: 0 0 56px;
    padding: 0 0 14px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
}

.journal-timeline a {
    flex: 0 0 auto;
    padding: 9px 15px;
    border: 1px solid var(--line);
    color: #4f493f;
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
}

.journal-timeline a:hover,
.journal-timeline a[aria-current="page"] {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.journal-days {
    display: grid;
    gap: 72px;
}

.journal-day {
    position: relative;
    padding-left: 32px;
    border-left: 2px solid #c7b453;
}

.journal-day::before {
    position: absolute;
    top: 5px;
    left: -7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #81701c;
    content: '';
}

.journal-day-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.journal-day-heading time {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 700;
}

.journal-day-heading span {
    color: #6b655a;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.article-media-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.article-media-summary a {
    padding: 8px 13px;
    border: 1px solid #8d8577;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.article-media-summary a:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.anchored-section {
    scroll-margin-top: 28px;
}

.article-gallery h2 small,
.video-section h2 small {
    display: inline-block;
    margin-left: 8px;
    color: #aaa392;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.full-image-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.full-image-link > span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    background: rgba(23, 21, 15, .88);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    opacity: 0;
    transition: opacity .2s ease;
}

.full-image-link:hover > span,
.full-image-link:focus-visible > span {
    opacity: 1;
}

.image-lightbox {
    width: min(96vw, 1600px);
    max-width: none;
    height: min(94vh, 1100px);
    max-height: none;
    padding: 46px 20px 20px;
    border: 0;
    background: #0d0c09;
    color: #fff;
}

.image-lightbox::backdrop {
    background: rgba(0, 0, 0, .9);
}

.image-lightbox figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    margin: 0;
}

.image-lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-lightbox figcaption {
    padding-top: 10px;
    color: #d4cec0;
    font-size: .85rem;
    text-align: center;
}

.image-lightbox-close {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 620px) {
    .journal-day {
        padding-left: 20px;
    }

    .journal-day-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .full-image-link > span {
        opacity: 1;
    }
}
