/* ===================================
   BLOG STYLESHEET
   =================================== */

/* Blog Header - Editorial Style */
.blog-header {
    background: var(--powder);
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    border-bottom: 1px solid rgba(59, 59, 59, 0.08);
}

.blog-header-content h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.blog-header-content p {
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

/* Editorial button styling */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border: 2px solid var(--dusty-pink);
    background: transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 0;
}

.back-button:hover {
    background: var(--dusty-pink);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 59, 59, 0.12);
}

/* Blog Main - Generous Spacing */
.blog-main {
    background: var(--pearl-white);
    padding: 100px 0;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Blog Post - Editorial Card Style */
.blog-post {
    background: var(--powder);
    border: 2px solid var(--dusty-pink);
    padding: 4rem;
    margin-bottom: 4rem;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(59, 59, 59, 0.08);
    transition: all 0.4s ease;
}

.blog-post:hover {
    box-shadow: 0 16px 48px rgba(59, 59, 59, 0.12);
    transform: translateY(-4px);
}

.blog-post-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.blog-post-date {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 2rem;
    display: block;
    box-shadow: 0 8px 32px rgba(59, 59, 59, 0.12);
}

.blog-post-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    margin-bottom: 2rem;
    display: block;
    box-shadow: 0 8px 32px rgba(59, 59, 59, 0.12);
}

.blog-post-embedded-video {
    width: 100%;
    margin-bottom: 2rem;
}

.blog-post-embedded-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(59, 59, 59, 0.12);
}

.blog-post-content {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(59, 59, 59, 0.1);
}

.blog-post-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 0;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(59, 59, 59, 0.1);
}

/* Empty State - Editorial Style */
.blog-empty {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--primary);
}

.blog-empty h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.blog-empty p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.125rem;
    opacity: 0.75;
}

/* Loading State - Editorial Typography */
.blog-loading {
    text-align: center;
    padding: 5rem;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header {
        padding: 5rem 0 3rem 0;
        margin-top: 10%;
        /* Remove margin-top on mobile */
    }

    .blog-header-content h1 {
        font-size: 3rem;
    }

    .blog-header-content p {
        font-size: 1rem;
    }

    .blog-main {
        padding: 3rem 0;
    }

    .blog-container {
        padding: 0 1rem;
    }

    .blog-post {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 4rem 0 2rem 0;
    }

    .blog-header-content h1 {
        font-size: 2.5rem;
    }

    .blog-post {
        padding: 1rem;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }
}