/* INSIGHT CARDS (Shortcode) */
.ncg-card-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.ncg-insight-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 25px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ncg-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #C89B7B;
}

.ncg-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    background-color: #f4f4f4;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ncg-card-meta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #23312C;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.ncg-card-meta .date {
    display: block;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ncg-card-meta .author {
    font-size: 0.85rem;
    color: #C89B7B;
    font-weight: 600;
}
