/* ======================= */
/* BLOG BANNER STYLES */
/* ======================= */
.blog-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.blog-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,240,245,0.5) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blog-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.blog-banner-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-image {
    position: relative;
}

.blog-main-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.blog-main-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #a30043;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.blog-content p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.blog-cta-button {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #a30043 0%, #7c0032 100%);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(163, 0, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.blog-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(163, 0, 67, 0.4);
    background: linear-gradient(135deg, #7c0032 0%, #a30043 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-banner-inner {
        gap: 40px;
    }
    
    .blog-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .blog-banner {
        padding: 60px 20px;
    }
    
    .blog-banner-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .blog-content h2 {
        font-size: 2rem;
    }
    
    .blog-content p {
        font-size: 1.1rem;
    }
    
    .blog-main-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .blog-banner {
        padding: 40px 15px;
    }
    
    .blog-content h2 {
        font-size: 1.8rem;
    }
    
    .blog-content p {
        font-size: 1rem;
    }
    
    .blog-main-image {
        height: 280px;
    }
    
    .blog-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}