/* ============================================
   MODERN BLOG PAGE STYLES
   ============================================ */

.blog-header .header-inner.hi-about-us {
    position: relative;
    overflow: hidden;
}

.blog-hero {
    background: linear-gradient(135deg, #071426 0%, #102a4a 40%, #153b63 100%);
    color: #ffffff;
}

.blog-page {
    background: #f5f7fb;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Featured Post */
.featured-post-section {
    padding: 60px 0;
}

.featured-post-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.featured-image-col,
.featured-content-col {
    padding: 0;
}

.featured-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    background: linear-gradient(135deg, #0f2138 0%, #153b63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0d3a5c, #0a2d4a);
    color: #ffffff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(58, 166, 245, 0.1);
    color: #0d3a5c;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-excerpt {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.post-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #999;
}

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

.post-meta i {
    font-size: 16px;
    color: #0d3a5c;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #0d3a5c, #0a2d4a);
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58, 166, 245, 0.4);
    color: #ffffff;
}

.read-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: 60px 0;
}

.blog-post-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(58, 166, 245, 0.2);
}

.post-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0f2138 0%, #153b63 100%);
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0d3a5c;
}

.post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #999;
}

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

.post-meta-info i {
    font-size: 14px;
    color: #0d3a5c;
}

.post-title-small {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-excerpt-small {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.post-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d3a5c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.post-read-link:hover {
    color: #0a2d4a;
    gap: 12px;
}

.post-read-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.post-read-link:hover i {
    transform: translateX(4px);
}

/* Newsletter Section */
.blog-newsletter-section {
    padding: 80px 0;
}

.newsletter-card {
    background: linear-gradient(135deg, #0d3a5c 0%, #0a2d4a 100%);
    border-radius: 24px;
    padding: 60px 50px;
    color: #ffffff;
}

.newsletter-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-card p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.form-group {
    display: flex;
    width: 100%;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px 0 0 10px;
    font-size: 15px;
    font-family: 'Sen', sans-serif;
    color: #1a1a2e;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    padding: 16px 32px;
    background: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: #2d2d4a;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-content {
        padding: 40px 30px;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .featured-image-wrapper {
        min-height: 400px;
    }
    
    .newsletter-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .featured-post-section {
        padding: 40px 0;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .featured-image-wrapper {
        min-height: 300px;
    }
    
    .featured-image-placeholder {
        font-size: 80px;
    }
    
    .post-image {
        height: 200px;
    }
    
    .newsletter-card h3 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .newsletter-submit {
        border-radius: 10px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .post-title {
        font-size: 24px;
    }
    
    .post-title-small {
        font-size: 18px;
    }
    
    .featured-content {
        padding: 30px 24px;
    }
    
    .post-content {
        padding: 24px;
    }
}
