@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=Oswald:wght@400;700&display=swap');

.waw-gazeta-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Georgia', 'Merriweather', 'Times New Roman', Times, serif;
    color: #111;
    background: #fdfdfd;
}

.waw-gazeta-print-wrapper {
    background: #fdfbf7; /* Slight paper color */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 0;
}

.waw-gazeta-page {
    /* Flexible height for screen viewing */
    width: 100%;
    position: relative;
    padding: 3% 4%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Header */
.waw-gazeta-header {
    border-bottom: 4px solid #000;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.waw-gazeta-header-top {
    display: flex;
    justify-content: space-between;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
    margin-bottom: 10px;
}

.waw-gazeta-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.waw-gazeta-qr-code {
    text-align: center;
    width: 80px;
}
.waw-gazeta-qr-code img {
    width: 100%;
    height: auto;
    margin-bottom: 2px;
    display: block;
}
.waw-gazeta-qr-code small {
    font-family: 'Oswald', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.waw-gazeta-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -2px;
    text-align: center;
    flex-grow: 1;
}

.waw-gazeta-edition {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    width: 80px;
    text-align: right;
    line-height: 1.1;
}

.waw-gazeta-header-bottom {
    border-top: 1px solid #000;
    height: 3px;
    background: #000;
    margin-top: 5px;
}

/* Content Layout Generator */
.waw-gazeta-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.waw-gazeta-top-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.waw-gazeta-bottom-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    border-top: 2px solid #000;
    padding-top: 15px;
}

/* Main Article */
.waw-gazeta-main-article {
    border-right: 1px solid #ccc;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.waw-gazeta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    text-wrap: balance;
}

.waw-gazeta-hero-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 15px;
    border: 1px solid #000;
}

.waw-gazeta-article-content {
    column-count: 2;
    column-gap: 20px;
    font-size: 0.95rem;
    line-height: 1.25;
    text-align: justify;
    flex-grow: 1;
}

.waw-gazeta-article-content p {
    margin-top: 0;
    margin-bottom: 10px;
}
.waw-gazeta-first-letter {
    font-size: 3.8rem;
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

/* Sub Articles */
.waw-gazeta-sub-article {
    display: flex;
    flex-direction: column;
}

.waw-gazeta-sub-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-wrap: balance;
}

.waw-gazeta-sub-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.waw-gazeta-sub-content {
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: justify;
    flex-grow: 1;
}

.waw-gazeta-sub-content p {
    margin: 0 0 8px 0;
}

/* Footer */
.waw-gazeta-footer {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-align: center;
    border-top: 2px solid #000;
    padding-top: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    flex-shrink: 0;
}

/* Buttons */
.waw-gazeta-actions {
    text-align: center;
    margin-top: 20px;
}
.waw-gazeta-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    border-radius: 4px;
    transition: background 0.2s;
}
.waw-gazeta-btn:hover {
    background: #e3000f;
}

.waw-gazeta-pdf-export-active {
    font-size: 0.9em;
}
.waw-gazeta-pdf-export-active p {
    margin-bottom: 8px;
}
.waw-gazeta-pdf-export-active .waw-gazeta-main-title {
    font-size: 4.5rem;
}
.waw-gazeta-pdf-export-active .waw-gazeta-headline {
    font-size: 2.2rem;
    margin-bottom: 5px;
}
.waw-gazeta-pdf-export-active .waw-gazeta-sub-headline {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.waw-gazeta-pdf-export-active .waw-gazeta-article-content {
    line-height: 1.4;
}
.waw-gazeta-pdf-export-active .waw-gazeta-sub-content {
    line-height: 1.3;
}

/* Responsive adjustments for viewing on screen */
@media (max-width: 768px) {
    .waw-gazeta-page {
        aspect-ratio: auto;
    }
    .waw-gazeta-main-title {
        font-size: 3rem;
    }
    .waw-gazeta-headline {
        font-size: 2rem;
    }
    .waw-gazeta-content-wrapper {
        grid-template-columns: 1fr;
    }
    .waw-gazeta-main-article {
        border-right: none;
        border-bottom: 2px solid #000;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .waw-gazeta-article-content {
        column-count: 1;
    }
}

