/* Post Page Specific Styles */

/* Post Hero */
.post-hero {
    background-color: #005678;
    height: 488px;
}

.post-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.post-featured-image {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-featured-image {
    width: 100%;
    height: 508px;
    border-radius: 12px;
    object-fit: cover;
    margin-top: -390px
}

@media (max-width: 800px) {
    .post-featured-image {
        margin-top:0;
    }
}

.post-meta {
    text-align: left;
    margin-top: 30px;
    width: 100%;
}

.post-date {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.post-meta .post-title {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    margin-top: 12px;
    color:#0D2B37;
}

/* Post Content */
.post-content {
    background-color: var(--secondary-color);
    padding: var(--spacing-2xl) 0;
}

.content-wrapper {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.post-article {
    max-width: none;
}

.post-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.post-text h2 {
    color: var(--text-primary);
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    font-size: var(--font-size-2xl);
}

.post-text h3 {
    color: var(--text-primary);
    margin: var(--spacing-lg) 0 var(--spacing-md);
    font-size: var(--font-size-xl);
}

.post-text p {
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

.post-text a {
    color: #005678;
    text-decoration: none;
}

.post-text blockquote {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.post-text blockquote p {
    color: var(--text-primary);
    font-style: italic;
    font-size: var(--font-size-lg);
    margin-bottom: 0;
}

.post-text ul {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-lg);
}

.post-text li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* See Also Section */
.see-also {
    background-color: #F6F6F6;
    padding: 94px 0;
}

.see-also-container {
    max-width: 1213px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.see-also-container .see-also-title {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #0D2B37;
    text-align: left;
    margin-bottom: 40px;
}

.see-also-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    border-radius: 12px;
    max-width: 382px;
    min-height: 342px;
    height: auto;
    transition: var(--transition-base);
    background-color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.article-card .blog-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 31px;
}

 

.article-card-title {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #0E0E0E;
    margin: 0;
    flex: 1;
    min-height: 80px;
    height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-card .read-more {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
}

.blog-article-arrow {
    width: 24px;
    height: 24px;
}

.article-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Responsive Design for Post */
@media (max-width: 1024px) {
    .see-also-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .see-also {
        padding: 60px 0;
    }
    
    .see-also-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .see-also-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .see-also-container {
        padding: 0 15px;
    }
    
    .article-card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .post-hero {
        padding: var(--spacing-xl) 0;
    }
    
    .post-meta h1 {
        font-size: var(--font-size-xl);
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-text h2 {
        font-size: var(--font-size-xl);
    }
    
    .post-text h3 {
        font-size: var(--font-size-lg);
    }
    
    
    .cta-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .post-meta h1 {
        font-size: var(--font-size-lg);
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .post-text {
        font-size: var(--font-size-sm);
    }
    
    .post-text h2 {
        font-size: var(--font-size-lg);
    }
    
    .post-text h3 {
        font-size: var(--font-size-base);
    }
    
    .post-text blockquote {
        padding: var(--spacing-md);
    }
    
    
    .cta-text h3 {
        font-size: var(--font-size-base);
    }
}