/* News Specific Styles - Based on Viseven Template */



/* BREADCRUMBS */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* NEWS CARD (FEATURED) */
.viseven-news-card {
    background: #ffffff;
    border: 1px solid #dae2ed;
    border-radius: 30px;
    /* Slight variation for news featured card if needed, but keeping consistent*/
    border-radius: 40px;
    /* Enforcing 40px */
    padding: 0;
    /* Split layout handles padding internally if needed, but let's use padding like Feature Card or Split? */
    /* Wait, the Viseven News Card in about-us used distinct padding. Let's replicate strict About-Us News Card style here */
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

.news-card-tag {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.news-card-title {
    font-size: 42px;
    line-height: 1.2;
    color: #0b1c3c;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.news-card-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.news-card-image {
    border-radius: 40px;
    overflow: hidden;
    height: 350px;
    width: 100%;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NEWS GRID ITEMS */
/* NEWS GRID ITEMS (Replaced by Blog Card Style) */
.blog-card {
    border: 1px solid #c8cfff;
    border-radius: 40px;
    padding: 0;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px); 
}

.blog-thumb {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 20px; /* Explicit size if not inherited well */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    gap: 12px;
}

/* PAGINATION STYLES */
.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-link:hover {
    background: #f1f5f9;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.page-item.active .page-link {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.page-item.disabled .page-link {
    color: #cbd5e1;
    pointer-events: none;
    border-color: #f1f5f9;
}



@media (max-width: 800px) {
  .blog-content {
    padding: 20px;
}
}

