/* ===== FILTER BUTTONS ===== */
.na-filter-container {
    display: flex;
    gap: 12px;
    margin: 20px 0 35px;
    flex-wrap: wrap;
}

.na-filter-btn {
    background: #f4f4f4;
    border: none;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 15px;
    color : #000000;
    cursor: pointer;
    transition: .2s;
    font-family: "Montserrat";
}

.na-filter-btn:hover {
    background-color: #000000!important;
}

.na-filter-btn.active {
    background: #DB09A9;
    color: white;
}

/* ===== GRID ===== */
.na-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
/* ===== CARD ===== */
.na-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    transition: .3s;
    display : flex;
    min-height: 350px;
}

.na-card:hover {
    transform: translateY(-4px);
}

/* Thumbnail */

.na-thumb {
    flex-grow: 1.2;
    flex-basis: 0;
}

.na-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.img-lnk{
    width: 100%;
    height: 100%;
    display: block;
}

.img-lnk > img {
    height: 100%!important;
    width: 100%;
    object-fit: cover;
}

/* Content */
.na-content {
    flex-grow : 1;
    flex-basis : 0;
    padding: 25px;
    text-align: left;
    align-content: space-between;
}

.na-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Montserrat";
    color: #000000;
}

/* Date */
.na-date {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #DB09A9;
    margin-bottom: 14px;
}

/* Excerpt */
.na-excerpt {
    font-size: 18px;
    line-height: 25px;
    color: #141414;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: "Montserrat";
}

/* Author */
.na-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.na-author span {
    font-family: "Montserrat";
    font-size : 15px;
    line-height: 20px;
    font-weight: 300;
    color : #666666;
}

.na-author img {
    width: 26px;
    height: 26px;
    border-radius: 50%!important;
}

.img-date{
    width: 15px;
}

.value-date{
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    color: #DB09A9;
    font-family: "Montserrat";
}

@media(max-width: 1999px){
    .na-title {
        font-size: 15px;
        line-height: 20px;
    }

    .value-date{
        font-size: 14px;
        line-height: 18px;
    }

    .na-excerpt {
        font-size: 13px;
        line-height: 17px;
    }

    .na-author span {
        font-size : 14px;
        line-height: 18px;
    }

    .na-card {
        min-height: 250px;
    }

    .na-author {
        gap: 10px;
    }
}


@media(max-width: 1399px){
    .na-title {
        font-size: 13px;
        line-height: 18px;
    }

    .value-date{
        font-size: 13px;
        line-height: 18px;
    }

    .na-excerpt {
        font-size: 12px;
        line-height: 15px;
    }

    .na-author span {
        font-size : 12px;
    }
}


@media(max-width: 768px){
    .na-grid {
        grid-template-columns: 1fr;
    }

    .na-card {
        flex-direction: column;
        border-radius: 15px;
    }

    .na-filter-btn {
        padding: 10px 30px 10px 30px;
        border-radius: 80px;
        font-size: 14px;
    }
}
