.poelkrant-section {
    padding: 0 0 2rem;
}

.poelkrant-edition {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.edition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.poelkrant-intro {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.krant-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.krant-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.krant-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.krant-head {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.krant-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.hover-read-text {
    cursor: pointer;
}

.hover-read-text:hover,
.hover-read-text:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.krant-date {
    font-weight: 500;
    color: #4a5568;
    font-size: 1rem;
}

.krant-actions {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 0;
}

.krant-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #FF6B35;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.krant-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.krant-viewer {
    margin-top: 0.9rem;
}

.krant-viewer-loading {
    color: var(--color-text-medium);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.pdf-pages {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pdf-page {
    position: relative;
    width: fit-content;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(44, 62, 80, 0.08);
}

.pdf-page canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.pdf-text-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    line-height: 1;
    pointer-events: auto;
}

.pdf-text-layer > span,
.pdf-text-layer > br {
    color: transparent;
    position: absolute;
    white-space: pre;
    transform-origin: 0 0;
    cursor: pointer;
}

.pdf-text-layer > span:hover {
    background: rgba(255, 152, 79, 0.22);
}

.krant-empty {
    margin: 0;
    color: #475569;
}

@media (max-width: 700px) {
    .pdf-page {
        width: 100%;
    }
}