/* Sidebar (for single articles etc.) */
.sa-sidebar .sa-widget {
    margin-bottom: var(--sa-gap-lg);
}

.sa-widget__title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sa-primary);
    padding-bottom: 8px;
    border-bottom: 3px solid var(--sa-primary);
    margin-bottom: 12px;
}

/* Sidebar sticky */
.sa-sidebar__sticky {
    position: sticky;
    top: calc(var(--sa-header-height) + var(--sa-gap));
}

/* ===== MEST LÆSTE section (full width) ===== */
.sa-most-read {
    background: var(--sa-bg-card);
    border: 1px solid var(--sa-border);
}

.sa-most-read__header {
    padding: 12px 16px;
    background: var(--sa-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-most-read__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: most-read;
}

.sa-most-read__item {
    counter-increment: most-read;
    padding: 14px 16px;
    border-bottom: 1px solid var(--sa-border);
    display: flex;
    gap: 14px;
    align-items: center;
}

.sa-most-read__item:last-child {
    border-bottom: 0;
}

.sa-most-read__item::before {
    content: counter(most-read);
    font-family: var(--sa-font-headline);
    font-size: 32px;
    font-weight: 900;
    color: var(--sa-accent);
    line-height: 1;
    min-width: 32px;
    text-align: center;
}

.sa-most-read__link {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--sa-text);
}

.sa-most-read__link:hover {
    color: var(--sa-accent);
}

/* Two-column most read layout */
.sa-most-read__list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sa-most-read__list--grid .sa-most-read__item {
    border-right: 1px solid var(--sa-border);
}

.sa-most-read__list--grid .sa-most-read__item:nth-child(even) {
    border-right: none;
}
