body { 
    font-family: 'Poppins', sans-serif; 
}

.bg-brand-blue { 
    background-color: #3B82F6; 
}

.text-brand-blue { 
    color: #3B82F6; 
}

.bg-brand-green { 
    background-color: #2DD4BF; 
}

.text-brand-green { 
    color: #2DD4BF; 
}

/* Blog Banner Styles */
.blog-banner {
    background: linear-gradient(135deg, #3B82F6 0%, #2DD4BF 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: -2rem -2rem 4rem -2rem;
    position: relative;
    overflow: hidden;
}

.blog-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.blog-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.blog-banner-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-banner-line {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.blog-banner-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Blog Banner */
@media (max-width: 768px) {
    .blog-banner {
        padding: 3rem 1.5rem;
        margin: -1rem -1rem 3rem -1rem;
    }
    
    .blog-banner-title {
        font-size: 2.5rem;
    }
    
    .blog-banner-subtitle {
        font-size: 1.125rem;
    }
    
    .blog-banner-line {
        width: 40px;
    }
}

/* Blog Content Styles */
.blog-content {
    line-height: 1.8;
    color: #374151;
}

.blog-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.blog-content ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blog-content blockquote {
    border-left: 4px solid #3B82F6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
}

/* Card Styles */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Effects */
.transform {
    transition: all 0.3s ease;
}

.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

/* Responsive Images */
.object-cover {
    object-fit: cover;
}

/* Prose Styles */
.prose {
    max-width: none;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #1f2937;
    font-weight: 700;
}

.prose p {
    color: #374151;
    line-height: 1.8;
}

.prose ul {
    color: #374151;
}

.prose li {
    margin-bottom: 0.5rem;
}

/* Hero Section Styles */
.hero-section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3B82F6 0%, #2DD4BF 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(45, 212, 191, 0.8) 100%);
}

.hero-arrow-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 30px;
    height: 30px;
    color: white;
    transform: rotate(-45deg);
}

.hero-content-container {
    display: flex;
    align-items: center;
    padding: 3rem;
    background: white;
}

.hero-content-inner {
    max-width: 500px;
}

.hero-category-badge {
    display: inline-block;
    background: #EF4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-excerpt {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3B82F6;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.hero-cta-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .hero-content-container {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-arrow-container {
        width: 50px;
        height: 50px;
    }
    
    .hero-arrow {
        width: 25px;
        height: 25px;
    }
} 