/* Estilos base */
.newspaper {
    background-color: #003366;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.newspaper .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newspaper h2 {
    font-size: 2.5rem; /* Tamanho compatível com outras seções */
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.newspaper .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Imagem ocupa metade do espaço disponível */
.newspaper .image {
    flex: 1;
    text-align: center;
}

.newspaper .image img {
    width: 100%;
    max-width: 322px; /* Largura máxima da imagem */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Texto ocupa a outra metade */
.newspaper .cta {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.newspaper .cta p,
.newspaper .cta p#newspaper-titulo {
    font-size: 1.5rem; /* Texto maior */
    line-height: 1.6;
}
.newspaper .cta p#newspaper-titulo {
	font-weight: bold;
	font-style: italic;
}

.newspaper .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newspaper .buttons > span {
	font-size: 1.5rem;
	line-height: 1.6;
    margin: auto;
}

.newspaper .btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #fff;
    color: #003366;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.newspaper .btn:hover {
    background-color: #ccc;
}

/* Responsividade */

/* Tablets e acima */
@media (min-width: 768px) {
    .newspaper .content {
        flex-direction: row; /* Lado a lado */
        justify-content: space-between;
        align-items: center;
    }

    .newspaper .image, .newspaper .cta {
        flex: 1; /* Ocupam metade do espaço */
        max-width: 50%; /* Garantem divisão proporcional */
    }

    .newspaper .cta {
        text-align: left;
    }

    .newspaper .buttons {
        flex-direction: column; /* Botões continuam na vertical */
    }
}
