/* PREMIUM BLOG POST STYLING */

.premium-blog-header {
    background: linear-gradient(135deg, #1B3A6B 0%, #0F2240 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 16px;
}

.blog-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.15);
}

.blog-post-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1B3A6B 0%, #25D366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.blog-post-image span {
    position: relative;
    z-index: 1;
    font-size: 60px;
}

.blog-post-meta {
    padding: 16px 24px;
    background: #f9f9f9;
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-category-badge {
    background: #25D366;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.blog-post-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
    color: #25D366;
}

.blog-post-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
}

.reading-time {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.read-more-btn {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    background: #20BA58;
    transform: translateX(3px);
}

/* BLOG GRID */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* PREMIUM POST CONTENT */
.single-post .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.single-post h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 40px 0 20px;
}

.single-post h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 30px 0 15px;
}

.single-post p {
    margin-bottom: 20px;
}

.single-post blockquote {
    border-left: 4px solid #25D366;
    padding: 20px;
    background: #f9f9f9;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* RELATED POSTS */
.related-posts {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 60px 0 40px;
}

.related-posts h3 {
    margin-bottom: 30px !important;
}

