.nyheter-public-main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px 60px 20px;
}

.nyheter-public-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111111;
}

.nyheter-year-label {
    font-size: 26px;
    color: #111111;
    border-bottom: 3px solid #caa84a;
    padding-bottom: 6px;
    margin-top: 40px;
}

.nyheter-month-label {
    font-size: 19px;
    color: #555555;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 4px;
}

.nyhet-entry {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nyhet-entry-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111111;
}

.nyhet-entry-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nyhet-entry-textbox {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
    color: #222222;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 14px;
    white-space: pre-wrap;
}

.nyhet-entry-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 220px;
    flex-shrink: 0;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    align-content: flex-start;
}

.nyhet-attachment-thumb-wrap {
    width: 90px;
    height: 90px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nyhet-attachment-thumb {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.nyhet-attachment-file-icon {
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.nyhet-entry-published {
    margin-top: 10px;
    font-size: 12px;
    color: #888888;
}

.nyheter-empty-state {
    color: #888888;
    font-style: italic;
    margin-top: 20px;
}

.nyhet-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.nyhet-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

@media (max-width: 700px) {
    .nyhet-entry-grid {
        flex-direction: column;
    }

    .nyhet-entry-attachments {
        width: 100%;
    }
}