/* =====================================================
   SECOND NEWS SECTION (30% COLUMN)
   ===================================================== */

.second-newspaper{
    padding: 25px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    column-count: 1; /* default single column */
    column-gap: 30px;
    text-align: justify;
}

/* Headline full width */
.second-headline{
    column-span: all;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Image wrapper */
.second-image-wrapper{
    break-inside: avoid;
}

/* Image styling */
.second-image{
    float: left;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 0 15px 15px 0;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.second-image:hover{
    transform: scale(1.05);
}

/* Body text */
.second-body{
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Prevent column breaks in paragraphs */
.second-body p{
    break-inside: avoid;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1200px){
    .second-newspaper{
        column-count: 1;
    }
}

@media (max-width: 992px){
    .second-newspaper{
        padding: 20px;
    }

    .second-image{
        float: none;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .second-headline{
        font-size: 1.4rem;
    }
}

@media (max-width: 576px){
    .second-headline{
        font-size: 1.2rem;
    }

    .second-newspaper{
        border-radius: 12px;
    }
}