/* ==========================================================================
   NOVAMUNDI NIEUWS STYLING
   ========================================================================== */


/* ==========================================================================
   1. BLOCK ITEM (KLEIN BLOK RECHTSBOVEN)
   ========================================================================== */

.mx_news_block_item {
    position: relative;
   padding: 10px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: 20px;
    margin-bottom:40px;
    background-color: #ffffff;
   
    overflow: hidden;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
    transition: transform 0.3s ease;
}

.mx_news_block_item:hover {
    transform: translateY(-5px);
}

/* Afbeelding */

.mx_news_block_image {
    width: 100%;
}

.mx_news_block_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Content */

.mx_news_block_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* titel */

.mx_news_block_content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: var(--text-blue);
    margin: 0 0 10px 0;
}

/* tekst */

.mx_news_block_content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* datum */

.mx_news_block_content .mx_news_date {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .mx_news_block_item {
        max-width: 100%;
        margin-left: 0;
        margin-top: 208px;
    }
}


/* ==========================================================================
   2. CATEGORY ITEMS (OVERZICHTSPAGINA)
   ========================================================================== */

.mx_news_category_item {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    margin-bottom: 50px;
    background-color: #ffffff;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
    transition: transform 0.3s ease;
    overflow: hidden;
}

.mx_news_category_item:hover {
    transform: translateY(-5px);
}


/* afbeelding */

.mx_news_category_image {
    width: 100%;
    display: block;
}

.mx_news_category_image img {
    max-width: inherit;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
      display: block;
}


/* content */

.mx_news_category_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* tekst */

.mx_news_text_wrapper h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: var(--text-blue);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.mx_news_date {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.mx_news_text_wrapper p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}


/* ==========================================================================
   3. LEES MEER KNOP
   ========================================================================== */

.mx_read_more {
    position: relative;
    align-self: flex-end;
    background-color: var(--geel);
    color: white !important;
    padding: 12px 35px;
 
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.25);
    transition: all 0.3s ease;
    margin-top: 20px;
    overflow: hidden;
    z-index: 1;
}

.mx_read_more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f8af41, #e94539, #be1d2e, #64318a, #2b3b8e, #1275bb, #39b072, #8dc044, #d5da2e);
    transition: left 0.5s ease;
    z-index: -1;

}

.mx_read_more:hover::before {
    left: 0;
}

.mx_read_more:hover {
    transform: scale(1.05);
}


/* ==========================================================================
   4. DETAILPAGINA
   ========================================================================== */

.mx_news_item_main_image img {
    width: 100%;
    max-height: 325px;
    object-fit: cover;

    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


/* ==========================================================================
   5. MOBIEL
   ========================================================================== */

@media (max-width: 992px) {

    .mx_news_category_item {
        grid-template-columns: 1fr;
        filter: none;
        margin-bottom: 30px;
    }

    #mx_news_category {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
        filter: none;
    }

    .mx_news_category_item {
        display: flex;
        flex-direction: column;
    }

    .mx_news_category_image img {
        height: 280px;
    
    }

    .mx_news_category_content {
   
        padding: 30px 25px;
    }

    .mx_news_text_wrapper h3 {
        font-size: 1.5rem;
    }

    .mx_read_more {
        align-self: stretch;
        text-align: center;
    }

    .mx_news_block_item {
        max-width: 100%;
        margin-left: 0;
    }

}

@media (max-width: 680px) {

    #mx_news_category {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .mx_news_category_image img {
        height: 200px;
    }

    .mx_news_category_content {
        padding: 20px;
    }

}