/* Premium Newspaper Layout Styles */
.abrp-newspaper-container {
    max-width: 1000px;
    margin: 40px auto;
    background: #fffdf5; /* Newspaper paper color */
    color: #111;
    padding: 30px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-family: var(--abrp-body-font, 'Times New Roman', serif);
    border: 1px solid #ccc;
    position: relative;
}

.abrp-newspaper-container::before {
    content: "";
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 2px solid #000;
    pointer-events: none;
}

/* Header */
.abrp-newspaper-header {
    border-bottom: 4px solid #000;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.abrp-dateline {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 5px 0;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.abrp-dateline .edition {
    color: #d00;
}

.abrp-headline {
    font-family: var(--abrp-headline-font, 'Arial', sans-serif);
    font-size: 3em;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    margin: 15px 0;
}

/* Image Positioning */
.abrp-featured-image {
    margin-bottom: 20px;
}

.abrp-featured-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.abrp-featured-image figcaption {
    font-size: 12px;
    color: #555;
    font-style: italic;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.abrp-image-center {
    text-align: center;
    width: 100%;
}
.abrp-image-center img {
    margin: 0 auto;
    width: 100%;
}

.abrp-image-left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    max-width: 50%;
}

.abrp-image-right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
    max-width: 50%;
}

/* Content Columns */
.abrp-content-columns {
    column-count: var(--abrp-columns, 2);
    column-gap: 30px;
    column-rule: 1px solid #ccc;
    text-align: var(--abrp-text-align, justify);
    font-size: 1.1em;
    line-height: 1.6;
}

.abrp-content-columns p {
    margin-bottom: 1em;
}

/* Drop Cap Support */
.abrp-content-columns > p:first-of-type::first-letter {
    float: left;
    font-size: 4em;
    line-height: 0.8;
    padding-right: 8px;
    padding-top: 5px;
    font-family: var(--abrp-headline-font, sans-serif);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .abrp-content-columns {
        column-count: 1; /* Drop to 1 column on mobile */
        column-rule: none;
    }
    .abrp-headline {
        font-size: 2em;
    }
    .abrp-dateline {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .abrp-image-left, .abrp-image-right {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
}

/* Action Buttons */
.abrp-export-actions {
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.abrp-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
}

.abrp-btn:hover {
    background: #135e96;
}

.abrp-btn-print {
    background: #444;
}
.abrp-btn-print:hover {
    background: #222;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    .abrp-newspaper-container, .abrp-newspaper-container * {
        visibility: visible;
    }
    .abrp-newspaper-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    .abrp-export-actions {
        display: none !important;
    }
}
