/* ===== Roll Issue - Renewed ===== */

/* 컨테이너 */
#roll_issue {
  position: relative;
  margin: 15px 0;
  font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
}
#roll_issue:after { display:block; visibility:hidden; clear:both; content:""; }

/* 섹션 헤더 */
.roll_header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.roll_header_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #2e7d32;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  margin-right: 8px;
  flex-shrink: 0;
}
.roll_header_title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-right: 12px;
  white-space: nowrap;
}
.roll_header_line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #2e7d32, transparent);
}

/* 콘텐츠 래퍼 */
.roll_content {
  position: relative;
  display: flex;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
  background: #fff;
}

/* ===== 좌측 슬라이더 ===== */
.roll_issue_left {
  position: relative;
  width: 640x;
  min-width: 640px;
  height: 360px;
  overflow: hidden;
  background: #111;
}
.roll_issue_left .roll_tc {
  position: relative;
  width: 640px;
  top: 0;
  height: 2160px; /* 360 x 6 */
}
.roll_issue_left .roll_tc .roll_issue_left_img {
  width: 640px;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.roll_issue_left .roll_tc .roll_issue_left_img a {
  display: block;
  width: 100%;
  height: 100%;
}
.roll_issue_left .roll_tc .roll_issue_left_img img.roll_resizeimg {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}
.roll_issue_left .roll_tc .roll_issue_left_img .roll_iframe_wrap {
  width: 100%;
  height: 360px;
}
.roll_issue_left .roll_tc .roll_issue_left_img .roll_iframe_wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 하단 제목 오버레이 */
.roll_issue_left_img_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 6px;
}
.roll_issue_left_img_bottom_title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  line-height: 1.4;
}
.roll_issue_left_img_icons {
  flex-shrink: 0;
}

/* 슬라이더 인디케이터 도트 */
.roll_indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}
.roll_dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  line-height: 0;
  padding: 0;
}
.roll_dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ===== 우측 네비게이션 목록 ===== */
.roll_issue_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fafafa;
}
.roll_issue_right_nav {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: all 0.25s ease;
  position: relative;
  box-sizing: border-box;
}
.roll_issue_right_nav:last-child {
  border-bottom: none;
}
.roll_issue_right_nav:hover {
  background: #f0f7f0;
}
.roll_issue_right_nav.active {
  background: #fff;
  border-left: 3px solid #2e7d32;
}

/* 번호 */
.roll_nav_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.roll_issue_right_nav.active .roll_nav_num {
  background: #2e7d32;
  color: #fff;
}

/* 텍스트 영역 */
.roll_nav_text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.roll_issue_right_nav_title {
  font-size: 12.5px;
  font-weight: 600;
  color: #333;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.roll_issue_right_nav.active .roll_issue_right_nav_title {
  color: #1b5e20;
}

/* 메타 정보 */
.roll_nav_meta {
  display: flex;
  gap: 8px;
}
.roll_meta_item {
  font-size: 10.5px;
  color: #999;
}
.roll_issue_right_nav.active .roll_meta_item {
  color: #66bb6a;
}

/* 화살표 */
.roll_nav_arrow {
  font-size: 18px;
  color: #ccc;
  margin-left: 6px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.roll_issue_right_nav.active .roll_nav_arrow {
  color: #2e7d32;
}