:root {
    --anrw-pink: #e20074;
    --anrw-purple: #52247f;
    --anrw-navy: #1c1826;
    --anrw-cyan: #3fe0ff;
    --anrw-bg: #f6f4f0;
    --anrw-line: #e3dde9;
    --anrw-border: #e6e1ec;
    --anrw-muted: #8a8496;
}

section.anrw-liveblog {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--anrw-navy);
    background: var(--anrw-bg);
    box-shadow: 0 0 0 100vmax var(--anrw-bg);
    clip-path: inset(0 -100vmax);
    font-family: inherit;
}

.anrw-liveblog__inner {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    padding: 0;
}

.anrw-liveblog *,
.anrw-liveblog *::before,
.anrw-liveblog *::after {
    box-sizing: border-box;
}

.anrw-liveblog__header {
    margin-bottom: 32px;
}

.anrw-liveblog__eyebrow {
    margin-bottom: 10px;
    color: var(--anrw-pink);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.anrw-liveblog__title {
    margin: 0;
    color: var(--anrw-navy);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.anrw-liveblog__subtitle {
    max-width: 540px;
    margin: 12px 0 0;
    color: #5a5468;
    font-size: 17px;
    line-height: 1.5;
}

.anrw-livebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    padding: 14px 18px;
    border: 1px solid var(--anrw-border);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(23, 11, 28, .025);
}

.anrw-livebar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 14px;
}

.anrw-livebar__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--anrw-pink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.anrw-livebar__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.anrw-livebar--live .anrw-livebar__dot {
    animation: anrw-pulse 1.7s ease-in-out infinite;
}

.anrw-livebar--planned .anrw-livebar__status,
.anrw-livebar--finished .anrw-livebar__status {
    color: var(--anrw-purple);
}

.anrw-livebar--finished .anrw-livebar__dot {
    background: #8a8490;
}

.anrw-livebar__updated {
    color: #8a8496;
    font-size: 14px;
}

.anrw-livebar__notice {
    color: #b0aabc;
    font-size: 12px;
    font-style: italic;
    text-align: right;
}

.anrw-timeline {
    position: relative;
}

.anrw-timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 85px;
    width: 2px;
    background: var(--anrw-line);
    content: "";
}

.anrw-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 31px minmax(0, 1fr);
    align-items: start;
    margin-bottom: 0;
}

.anrw-timeline__item:last-child::after {
    position: absolute;
    z-index: 0;
    top: 32px;
    bottom: 0;
    left: 85px;
    width: 2px;
    background: var(--anrw-bg);
    content: "";
}

.anrw-timeline__time {
    padding-top: 22px;
    text-align: right;
}

.anrw-timeline__time time {
    display: inline-flex;
    flex-direction: column;
}

.anrw-timeline__time span {
    color: var(--anrw-purple);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}

.anrw-timeline__item:first-child .anrw-timeline__time span,
.anrw-timeline__item.is-featured .anrw-timeline__time span,
.anrw-timeline__item.is-new .anrw-timeline__time span {
    color: var(--anrw-pink);
}

.anrw-timeline__time small {
    margin-top: 3px;
    color: #b0aabc;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
}

.anrw-timeline__marker {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 26px;
}

.anrw-timeline__marker span {
    width: 10px;
    height: 10px;
    border: 2.5px solid var(--anrw-bg);
    border-radius: 50%;
    background: #c9c2d4;
    box-shadow: none;
}

.anrw-timeline__item:first-child .anrw-timeline__marker span,
.anrw-timeline__item.is-featured .anrw-timeline__marker span,
.anrw-timeline__item.is-new .anrw-timeline__marker span {
    width: 12px;
    height: 12px;
    background: var(--anrw-pink);
}

.anrw-entry {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin-left: 8px;
    margin-bottom: 26px;
    padding: 22px 24px;
    border: 1px solid var(--anrw-border);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(30, 14, 35, .035);
}

.anrw-timeline__item:first-child .anrw-entry,
.anrw-timeline__item.is-featured .anrw-entry,
.anrw-timeline__item.is-new .anrw-entry {
    border-color: #e9cfe0;
    box-shadow: 0 6px 22px rgba(82, 36, 127, .07);
}

