.blog-header {
    text-align: center;
    padding: 80px 112px;
    background-color: #000;
    color: #fff;
    margin-top: 80px;
    max-width: 100%;
}

.blog-header h1 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 20px;
}

.blog-header p {
    font-family: 'Nunito Sans', sans-serif; 
    font-size: 16px;
    line-height: 24px;
    max-width: 600px;
    margin: 0 auto;
    color: #999;
}

.blog-posts {
    max-width: 1200px;
    margin: 0px auto 80px;
    padding: 0 20px;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.blog-card h2 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600;
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card p {
    font-family: 'Nunito Sans', sans-serif; 
    font-size: 16px;
    line-height: 24px;
    color: #999;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-meta .date {
    font-family: 'Nunito Sans', sans-serif; 
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.blog-meta .read-more {
    font-family: 'Nunito Sans', sans-serif; 
    font-size: 16px;
    line-height: 24px;
    color: #007AFF;
    text-decoration: none;
}

.blog-meta .read-more:hover {
    text-decoration: underline;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-link:hover {
    opacity: 0.9;
}
