/* Updates page */

.updates-header {
    margin-bottom: 48px;
    text-align: center;
}

.updates-header .mark {
    font-family: "Mate", serif;
    font-size: 1.6em;
    margin-bottom: 6px;
    letter-spacing: 0.12em;
    color: var(--gold);
}

.updates-header .title {
    font-size: 0.95em;
    font-style: italic;
    color: var(--text-faded);
}

.updates-divider {
    width: 120px;
    height: 1px;
    margin: 48px auto;
    opacity: 0.5;
    background: var(--gold);
}

/* Date group sections */
.update-group {
    margin-bottom: 36px;
}

.update-date {
    display: flex;
    font-size: 1.05em;
    font-weight: 600;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    letter-spacing: 0.03em;
    color: var(--bold-bright);
    border-bottom: 1px solid rgb(from var(--border-color) r g b / 0.4);
    gap: 14px;
}

.update-date::before {
    font-size: 0.85em;
    content: "☩";
    color: var(--gold);
}

.update-list {
    margin: 0 0 0 6px;
    padding: 0 0 0 20px;
    list-style: none;
}

.update-list li {
    position: relative;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 12px;
}

.update-list li::before {
    position: absolute;
    top: 10px;
    left: -14px;
    width: 5px;
    height: 5px;
    content: "";
    opacity: 0.6;
    border-radius: 50%;
    background: var(--gold);
}

/* NEW / UPDATED tags */
.tag {
    display: inline-block;
    font-size: 0.72em;
    font-weight: 700;
    margin-right: 6px;
    padding: 1px 8px;
    vertical-align: middle;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
}

.tag-new {
    color: var(--green-container-text);
    border: 1px solid var(--green-container-border);
    background: var(--green-container-bg);
}

.tag-updated {
    color: var(--gold-container-text);
    border: 1px solid var(--gold-container-border);
    background: var(--gold-container-bg);
}

/* Featured callout card */
.update-featured {
    max-width: 600px;
    margin: 28px auto;
    padding: 20px 24px;
    text-align: center;
    border: 1px solid var(--gold);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(255, 215, 0, 0.01));
}

/* new update-featured variant */
.update-featured.gold {
    text-align: center;
    color: var(--gold) !important;
}

.update-featured .label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-faded);
}

.update-featured .featured-link {
    font-size: 1.35em;
    font-weight: 700;
    text-decoration: none;
    color: var(--gold);
}

.update-featured .desc {
    display: block;
    font-size: 0.85em;
    margin-top: 8px;
    color: var(--text-faded);
}

.update-date a {
    color: var(--bold-bright);
}
