.blog-section {
    min-height: calc(100vh - 200px);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-title {
    font-family: 'Didot', serif;
    font-size: 3rem;
    color: #2B2B2B;
    margin-bottom: 1rem;
    text-align: center;
}

.blog-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-post-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.blog-platform-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-platform-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-title {
    font-family: 'Didot', serif;
    font-size: 1.5rem;
    color: #2B2B2B;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-author {
    color: #90684A;
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-post-date {
    color: #888;
}

.blog-post-meta i {
    font-size: 0.875rem;
}

.blog-post-author i {
    color: #90684A;
}

.blog-post-date i {
    color: #CBBBA0;
}

.blog-post-footer {
    padding: 1rem 1.5rem;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #90684A 0%, #CBBBA0 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    justify-content: center;
}

.blog-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(144, 104, 74, 0.3);
}

.blog-read-more-btn i {
    font-size: 0.875rem;
}

.blog-footer-note {
    text-align: center;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
    max-width: 800px;
    margin: 0 auto;
}

.blog-footer-note p {
    color: #0c4a6e;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.blog-footer-note i {
    color: #0ea5e9;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 2rem 1rem;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-post-header {
        padding: 1rem;
    }

    .blog-post-content {
        padding: 1rem;
    }

    .blog-post-footer {
        padding: 1rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Blog Article Page Styles */
.blog-article-section {
    min-height: calc(100vh - 200px);
    padding: 2rem 2rem 4rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

@media (max-width: 640px) {
    .blog-article-section {
        padding: 1rem 1rem 2rem;
    }
}

.blog-article-branding {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.blog-branding-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #2B2B2B;
    transition: opacity 0.2s ease;
}

.blog-branding-link:hover {
    opacity: 0.8;
}

.blog-branding-logo {
    height: 40px;
    width: auto;
}

.blog-branding-text {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2B2B2B;
}

.blog-article-container {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

.blog-article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.blog-article-top-cta {
    margin: 1.5rem 0 2rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #90684A 0%, #CBBBA0 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(144, 104, 74, 0.2);
}

.blog-top-cta-content {
    text-align: center;
    color: white;
}

.blog-top-cta-title {
    font-family: 'Didot', serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.blog-top-cta-title i {
    font-size: 1.5rem;
}

.blog-top-cta-text {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.blog-top-cta-button {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #90684A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.blog-top-cta-button i {
    font-size: 1rem;
}

.blog-article-title {
    font-family: 'Didot', serif;
    font-size: 2.5rem;
    color: #2B2B2B;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-article-meta {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.blog-article-author {
    color: #90684A;
    font-weight: 600;
}

.blog-article-author i,
.blog-article-date i {
    font-size: 0.875rem;
}

.blog-article-body {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.9;
    color: #2B2B2B;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

/* Section styling with visual breaks */
.blog-article-body section {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.blog-article-body section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-article-body p {
    margin-bottom: 1rem;
}

/* Extra spacing for first paragraph after heading */
.blog-article-body section h2 + p {
    margin-top: 0;
}

/* Magazine-style drop cap for first paragraph */
.blog-article-body > p:first-of-type {
    font-size: 1.25rem;
    line-height: 1.8;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 1.25rem;
}

.blog-article-body > p:first-of-type::first-letter {
    font-family: 'Didot', serif;
    font-size: 4.5rem;
    line-height: 0.8;
    float: left;
    padding-right: 0.5rem;
    color: #90684A;
    margin-left: -4rem;
    margin-top: 0.1rem;
    font-weight: 600;
}

.blog-article-intro {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #2B2B2B;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.blog-article-body h2 {
    font-family: 'Didot', serif;
    font-size: 2rem;
    color: #2B2B2B;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-article-body section:first-of-type h2 {
    margin-top: 0;
}

.blog-article-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.85;
}

.blog-article-body a {
    color: #90684A;
    text-decoration: underline;
}

.blog-article-body a:hover {
    color: #CBBBA0;
}

/* Scan Block Section Styling */
.blog-scan-section {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.blog-scan-header {
    margin-bottom: 0.75rem;
}

.blog-scan-header h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.blog-scan-subhead {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #2B2B2B;
    margin-bottom: 0;
    line-height: 1.6;
}

.blog-scan-setup {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-top: 0.875rem;
    margin-bottom: 0.75rem;
    color: #2B2B2B;
}

.blog-scan-block {
    margin: 1rem 0;
    padding: 1.25rem 1.5rem;
    background: #fafafa;
    border-left: 3px solid #90684A;
    border-radius: 4px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.blog-scan-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.blog-scan-list li {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    color: #2B2B2B;
}

.blog-scan-list li::before {
    content: "•";
    color: #90684A;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.blog-scan-list li:last-child {
    margin-bottom: 0;
}

.blog-scan-list li strong {
    font-weight: 600;
    color: #1a1a1a;
}

.blog-scan-closing {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-top: 1rem;
    margin-bottom: 0;
    color: #2B2B2B;
}

.blog-article-cta {
    margin-top: 2rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #90684A;
    text-align: center;
}

.blog-article-cta p {
    font-family: 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #666;
    margin: 0;
    font-size: 1.05rem;
}

.blog-article-cta a {
    color: #90684A;
    font-weight: 600;
    text-decoration: none;
}

.blog-article-cta a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-article-section {
        padding: 1rem 1rem 2rem;
    }

    .blog-article-branding {
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }

    .blog-branding-logo {
        height: 32px;
    }

    .blog-branding-text {
        font-size: 1.2rem;
    }

    .blog-article-container {
        padding: 1.75rem 1.25rem;
    }

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

    .blog-article-top-cta {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem;
    }

    .blog-top-cta-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-top-cta-text {
        font-size: 1rem;
    }

    .blog-top-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .blog-article-body {
        font-size: 1rem;
    }

    .blog-article-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .blog-article-top-cta {
        margin: 1.25rem 0 1.5rem;
        padding: 1.5rem;
    }

    .blog-article-body section {
        padding: 0.875rem 0;
        margin-bottom: 1.25rem;
    }

    .blog-article-body p {
        margin-bottom: 0.875rem;
    }

    .blog-article-intro {
        margin-bottom: 1rem;
    }

    .blog-article-body > p:first-of-type {
        font-size: 1.15rem;
        padding-left: 3rem;
        margin-bottom: 1rem;
    }

    .blog-article-body > p:first-of-type::first-letter {
        font-size: 3.5rem;
        margin-left: -3rem;
    }

    .blog-article-body h2 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .blog-article-body section:first-of-type h2 {
        margin-top: 0;
    }

    .blog-article-body ul {
        margin: 0.875rem 0;
    }

    .blog-article-body li {
        margin-bottom: 0.625rem;
    }

    .blog-article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Mobile adjustments for scan block */
    .blog-scan-section {
        padding: 0.875rem 0;
        margin-bottom: 1.25rem;
    }

    .blog-scan-header {
        margin-bottom: 0.625rem;
    }

    .blog-scan-header h2 {
        margin-bottom: 0.375rem;
    }

    .blog-scan-setup {
        margin-top: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .blog-scan-block {
        margin: 0.875rem 0;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .blog-scan-list li {
        padding-left: 1.25rem;
        margin-bottom: 0.375rem;
        font-size: 1rem;
    }

    .blog-scan-subhead {
        font-size: 1.05rem;
    }

    .blog-scan-closing {
        margin-top: 0.875rem;
    }

    .blog-article-cta {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
}

