.news-v2-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

.news-v2-breadcrumbs {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    color: #666 !important;
}

.news-v2-breadcrumbs a {
    color: #333 !important;
    text-decoration: none !important;
}

.news-v2-separator {
    margin: 0 8px !important;
}

.news-v2-header {
    margin-bottom: 30px !important;
}

.news-v2-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
}

.news-v2-subtitle {
    font-size: 16px !important;
    color: #777 !important;
    margin: 0 !important;
}

.news-v2-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 25px !important;
}

.news-v2-card {
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;

    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 420px !important;
}

.news-v2-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

.news-v2-image {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    flex-shrink: 0 !important;
}

.news-v2-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.news-v2-date {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: #000 !important;
    color: #fff !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    text-align: center !important;
}

.news-v2-day {
    display: block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.news-v2-month {
    display: block !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
}

.news-v2-content {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}
.news-v2-category {
    font-size: 13px !important;
    color: #0073aa !important;
    margin-bottom: 10px !important;
}

.news-v2-post-title {
    font-size: 18px !important;
    margin: 0 0 10px 0 !important;
}

.news-v2-post-title a {
    color: #111 !important;
    text-decoration: none !important;
}

.news-v2-post-title a:hover {
    color: #0073aa !important;
}

.news-v2-excerpt {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;

    margin-bottom: 15px !important;
}

.news-v2-readmore {
    display: inline-block !important;
    font-size: 14px !important;
    color: #0073aa !important;
    text-decoration: none !important;
    font-weight: 600 !important;

    margin-top: auto !important; /* 🔥 pushes it down */
    padding-top: 10px !important;
}

.news-v2-readmore:hover {
    text-decoration: underline !important;
}

.news-v2-pagination {
    margin-top: 40px !important;
    text-align: center !important;
}

.news-v2-pagination a,
.news-v2-pagination span {
    display: inline-block !important;
    margin: 0 5px !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    color: #333 !important;
    text-decoration: none !important;
}

.news-v2-pagination .current {
    background: #0073aa !important;
    color: #fff !important;
    border-color: #0073aa !important;
}

@media (max-width: 1024px) {
    .news-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .news-v2-grid {
        grid-template-columns: 1fr !important;
    }
}