body {
    font-family: 'Arial', sans-serif; 
    margin: 0;
    background-color: #f8f9fa; 
    color: #333;
    line-height: 1.6;
}

.insights-section {
    padding: 40px 20px;
    margin-top: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}


.featured-post-column {
    flex: 1.5; 
}

.latest-posts-column {
    flex: 1;
    margin-top: 115px; 
}

.post-card {
    background-color: #EFF7EF; 
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.post-image-container {
    overflow: hidden; 
    position: relative;
}

.post-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out; 
}

.post-image-container:hover img {
    transform: scale(1.1) rotate(5deg);
}

.post-content {
    padding: 20px;
}

.post-meta {
    font-size: 0.85em;
    color: #4CAF50; 
    margin-bottom: 10px;
}

.post-meta span {
    margin-right: 15px;
}

.post-meta i {
    margin-right: 5px;
}

.post-card h2, .post-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #212529;
    font-weight: bold;
}

.featured-post h2 {
    font-size: 1.8em;
}

.post-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 0;
}

.latest-insights-label {
    font-size: 0.9em;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.latest-posts-column h1 {
    font-size: 2.2em;
    font-weight: bold;
    color: #212529;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.small-posts-list .post-card {
    margin-bottom: 20px;
}

.small-post {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.small-post .post-image-container {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 6px;
}

.small-post .post-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-post .post-content {
    padding: 0;
    flex-grow: 1;
}
.small-post .post-content h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
}
.small-post .post-content p {
    font-size: 0.85em;
    line-height: 1.4;
}


@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    .featured-post-column, .latest-posts-column {
        flex: 1; 
        margin-top: 0;
    }
    .featured-post h2 {
        font-size: 1.6em;
    }
    .latest-posts-column h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .featured-post h2 {
        font-size: 1.4em;
    }
    .latest-posts-column h1 {
        font-size: 1.8em;
    }
    .small-post .post-image-container {
        width: 80px;
        height: 80px;
    }
    .small-post .post-content h3 {
        font-size: 1em;
    }
}