.latest-insights-grid-aca36e48 {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.insight-card-aca36e48 {
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card-aca36e48:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.insight-image-aca36e48 img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.insight-content-aca36e48 {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-meta-aca36e48 {
    font-size: 0.85em;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-title-aca36e48 {
    margin: 0 0 15px 0;
    font-size: 1.25em;
    line-height: 1.3;
}

.insight-title-aca36e48 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.insight-title-aca36e48 a:hover {
    color: #3b82f6;
}

.insight-excerpt-aca36e48 {
    color: #475569;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.insight-read-more-aca36e48 {
    display: inline-block;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.2s ease;
    margin-top: auto;
}

.insight-read-more-aca36e48:hover {
    color: #1d4ed8;
}