/* ==========================================
   AI BUZZ UPDATES PAGE
========================================== */

.ai-buzz-banner{
    padding:120px 0 80px;
    background:linear-gradient(135deg,#081028,#142850);
    color:#fff;
    text-align:center;
}

.ai-buzz-banner h1{
    font-size:48px;
    font-weight:700;
}

.ai-news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.ai-news-card:hover{
    transform:translateY(-8px);
}

.ai-news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.ai-news-card .category{
    display:inline-block;
    margin:20px;
    padding:8px 15px;
    background:#0d6efd;
    color:white;
    border-radius:30px;
}

.ai-news-card h3{
    padding:0 20px;
    font-size:22px;
}

.ai-news-card p{
    padding:0 20px;
    color:#666;
}

.ai-news-card a{
    display:inline-block;
    margin:20px;
    color:#0d6efd;
    font-weight:600;
}

.ai-buzz-details-section {
    background: #f7f9fc;
}

.ai-buzz-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.ai-category {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.ai-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.publish-date {
    color: #777;
    font-size: 15px;
}

.featured-image {
    width: 100%;
    max-width: 700px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.short-description {
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #0d6efd;
    border-radius: 10px;
    margin-bottom: 30px;
}

.short-description h4,
.full-content h4,
.pros-box h4,
.cons-box h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.short-description p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.content-body {
    color: #444;
    line-height: 2;
    font-size: 16px;
}

.pros-box {
    background: #ecfff2;
    border: 1px solid #b7ebc6;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.cons-box {
    background: #fff4f4;
    border: 1px solid #f5c2c7;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.pros-box div,
.cons-box div {
    line-height: 1.8;
}

.back-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.back-btn:hover {
    background: #0b5ed7;
    color: #fff;
}

@media (max-width: 768px) {

    .ai-buzz-card {
        padding: 25px;
    }

    .ai-title {
        font-size: 28px;
    }

    .featured-image {
        height: 250px;
    }

}

.ai-news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    padding-bottom: 25px;
}

.ai-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.news-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.ai-news-card:hover .news-image {
    transform: scale(1.05);
}

.ai-news-card .category {
    display: inline-block;
    margin: 20px 20px 10px;
    padding: 6px 15px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.ai-news-card h3 {
    margin: 0 20px 10px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.ai-news-card .date {
    margin: 0 20px 15px;
    color: #777;
    font-size: 14px;
}

.ai-news-card p {
    margin: 0 20px 20px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.read-more-btn {
    margin: 0 20px;
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: #084298;
    text-decoration: none;
}

@media (max-width: 768px) {
    .news-image-wrapper {
        height: 250px;
    }

    .ai-news-card h3 {
        font-size: 20px;
    }
}