.anrw-entry__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.anrw-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 3px 8px;
    border-radius: 3px;
    color: #fff;
    background: var(--anrw-purple);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.anrw-badge--photo {
    background: var(--anrw-pink);
}

.anrw-badge--audio,
.anrw-badge--quote {
    background: var(--anrw-purple);
}

.anrw-badge--interview,
.anrw-badge--info {
    color: var(--anrw-cyan);
    background: #0b1626;
}

.anrw-badge--video {
    background: #e23b35;
}

.anrw-badge--new {
    color: var(--anrw-purple);
    background: #f2eff5;
}

.anrw-entry__title {
    margin: 0;
    color: var(--anrw-navy);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
}

.anrw-entry__teaser {
    margin-top: 8px;
    color: #3a3344;
    font-size: 15.5px;
    line-height: 1.55;
}

.anrw-entry__teaser p {
    margin: 0 0 .65em;
}

.anrw-entry__teaser p:last-child {
    margin-bottom: 0;
}

.anrw-entry__image {
    margin: 14px 0 0;
    overflow: hidden;
    border-radius: 4px;
    background: #f3f2f3;
}

.anrw-entry__image img {
    display: block;
    width: 100%;
    height: auto;
    height: 220px;
    object-fit: cover;
}

.anrw-entry__audio {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 4px;
    background: var(--anrw-bg);
}

.anrw-entry__audio .mejs-container,
.anrw-entry__audio audio {
    width: 100% !important;
}

.anrw-entry__link {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--anrw-line);
    color: var(--anrw-navy);
    text-decoration: none;
}

.anrw-entry__link:not(:has(.anrw-entry__link-image)) {
    grid-template-columns: minmax(0, 1fr);
}

.anrw-entry__link-image {
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
    border-radius: 4px;
    background: #f0eef0;
}

.anrw-entry__link-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anrw-entry__link-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.anrw-entry__link-copy small {
    margin-bottom: 3px;
    color: var(--anrw-purple);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.anrw-entry__link-copy strong {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 19px;
    line-height: 1.15;
}

.anrw-entry__link-copy > span {
    margin-top: 4px;
    color: var(--anrw-purple);
    font-size: 11px;
    font-weight: 700;
}

.anrw-entry__link:hover strong,
.anrw-entry__link:focus strong {
    color: var(--anrw-pink);
}

.anrw-liveblog__empty {
    padding: 28px;
    border: 1px dashed var(--anrw-border);
    border-radius: 6px;
    color: var(--anrw-muted);
    background: #fff;
    text-align: center;
}

.anrw-liveblog-error {
    padding: 12px;
    border-left: 4px solid #d63638;
    background: #fff;
}

@keyframes anrw-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(237, 8, 121, .38); }
    50% { box-shadow: 0 0 0 6px rgba(237, 8, 121, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .anrw-livebar--live .anrw-livebar__dot {
        animation: none;
    }
}

@media (max-width: 767px) {
    .anrw-livebar {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        padding: 13px 14px;
    }

    .anrw-livebar__notice {
        text-align: left;
    }

    .anrw-timeline::before {
        left: 5px;
    }

    .anrw-timeline__item {
        grid-template-columns: 13px minmax(0, 1fr);
        row-gap: 7px;
        margin-bottom: 0;
    }

    .anrw-timeline__item:last-child::after {
        top: 10px;
        left: 5px;
    }

    .anrw-timeline__time {
        grid-column: 2;
        grid-row: 1;
        padding: 0;
        text-align: left;
    }

    .anrw-timeline__time time {
        flex-direction: row;
        align-items: baseline;
        gap: 4px;
    }

    .anrw-timeline__time span {
        font-size: 18px;
    }

    .anrw-timeline__marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        justify-content: flex-start;
        padding-top: 5px;
    }

    .anrw-timeline__marker span {
        width: 10px;
        height: 10px;
    }

    .anrw-entry {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 20px;
        margin-left: 8px;
        padding: 20px 18px;
    }

    .anrw-entry__link {
        grid-template-columns: 82px minmax(0, 1fr);
    }
}

@media (max-width: 420px) {
    .anrw-liveblog__title {
        font-size: 36px;
    }

    .anrw-entry__link {
        grid-template-columns: 1fr;
    }

    .anrw-entry__link-image {
        max-width: 150px;
    }

    .anrw-entry__image img {
        height: 190px;
    }
}
