/* Blog Styles – Minimal Black & White */
.blog-header {
    padding: 6rem 0 3rem;
    background: #fff;
    text-align: center;
    border-bottom: 2px solid #000;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Articles */
.featured-articles {
    padding: 3rem 0;
    background: #fff;
}

.featured-articles h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #000;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-card {
    background: #fff;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
}

.article-image {
    height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:50% 20%;
    display: block;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.article-preview {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: auto;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #000;
    padding-top: 0.75rem;
    margin-top: 1.25rem;
}

.read-more-btn {
    margin-top: 1rem;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    border-radius: 0;
    width: fit-content;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #111;
}

/* Newsletter Signup */
.newsletter-signup {
    background: #000;
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.newsletter-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #ccc;
}

/* Blog CTA */
.blog-cta {
    background: #fff;
    padding: 3rem 1rem;
    border-top: 2px solid #000;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.cta-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Success Message */
.success-message {
    background: #000;
    color: #fff;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
}
