/* 포털 그리드: 박스 형태 탈피 */
.portal-grid-wrap { gap: 40px; margin: 80px auto; }

.portal-box { border: none; background: transparent; }
.portal-box-header { 
  border-top: none; 
  padding: 0 0 20px 0; 
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
}
.portal-box-title { font-size: 24px; color: #111; position: relative; }
.portal-box-title::after { 
  content: ''; position: absolute; left: 0; bottom: -22px; 
  width: 40px; height: 2px; background: var(--primary-color); 
}

/* 리스트형 (공지사항) */
.portal-list li { 
  margin-bottom: 12px; 
  background: #fff; 
  border-radius: 12px; 
  padding: 5px 15px;
  border: 1px solid #f0f0f0;
  transition: 0.2s;
}
.portal-list li:hover { border-color: var(--accent-color); box-shadow: var(--shadow-sm); }
.portal-list a { padding: 12px 0; }

/* 갤러리형 (포토/영상): 매거진 스타일 */
.gallery-thumb { 
  border-radius: 14px; 
  height: 180px; 
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.gallery-title { font-size: 16px; margin-top: 15px; font-weight: 700; line-height: 1.5; }

/* 영상자료 전용 버튼 스타일링 */
.icon-play { 
  width: 50px; height: 50px; 
  background: var(--accent-color); 
  box-shadow: 0 0 20px rgba(0, 86, 210, 0.4); 
}