/* ========================================
   현재 활동 섹션
   ======================================== */

#current {
  background: var(--bg);
  position: relative;
}

#current .container {
  max-width: 1000px;
}

#current .section-title {
  margin-bottom: 48px;
}

.current-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.current-item {
  background: var(--card);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid #e8eaed;
  box-shadow: var(--shadow);
  font-size: 1rem;
  font-weight: 500;
  color: var(--txt);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border-left: 4px solid var(--accent);
}

.current-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

/* 아이템별 색상 포인트 */

/* .current-item:nth-child(1) {
  border-left: 4px solid #1a73e8;
}

.current-item:nth-child(2) {
  border-left: 4px solid #34a853;
}

.current-item:nth-child(3) {
  border-left: 4px solid #ea4335;
}

.current-item:nth-child(4) {
  border-left: 4px solid #fbbc04;
}

.current-item:nth-child(5) {
  border-left: 4px solid #9334e9;
}

.current-item:nth-child(6) {
  border-left: 4px solid #ec4899;
}

.current-item:nth-child(7) {
  border-left: 4px solid #06b6d4;
}

.current-item:nth-child(8) {
  border-left: 4px solid #f59e0b;
} */

/* --------- 반응형 --------- */

/* 태블릿 */
@media (width <= 1024px) {
  .current-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }

  .current-item {
    padding: 20px 24px;
    font-size: 0.95rem;
    min-height: 90px;
  }
}

/* 모바일 */
@media (width <= 768px) {
  #current .section-title {
    margin-bottom: 32px;
  }

  .current-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .current-item {
    padding: 18px 20px;
    font-size: 0.9rem;
    min-height: 80px;
    border-radius: 10px;
  }
}

/* 매우 작은 화면 */
@media (width <= 480px) {
  .current-grid {
    gap: 10px;
  }

  .current-item {
    padding: 16px 18px;
    font-size: 0.85rem;
    min-height: 70px;
  }
}
