/* Blog Styles - Inspired by Medium and HubSpot */

.blog-hero {
    /* Blue theme (commented out for future reference) */
    /* background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%); */

    /* Golden theme */
    background: linear-gradient(135deg, #C9A55E 0%, #B89440 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.blog-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    /* Blue theme (commented out for future reference) */
    /* background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%); */

    /* Golden theme */
    background: linear-gradient(135deg, #C9A55E 0%, #B89440 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-card-category {
    /* Blue theme (commented out for future reference) */
    /* background: #e3f2fd; */
    /* color: #007aff; */

    /* Golden theme */
    background: #FFF9E6;
    color: #C9A55E;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-date {
    color: #999;
}

.blog-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d1d1f;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-read-more {
    /* Blue theme (commented out for future reference) */
    /* color: #007aff; */

    /* Golden theme */
    color: #C9A55E;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.blog-card-read-more:hover {
    gap: 12px;
}

/* Individual Blog Post Styles */
.blog-post-hero {
    /* Blue theme (commented out for future reference) */
    /* background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%); */

    /* Golden theme */
    background: linear-gradient(135deg, #C9A55E 0%, #B89440 100%);
    padding: 120px 20px 60px;
    color: white;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-post-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-post-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1d1d1f;
}

.blog-post-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 15px;
    color: #1d1d1f;
}

.blog-post-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.blog-post-content ul,
.blog-post-content ol {
    font-size: 18px;
    line-height: 1.8;
    margin: 25px 0 25px 30px;
    color: #333;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content strong {
    font-weight: 700;
    color: #1d1d1f;
}

.blog-post-content em {
    font-style: italic;
    /* Blue theme (commented out for future reference) */
    /* color: #007aff; */

    /* Golden theme */
    color: #C9A55E;
}

.blog-highlight {
    /* Blue theme (commented out for future reference) */
    /* background: #f0f9ff; */
    /* border-left: 4px solid #007aff; */

    /* Golden theme */
    background: #FFF9E6;
    border-left: 4px solid #C9A55E;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.blog-highlight p {
    margin: 0;
    color: #1d1d1f;
    font-weight: 500;
}

.blog-cta-box {
    /* Blue theme (commented out for future reference) */
    /* background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%); */

    /* Golden theme */
    background: linear-gradient(135deg, #C9A55E 0%, #B89440 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
}

.blog-cta-box h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.blog-cta-button {
    display: inline-block;
    background: white;
    /* Blue theme (commented out for future reference) */
    /* color: #007aff; */

    /* Golden theme */
    color: #C9A55E;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-share {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #f5f5f7;
    border-radius: 12px;
    text-align: center;
}

.blog-share h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.blog-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease;
}

.share-button:hover {
    transform: translateY(-2px);
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-linkedin {
    background: #0a66c2;
    color: white;
}

.related-posts {
    background: #f5f5f7;
    padding: 60px 20px;
}

.related-posts h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1d1d1f;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-content h2 {
        font-size: 26px;
    }

    .blog-post-content p,
    .blog-post-content ul,
    .blog-post-content ol {
        font-size: 16px;
    }
}
