.chronicles-page {
    width: min(1180px, calc(100% - 48px));
    margin: 54px auto 90px;
}

.chronicles-header {
    position: relative;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    align-items: center;

    padding: 34px 38px;
    border: 1px solid rgba(199, 164, 91, 0.36);

    background:
        linear-gradient(
            125deg,
            rgba(7, 13, 17, 0.98),
            rgba(12, 21, 26, 0.94)
        );

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.28),
        inset 0 0 50px rgba(199, 164, 91, 0.025);
}

.chronicles-header::after {
    position: absolute;
    right: 28px;
    bottom: -1px;
    left: 28px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(199, 164, 91, 0.6),
            transparent
        );

    content: "";
}

.chronicles-header-rune {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;

    border: 1px solid rgba(199, 164, 91, 0.46);
    border-radius: 50%;

    color: #d4af5d;
    font-size: 2.6rem;

    box-shadow:
        inset 0 0 26px rgba(199, 164, 91, 0.08),
        0 0 30px rgba(0, 0, 0, 0.34);
}

.chronicles-header h1 {
    margin: 5px 0 10px;

    color: #e8dfc7;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.95;
}

.chronicles-introduction {
    max-width: 760px;
    margin: 0;

    color: #aaa79e;
    line-height: 1.65;
}

.chronicles-timeline {
    position: relative;

    margin-top: 30px;
    padding-left: 48px;
}

.chronicles-timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 17px;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            #c7a45b,
            rgba(199, 164, 91, 0.12)
        );

    content: "";
}

.chronicle-entry {
    position: relative;

    border: 1px solid rgba(199, 164, 91, 0.28);

    background:
        linear-gradient(
            135deg,
            rgba(8, 14, 18, 0.98),
            rgba(5, 9, 12, 0.98)
        );

    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.chronicle-entry-marker {
    position: absolute;
    top: 38px;
    left: -48px;

    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;

    border: 1px solid #c7a45b;
    border-radius: 50%;

    background: #080d10;
    color: #d8b760;
    font-size: 0.9rem;

    box-shadow: 0 0 18px rgba(199, 164, 91, 0.18);
}

.chronicle-entry-content {
    padding: 38px 42px 44px;
}

.chronicle-entry-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 26px;
    border-bottom: 1px solid rgba(199, 164, 91, 0.18);
}

.chronicle-entry-header h2 {
    margin: 6px 0 0;

    color: #e8dfc7;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.chronicle-entry-header time {
    flex: 0 0 auto;

    padding: 8px 11px;
    border: 1px solid rgba(199, 164, 91, 0.26);

    color: #c7a45b;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.chronicle-entry-text {
    max-width: 850px;
    padding-top: 22px;

    color: #b6b2a8;
    font-size: 1rem;
    line-height: 1.78;
}

.chronicle-entry-text p {
    margin: 0 0 18px;
}

.chronicle-challenge {
    color: #dfc881;
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
}

.chronicle-update-list {
    display: grid;
    gap: 9px;

    margin: 20px 0 26px;
    padding: 20px 24px;

    border-left: 2px solid #c7a45b;

    background: rgba(199, 164, 91, 0.035);

    list-style: none;
}

.chronicle-update-list li {
    position: relative;

    padding-left: 20px;
}

.chronicle-update-list li::before {
    position: absolute;
    top: 0;
    left: 0;

    color: #c7a45b;

    content: "᛫";
}

.chronicle-closing {
    margin-top: 28px !important;

    color: #d9d1bc;
    font-family: Georgia, serif;
    font-size: 1.12rem;
}

.chronicle-signature {
    margin-bottom: 0 !important;

    color: #c7a45b;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .chronicles-page {
        width: min(100% - 24px, 1180px);
        margin-top: 24px;
    }

    .chronicles-header {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .chronicles-header-rune {
        width: 62px;
        height: 62px;
        font-size: 1.9rem;
    }

    .chronicles-timeline {
        padding-left: 0;
    }

    .chronicles-timeline::before,
    .chronicle-entry-marker {
        display: none;
    }

    .chronicle-entry-content {
        padding: 28px 22px 34px;
    }

    .chronicle-entry-header {
        flex-direction: column;
    }
}