/* =====================================
   PORTAL MAIN – SAFE ZONE
===================================== */

.portal-main {
  width: 100%;
}

/* 섹션 헤더 */
.portal-main .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.portal-main .section-header h3 {
  margin: 0;
  font-weight: 800;
}

/* 배지 */
.portal-main .section-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.portal-main .section-count {
  font-size: 0.75rem;
  background: #f1f3f5;
  color: #495057;
  padding: 3px 8px;
  border-radius: 999px;
}

/* 더보기 */
.portal-main .section-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  text-decoration: none;
}
.portal-main .section-more:hover {
  color: #1f6fd2;
  text-decoration: underline;
}

/* 탭 */
.portal-main .simple-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 6px;
}

.portal-main .simple-tabs button {
  border: none;
  background: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
}

.portal-main .simple-tabs button.active {
  color: #212529;
  border-bottom: 2px solid #212529;
}

/* 리스트 */
.portal-main .main-list {
  display: none;
}
.portal-main .main-list.active {
  display: block;
}

/* 카드 공통 */
.portal-main .list-card {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  text-decoration: none;
  color: #222;
}

.portal-main .thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f3f5;
  flex-shrink: 0;
}

.portal-main .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-main .meta {
  font-size: 0.82rem;
  color: #7a8794;
}

/* 빈 상태 */
.portal-main .empty-msg {
  font-size: 0.85rem;
  color: #adb5bd;
  text-align: center;
  padding: 16px 0;
}
