/* ==========================================================================
   Insights/Blog Section
   ========================================================================== */

.insights {
    padding: 10rem 6rem;
    background: var(--cream-dark);
}

.insights-header {
    text-align: center;
    margin-bottom: 4rem;
}

.insights-title {
    font-size: 3rem;
    font-weight: 300;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Insight Card */
.insight-card {
    background: var(--paper);
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    transition: all 0.4s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 25, 21, 0.1);
}

.insight-card-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.insight-image {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insight-image-icon {
    width: 80px;
    height: 80px;
    color: var(--terracotta);
    opacity: 0.3;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.insight-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}

.insight-category {
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.insight-content h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-excerpt {
    color: var(--ink-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--terracotta);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.insight-link:hover {
    gap: 0.75rem;
}

.insight-link svg {
    width: 16px;
    height: 16px;
}

/* Sidebar styles */
.insight-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--cream-dark);
}

.insight-card-mini {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
    cursor: default;
}

.insight-card-mini:hover {
    padding-left: 0.5rem;
}

.insight-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--terracotta);
    opacity: 0.6;
    line-height: 1;
    min-width: 30px;
}

.insight-mini-content h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.insight-mini-content p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* Newsletter signup */
.newsletter-signup {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-left: 3px solid var(--terracotta);
}

.newsletter-text {
    font-size: 1.15rem;
    color: var(--ink-light);
    margin-bottom: 1rem;
}

.newsletter-btn {
    display: inline-block;
    font-family: 'Crimson Pro', serif;
    font-size: 0.9rem;
    color: var(--ink);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--ink);
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--ink);
    color: var(--cream);
}

/* Responsive */
@media (max-width: 1024px) {
    .insights {
        padding: 6rem 2rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card-featured {
        grid-template-columns: 1fr;
    }

    .insight-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .insights {
        padding: 4rem 1.5rem;
    }

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