/* Sidebar - DK Avisen */
.sa-sidebar .sa-widget {
    margin-bottom: var(--sa-gap-lg);
}

.sa-widget__title {
    font-family: var(--sa-font-ui);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sa-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sa-border);
    margin-bottom: 14px;
    position: relative;
}

.sa-widget__title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--sa-accent);
}

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

/* ===== MEST LÆSTE section ===== */
.sa-most-read {
    background: var(--sa-bg-card);
    border-radius: var(--sa-radius);
    overflow: hidden;
    box-shadow: var(--sa-shadow);
}

.sa-most-read__header {
    padding: 14px 18px;
    background: var(--sa-primary);
    color: #fff;
    font-family: var(--sa-font-ui);
    font-size: 13px;
    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 18px;
    border-bottom: 1px solid var(--sa-border);
    display: flex;
    gap: 14px;
    align-items: center;
    transition: background var(--sa-transition);
}

.sa-most-read__item:hover { background: var(--sa-bg); }
.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: 28px;
    font-weight: 400;
    color: var(--sa-accent);
    line-height: 1;
    min-width: 28px;
    text-align: center;
}

.sa-most-read__link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--sa-text);
    transition: color var(--sa-transition);
}

.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;
}
