/* 인사이트 그리드 컨테이너 */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 최소 폭 살짝 조절 */
    gap: 30px;
    max-width: 1200px; /* 전체 너비 확장 */
    margin: 0 auto;
    padding: 20px;
}

/* 🌟 개별 카드 스타일 (유리 효과 적용) */
.insight-card {
    /* 배경을 반투명하게 하여 뒤의 버블 애니메이션이 살짝 비치도록 함 */
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--brand-blue) !important; /* 호버 시 테두리 강조 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 썸네일 영역 */
.insight-thumb {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2); /* 이미지 로딩 전 배경 */
}

.insight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* 이미지를 살짝 어둡게 하여 텍스트와 조화 */
    transition: all 0.5s ease;
}

.insight-card:hover .insight-thumb img {
    transform: scale(1.1);
    opacity: 1;
}

.insight-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-blue);
    color: white;
    padding: 5px 12px;
    border-radius: 8px; /* 각진 느낌 살짝 가미 */
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* 카드 텍스트 영역 */
.insight-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-date {
    font-size: 0.8rem;
    color: #9a3b84; /* 밝은 회색 */
    margin-bottom: 10px;
}

.insight-body h3 {
    font-size: 1.25rem;
    color: #555555 !important; /* 흰색에 가까운 텍스트 */
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    word-break: keep-all;
}

.insight-body p {
    font-size: 0.95rem;
    color: #555555; /* 읽기 편한 연회색 */
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 하단 태그 */
.insight-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.insight-tags span {
    font-size: 0.8rem;
    color: #38bdf8; /* 밝은 하늘색 (포인트) */
    font-weight: 600;
    background: rgba(56, 189, 248, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}