/* ===========================================
   Blog Styles - Professional BTP Blog
   =========================================== */

/* Hero Section */

.blog-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

/* Category Badges */
.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.category-badge:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Article Cards */
.article-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.article-card:hover .article-img {
    transform: scale(1.08);
}

/* Article Image */
.article-img-wrapper {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Category Tag on Image */
.article-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}

/* Read More Button */
.read-more-btn {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f3460 100%);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 2px;
}

/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stats-card:hover {
    border-color: #f97316;
    box-shadow: 0 10px 30px rgba(249,115,22,0.1);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

/* Article Title Link */
.article-title-link {
    transition: color 0.2s;
}

.article-title-link:hover {
    color: #f97316 !important;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Background Colors */
.bg-blog-light {
    background: #f8fafc;
}

/* Stats Section Positioning */
.stats-section {
    background: #f8fafc;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-row {
    margin-top: -80px;
}

