/* =========================
   HEADER DO JORNAL
========================= */
.jornal-header {
    position: relative;
    width: 1000px;
    height: 280px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}

.jornal-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #a30008,0 12px 20px rgba(0,0,0,0.25);
}

/* Fundo borrado */
.jornal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1);
    z-index: 1;
}

/* Imagem principal */
.jornal-main {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.jornal-image {
    width: 1124px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Overlay com degradê */
.jornal-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    border-radius: 12px;
    color: #fff;
    z-index: 3;
}

/* Título e meta */
.jornal-title {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.jornal-meta {
    font-size: 14px;
    margin-top: 6px;
    opacity: 0.9;
    color: #fff;
}

/* =========================
   CARD DO JORNAL
========================= */
.jornal-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e40012;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 12px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    max-width: 400px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);

}

.jornal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #a30008,0 12px 20px rgba(0,0,0,0.25);
}

.jornal-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.jornal-info {
    display: flex;
    flex-direction: column;
}

.jornal-name {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.jornal-role {
    font-size: 14px;
    color: #666;
}

/* =========================
   HEADER QUADRO (sem imagem)
========================= */
.jornal-header-quadro {
    width: 1000px;
    height: 120px;
    margin: 20px auto;
    background: linear-gradient(135deg, #e4000f, #FF0011, #FF2E3C);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 0 #a30008, 0 12px 20px rgba(0,0,0,0.25);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}

.jornal-header-quadro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #a30008, 0 14px 26px rgba(0,0,0,0.3);
}

.jornal-title-simple {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    text-align: center;
    margin: 0;
}

/* =========================
   VERSÃO MOBILE
========================= */
@media (max-width: 768px) {
    .jornal-header-quadro {
        width: 95%;
        height: 90px;
        margin: 12px auto;
        border-radius: 10px;
        box-shadow: 0 5px 0 #a30008, 0 10px 16px rgba(0,0,0,0.25);
    }

    .jornal-title-simple {
        font-size: 22px;
        padding: 0 10px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .jornal-header-quadro {
        width: 100%;
        height: 80px;
        margin: 10px 0;
        border-radius: 8px;
        box-shadow: 0 4px 0 #a30008, 0 8px 14px rgba(0,0,0,0.25);
    }

    .jornal-title-simple {
        font-size: 18px;
        padding: 0 8px;
    }
}

@media (max-width: 768px) {
    .jornal-header {
        width: 95%;
        height: auto;
        margin: 10px auto;
        border-radius: 10px;
    }

    .jornal-image {
        height: auto;
        width: 100%;
        max-height: 240px; 
        object-fit: contain; 
        background-color: #000;
        border-radius: 10px;
    }

    .jornal-bg {
        filter: blur(8px);
        transform: scale(1.05);
        background-position: center top;
    }

    .jornal-overlay {
        padding: 12px 14px;
        background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
    }

    .jornal-title {
        font-size: 20px;
        line-height: 1.2;
    }

    .jornal-meta {
        font-size: 12px;
    }
}