/**
 * 사업개요 — editorial guide layout
 */

.summary-page {
	--sp-border: #dde3ea;
	--sp-border-strong: #c5ced8;
	--sp-text: var(--dark, #1a2130);
	--sp-text-body: #3d4654;
	--sp-text-muted: #6b7785;
	--sp-fs-base: 0.986rem;
	--sp-fs-sub: 16px;
	--sp-fs-section: 1.375rem;
	--sp-fs-small: 14px;
	--sp-lh: 1.857;
	padding-top: 0;
	padding-bottom: 3.5rem;
	font-size: var(--sp-fs-base);
	line-height: var(--sp-lh);
	color: var(--sp-text-body);
}

/* ── Document flow ── */
.summary-page .summary-container {
	display: flex;
	flex-direction: column;
	gap: 0;
	counter-reset: guide-section;
	min-width: 0;
}

.summary-page .summary-section:not(.summary-section--intro) {
	counter-increment: guide-section;
	border-top: none;
}

.summary-page .summary-section--intro {
	border-top: none;
}

.summary-page .summary-section + .summary-section {
	padding-top: 4rem;
}

.summary-page .section-header {
	margin-bottom: 1.15rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--sp-border);
}

.summary-page .section-title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 0.75rem;
	margin: 0;
	font-size: var(--sp-fs-section);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.03em;
	color: var(--sp-text);
}

.summary-page .section-title::before {
	content: counter(guide-section, decimal-leading-zero);
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--primary);
}

.summary-page .section-title__note {
	font-size: 14px;
	font-weight: 500;
	color: var(--sp-text-muted);
}

.summary-page .section-body {
	padding: 0;
	font-size: inherit;
	line-height: inherit;
}

.summary-page .summary-section--intro .section-body {
	padding-top: 0;
}

.summary-page .summary-intro-quote {
	margin-top: 0.35rem;
	margin-bottom: 0;
	word-break: keep-all;
}

.summary-page .summary-intro-quote p {
	margin-bottom: 0.85rem;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.75;
	color: var(--sp-text-muted, #555);
}

.summary-page .summary-intro-quote p.mb-0 {
	margin-bottom: 0;
}

.summary-page .summary-intro-quote hr.dotted.short {
	margin: 1rem 0;
	border: 0;
	border-top: 1px dotted var(--sp-border, #ddd);
	background: none;
	height: 0;
	opacity: 1;
}

.summary-page .summary-intro-box {
	margin-top: 0.35rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--sp-border);
	border-radius: 10px;
	background: #fff;
	word-break: keep-all;
}

.summary-page .summary-intro-box p {
	margin: 0 0 0.85rem;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.75;
	color: var(--sp-text-muted, #555);
}

.summary-page .summary-intro-box p:last-child {
	margin-bottom: 0;
}

.summary-page .summary-copyright-scope__title {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	color: var(--sp-text-body);
}

.summary-page .summary-copyright-scope__box {
	padding: 1.1rem 1.25rem;
	border: 2px solid var(--sp-text-body, #222);
	background: #fff;
	word-break: keep-all;
}

.summary-page .summary-copyright-scope__item {
	margin: 0 0 0.85rem;
	line-height: 1.75;
	color: var(--sp-text-body);
}

.summary-page .summary-section--intro {
	margin-bottom: 1.5rem;
}

.summary-page .summary-section--intro + .summary-section {
	padding-top: 4rem;
}

/* ── Body lists — browser default markers ── */
.summary-page .summary-list {
	--summary-list-pad: 1.625rem;
	padding-left: var(--summary-list-pad);
}

.summary-page .summary-list > .summary-notice {
	margin-left: calc(-1 * var(--summary-list-pad));
	margin-top: 0.35rem;
}

.summary-page .summary-list > li {
	margin-bottom: 0.5rem;
}

.summary-page .summary-list > li:last-child {
	margin-bottom: 0;
}

.summary-page .summary-list--dash {
	list-style: none;
	margin-top: 0.35rem;
	padding-left: 1rem;
}

.summary-page .summary-list--dash > li {
	position: relative;
	padding-left: 0.85rem;
}

.summary-page .summary-list--dash > li::before {
	content: '-';
	position: absolute;
	left: 0;
	color: var(--sp-text-body);
}

.summary-page .summary-list--dot {
	list-style: none;
	margin-top: 0.35rem;
	padding-left: 1rem;
}

.summary-page .summary-list--dot > li {
	position: relative;
	padding-left: 0.85rem;
}

.summary-page .summary-list--dot > li::before {
	content: '∙';
	position: absolute;
	left: 0;
	color: var(--sp-text-body);
}

.summary-page .summary-list > li img {
	vertical-align: middle;
	margin-right: 0.35rem;
}

.summary-page .summary-list p:not(.summary-notice) {
	color: var(--sp-text-body);
}

/* ── Notice (repeated callout) ── */
.summary-page .summary-notice {
	display: grid;
	grid-template-columns: 1.25rem minmax(0, 1fr);
	column-gap: 0.55rem;
	align-items: start;
	margin: 0.85rem 0 0;
	padding: 0.2rem;
	color: var(--primary);
	font-size: var(--sp-fs-small);
	font-weight: 500;
	line-height: 1.55;
	word-break: keep-all;
}

.summary-page .summary-notice__icon {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 0.12em;
	color: var(--primary);
}

.summary-page .summary-notice__icon svg.lucide {
	width: 1.05rem;
	height: 1.05rem;
	flex-shrink: 0;
}

.summary-page .summary-notice__text {
	min-width: 0;
}

.summary-page .summary-notice--emphasis {
	font-weight: 600;
	color: var(--primary);
}

.summary-page .summary-notice--emphasis .summary-notice__icon {
	color: var(--primary);
}

.summary-page .summary-notice--sub {
	grid-template-columns: minmax(0, 1fr);
	margin-top: 0.35rem;
	padding: 0.2rem 0 0.2rem 1.8rem;
	border: none;
	border-radius: 0;
	background: transparent;
	font-size: var(--sp-fs-small);
	font-weight: 400;
	color: var(--primary);
}

.summary-page .summary-notice--sub + .summary-notice--sub {
	margin-top: 0.2rem;
}

.summary-page .summary-list + .summary-notice {
	margin-top: 0.85rem;
}

.summary-page .summary-notices,
.summary-page .summary-apply-box__notices {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.summary-page .summary-notices {
	margin-top: 0.75rem;
}

.summary-page .summary-apply-box__notices {
	padding: 1rem;
	border-top: 1px solid var(--sp-border);
	gap: 0.55rem;
}

.summary-page .summary-notices .summary-notice,
.summary-page .summary-apply-box__notices .summary-notice {
	margin-top: 0;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
}

.summary-page .summary-notice-group .summary-notice {
	margin-bottom: 0;
}

.summary-page .summary-notice-subs {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0 0.8rem 0 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.summary-page .summary-notice-subs > li {
	position: relative;
	padding-left: 0.85rem;
	font-size: var(--sp-fs-small);
	font-weight: 400;
	line-height: 1.55;
	color: var(--primary);
	word-break: keep-all;
}

.summary-page .summary-notice-subs > li::before {
	content: '-';
	position: absolute;
	left: 0;
	color: var(--primary);
}

.summary-page .summary-notice-subs > li strong {
	font-weight: 600;
	color: inherit;
}

.summary-page td .summary-notice {
	margin-top: 0.65rem;
}

.summary-page .summary-notice.summary-notice--inline {
	display: inline-flex;
	grid-template-columns: none;
	column-gap: 0.3rem;
	align-items: center;
	margin: 0 0 0 0.35rem;
	padding: 0;
	vertical-align: middle;
}

.summary-page td .summary-notice.summary-notice--inline {
	margin-top: 0;
}

.summary-page td .summary-notice--sub {
	padding-left: 1.8rem;
}

/* ── Tables ── */
.summary-page .table-responsive {
	border: 1px solid var(--sp-border);
	border-radius: 0;
	overflow: hidden;
}

.summary-page .table-simple {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: inherit;
}

.summary-page .table-simple th,
.summary-page .table-simple td {
	text-align: center;
	vertical-align: middle;
}

.summary-page .table-simple th {
	padding: 0.65rem 0.7rem;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1)) !important;
	border: none;
	border-right: 1px solid var(--sp-border);
	border-bottom: 1px solid var(--sp-border);
	color: var(--sp-text);
	font-weight: 500;
	line-height: 1.45;
}

.summary-page .table-simple td {
	padding: 0.65rem 0.7rem;
	border: none;
	border-bottom: 1px solid var(--sp-border);
	border-right: 1px solid var(--sp-border);
	line-height: 1.45;
	background: #fff;
}

.summary-page .table-simple .table-cell--start {
	text-align: left;
}

.summary-page .table-simple tr:last-child th,
.summary-page .table-simple tr:last-child td {
	border-bottom: none;
}

.summary-page .table-simple th:last-child,
.summary-page .table-simple td:last-child {
	border-right: none;
}

.summary-page .table-simple.table-border-uniform th,
.summary-page .table-simple.table-border-uniform td {
	border: none;
	border-bottom: 1px solid var(--sp-border);
}

.summary-page .table-simple.table-border-uniform th:not(:last-child),
.summary-page .table-simple.table-border-uniform td:not(:last-child) {
	box-shadow: inset -1px 0 0 var(--sp-border);
}

.summary-page .table-simple.table-border-uniform tr:last-child th,
.summary-page .table-simple.table-border-uniform tr:last-child td {
	border-bottom: none;
}

/* 공모요강 그리드 표(접수규격·시상내역 등) — rowspan 포함 전 셀 테두리 동일 */
.summary-page #summary-spec .table-responsive,
.summary-page #summary-awards .table-responsive,
.summary-page #summary-criteria .table-responsive,
.summary-page #summary-schedule .table-responsive,
.summary-page #summary-documents .table-responsive {
	border: none;
	overflow-x: auto;
}

.summary-page .summary-grid-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	table-layout: fixed;
}

.summary-page .summary-grid-table th,
.summary-page .summary-grid-table td {
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--sp-border) !important;
	box-shadow: none !important;
	text-align: center;
	vertical-align: middle;
	line-height: 1.45;
}

.summary-page .summary-grid-table thead th {
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1)) !important;
	font-weight: 600;
	color: var(--sp-text);
}

.summary-page .summary-grid-table tbody th[scope="row"] {
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1)) !important;
	font-weight: 500;
	color: var(--sp-text);
}

.summary-page .summary-grid-table tbody td {
	background: #fff;
	color: #334155;
}

.summary-page .summary-table-cell {
	text-align: left !important;
	vertical-align: middle;
	padding: 0.85rem 1rem;
}

.summary-page .summary-table-cell .summary-list {
	margin-bottom: 0;
}

.summary-page .summary-table-cell .summary-list + .summary-notice,
.summary-page .summary-table-cell .summary-notice + .summary-list {
	margin-top: 0.65rem;
}

.summary-page .summary-table-cell .summary-notice.mt-0 {
	margin-top: 0 !important;
}

.summary-page .summary-table-cell .summary-notice + .summary-notice {
	margin-top: 0.45rem;
}

.summary-page .summary-table-cell .summary-notice--sub + .summary-notice {
	margin-top: 0.2rem;
}

.summary-page .summary-table-cell .summary-notice--sub + .summary-notice:not(.summary-notice--sub) {
	margin-top: 0.65rem;
}

/* ── Content panels (no left accent bar) ── */
.summary-page .summary-target-box,
.summary-page .summary-theme-box,
.summary-page .summary-submit-box,
.summary-page .summary-apply-box {
	margin-top: 0.35rem;
	padding: 0;
	border: 1px solid var(--sp-border);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	word-break: keep-all;
}

.summary-page .summary-submit-box__head,
.summary-page .summary-theme-box__head,
.summary-page .summary-apply-box__head {
	padding: 0.55rem 1rem;
	border-bottom: 1px solid var(--sp-border);
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.08));
}

.summary-page .summary-submit-box__head,
.summary-page .summary-theme-box__head {
	border-bottom: none;
}

.summary-page .summary-submit-box__label,
.summary-page .summary-theme-box__label,
.summary-page .summary-apply-box__label {
	display: inline-block;
	font-size: var(--sp-fs-small);
	font-weight: 600;
	line-height: 1.3;
	color: var(--primary);
	letter-spacing: 0.01em;
}

/* ── 부제 (summary-target-box) ── */
.summary-page .summary-target-box {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.summary-page .summary-target-box__lead {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0;
	padding: 0.85rem 1rem;
	border-bottom: none;
	border-radius: 0;
	background: #f8fafc;
}

.summary-page .summary-target-box__lead-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	color: var(--primary);
}

.summary-page .summary-target-box__lead-icon svg.lucide {
	width: 1.1rem;
	height: 1.1rem;
	stroke: var(--primary);
	color: var(--primary);
}

.summary-page .summary-target-box--leads-only .summary-target-box__lead:last-child {
	border-bottom: none;
}

.summary-page .summary-target-box__lead + .summary-target-box__lead {
	border-top: 1px solid var(--sp-border);
}

.summary-page .summary-target-box__lead-text {
	font-size: var(--sp-fs-sub);
	font-weight: 600;
	color: var(--sp-text);
}

/* ── 응모대상 (summary-eligibility) ── */
.summary-page .summary-eligibility {
	margin-top: 0.35rem;
	border: 1px solid var(--sp-border);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	word-break: keep-all;
}

.summary-page .summary-eligibility__hero {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.1rem 1.15rem;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.08));
}

.summary-page .summary-eligibility__hero-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: #fff;
	color: var(--primary);
	box-shadow: 0 1px 3px rgba(26, 33, 48, 0.06);
}

.summary-page .summary-eligibility__hero-icon svg.lucide {
	width: 1.35rem;
	height: 1.35rem;
}

.summary-page .summary-eligibility__hero-text {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--sp-text);
}

.summary-page .summary-eligibility__content {
	padding: 1.1rem 1.15rem 1.2rem;
}

.summary-page .summary-eligibility__section + .summary-eligibility__section {
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid var(--sp-border);
}

.summary-page .summary-eligibility__section-title {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.75rem;
	font-size: var(--sp-fs-sub);
	font-weight: 600;
	line-height: 1.35;
	color: var(--sp-text);
}

.summary-page .summary-eligibility__section-icon {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--primary);
}

.summary-page .summary-eligibility__section-icon svg.lucide {
	width: 1.05rem;
	height: 1.05rem;
	stroke-width: 2.25;
}

.summary-page .summary-eligibility__notes {
	list-style: none;
	margin: 0;
	padding: 0.85rem 0.95rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	border-radius: 8px;
	background: #f8fafc;
}

.summary-page .summary-eligibility__note {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	margin: 0;
	font-size: var(--sp-fs-base);
	line-height: 1.55;
	color: var(--sp-text-body);
}

.summary-page .summary-eligibility__note-icon {
	flex-shrink: 0;
	width: 0.95rem;
	height: 0.95rem;
	margin-top: 0.2em;
	color: var(--primary);
}

.summary-page .summary-eligibility__ages {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.7rem;
}

.summary-page .summary-eligibility__age {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.05rem 0.85rem;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #f8fafc;
	text-align: center;
}

.summary-page .summary-eligibility__age-name {
	display: block;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--primary);
}

.summary-page .summary-eligibility__age-desc {
	font-size: var(--sp-fs-small);
	line-height: 1.45;
	color: var(--sp-text-body);
}

.summary-page .summary-divisions {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.7rem;
}

.summary-page .summary-divisions__item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	min-height: 100%;
	padding: 0.9rem 0.65rem;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #f8fafc;
	text-align: center;
}

.summary-page .summary-divisions__name {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--sp-text);
}

.summary-page .summary-divisions__desc {
	font-size: var(--sp-fs-small);
	font-weight: 500;
	line-height: 1.35;
	color: var(--sp-text-muted);
	white-space: nowrap;
}

/* ── 작품주제 ── */
.summary-page .summary-theme-box {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.summary-page .summary-theme-box__main {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0;
	padding: 0.85rem 1rem;
	border-bottom: none;
	border-radius: 0;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.08));
	text-align: left;
}

.summary-page .summary-theme-box__main-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	color: var(--primary);
}

.summary-page .summary-theme-box__main-icon svg.lucide {
	width: 1.1rem;
	height: 1.1rem;
	stroke: var(--primary);
}

.summary-page .summary-theme-box__main-text {
	margin: 0;
	font-size: var(--sp-fs-sub);
	font-weight: 600;
	color: var(--sp-text);
}

.summary-page .summary-theme-box__main-sub {
	margin-left: 0.45rem;
	font-size: var(--sp-fs-base);
	font-weight: 500;
	color: var(--sp-text-muted);
}

.summary-page .summary-theme-box__head {
	margin-bottom: 0;
}

.summary-page .summary-theme-box__main + .summary-theme-box__head {
	border-top: 1px solid var(--sp-border);
}

.summary-page .summary-theme-box__head + .summary-theme-cards {
	border-top: 1px solid var(--sp-border);
}

.summary-page .summary-theme-cards {
	list-style: none;
	margin: 0;
	padding: 0.65rem 1rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.summary-page .summary-theme-card {
	display: grid;
	grid-template-columns: 1.75rem minmax(0, 1fr);
	gap: 0.65rem;
	align-items: start;
	margin: 0;
	padding: 0.45rem 0;
	border: none;
	border-radius: 0;
	background: transparent;
}

.summary-page .summary-theme-card__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
}

.summary-page .summary-theme-card__body {
	min-width: 0;
}

.summary-page .summary-theme-card__line {
	margin: 0;
	line-height: 1.55;
}

.summary-page .summary-theme-card__label {
	font-weight: 600;
	color: var(--sp-text);
	margin-right: 0.25rem;
}

/* ── 원본 제출 안내 ── */
.summary-page .summary-submit-box {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.summary-page .summary-submit-box__head {
	margin-bottom: 0;
}

.summary-page .summary-submit-box__address {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	border-bottom: none;
	border-radius: 0;
	background: #f8fafc;
}

.summary-page .summary-submit-box__head + .summary-submit-box__address {
	border-top: 1px solid var(--sp-border);
}

.summary-page .summary-submit-box__address + .summary-submit-box__list {
	border-top: 1px solid var(--sp-border);
}

.summary-page .summary-submit-box__list {
	list-style: none;
	margin: 0;
	padding: 0.75rem 1rem;
	display: flex;
	flex-direction: column;
}

.summary-page .summary-submit-box__item {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	padding: 0.35rem 0;
	font-size: var(--sp-fs-small);
	line-height: 1.55;
	color: var(--sp-text-body);
}

.summary-page .summary-submit-box__item--emphasis {
	font-weight: 400;
	color: var(--sp-text);
}

.summary-page .summary-submit-box__item-icon {
	flex-shrink: 0;
	width: 0.95rem;
	height: 0.95rem;
	margin-top: 0.15rem;
	color: var(--primary) !important;
}

.summary-page .summary-submit-box__item--emphasis .summary-submit-box__item-icon {
	color: #d97706 !important;
}


.summary-page .summary-submit-box__notice .summary-notice {
	margin-top: 0;
}

.summary-page .summary-submit-box__address-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	color: var(--primary);
}

.summary-page .summary-submit-box__address-icon svg.lucide {
	width: 1.1rem;
	height: 1.1rem;
	stroke: var(--primary);
}

.summary-page .summary-submit-box__address-body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.summary-page .summary-submit-box__address-label {
	font-size: var(--sp-fs-small);
	font-weight: 600;
	color: var(--primary);
}

.summary-page .summary-submit-box__address-text {
	line-height: 1.5;
	color: var(--sp-text-body);
}

/* ── 접수 절차 ── */
.summary-page .summary-apply-box {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.summary-page .summary-apply-box__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 1rem;
	align-items: stretch;
}

.summary-page .summary-apply-box__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: 1rem;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #fff;
}

.summary-page .summary-apply-box__card-head {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--sp-border);
}

.summary-page .summary-apply-box__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	color: var(--primary);
}

.summary-page .summary-apply-box__card-icon svg.lucide {
	width: 1rem;
	height: 1rem;
	stroke: var(--primary);
}

.summary-page .summary-apply-box__card-title {
	font-weight: 600;
	color: var(--sp-text);
}

.summary-page .summary-apply-box__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: apply-step;
}

.summary-page .summary-apply-box__steps > li {
	display: grid;
	grid-template-columns: 1.35rem minmax(0, 1fr);
	column-gap: 0.35rem;
	align-items: start;
	margin: 0;
	padding: 0.35rem 0;
	counter-increment: apply-step;
	line-height: 1.5;
	color: var(--sp-text-body);
}

.summary-page .summary-apply-box__steps > li::before {
	content: counter(apply-step) ".";
	position: static;
	display: block;
	width: auto;
	height: auto;
	padding-top: 0.05em;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.5;
	color: var(--primary);
	background: none;
}

/* ── Bottom CTA ── */
.summary-page .summary-cta {
	text-align: left;
	padding: 1.75rem 0 0;
	margin-top: 0.5rem;
	border-top: 1px solid var(--sp-border);
}

/* ── Links ── */
.summary-page .summary-list a {
	color: var(--primary);
	font-weight: 500;
}

.summary-page .summary-list a:hover {
	color: var(--primary-100, #0077b3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.summary-page {
		padding-top: 1.25rem;
		padding-bottom: 2.5rem;
	}

	.summary-page .summary-section + .summary-section {
		padding-top: 3rem;
	}

	.summary-page .section-title::before {
		font-size: 1.5rem;
	}

	.summary-page .summary-eligibility__ages {
		grid-template-columns: 1fr;
	}

	.summary-page .summary-divisions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.summary-page .summary-apply-box__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.summary-page {
		font-size: 13px;
		--sp-fs-sub: 15px;
	}

	.summary-page .summary-divisions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {

/* 공모분야 규격 테이블 - 유의사항 블록 */
.summary-spec-notice {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: #eef2ff;
    border-left: 4px solid #4563c7;
    border-radius: 0 6px 6px 0;
    padding: 0.65rem 1rem;
    font-size: 0.875em;
    color: #1e3a8a;
    line-height: 1.65;
    margin-top: 0.25rem;
}

.summary-spec-notice__label {
    font-weight: 700;
    font-size: 0.8em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.75;
}

.summary-spec-notice__list {
    margin: 0;
    padding-left: 1.2em;
    list-style: disc;
}

.summary-spec-notice__list li + li {
    margin-top: 0.2rem;
}

} /* close leftover @media (max-width: 480px) */

/* ── 사업개요 (난방유) ── */
.summary-page .summary-overview-image {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--sp-border);
	border-radius: 10px;
}

.summary-page .summary-overview-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 12rem;
	padding: 1.5rem;
	border: 1px dashed var(--sp-border-strong);
	border-radius: 10px;
	background: #f8fafc;
	color: var(--sp-text-muted);
	font-size: var(--sp-fs-small);
	text-align: center;
}

.summary-page .summary-subtitle {
	margin: 1.35rem 0 0.65rem;
	font-size: var(--sp-fs-sub);
	font-weight: 700;
	line-height: 1.35;
	color: var(--sp-text);
}

.summary-page .section-body > .summary-subtitle:first-child {
	margin-top: 0;
}

.summary-page .summary-cell-lead {
	color: var(--sp-text-body);
}

.summary-page .summary-cell-ol {
	margin: 0;
	padding-left: 1.35rem;
}

.summary-page .summary-cell-ol > li {
	margin-bottom: 0.45rem;
}

.summary-page .summary-cell-ol > li:last-child {
	margin-bottom: 0;
}

.summary-page .summary-grid-table td .summary-list,
.summary-page .summary-grid-table td .summary-cell-ol {
	text-align: left;
}

.summary-page .summary-criteria-table tbody th[scope="row"] {
	vertical-align: middle;
}

.summary-page .summary-criteria-item {
	font-weight: 700;
	color: var(--sp-text);
}

.summary-page .summary-criteria-row--heat td,
.summary-page .summary-criteria-row--cond td,
.summary-page .summary-criteria-row--exclude td,
.summary-page .summary-criteria-row--foot td {
	border-top-color: var(--primary) !important;
}

.summary-page .summary-criteria-table tbody .summary-criteria-row--heat td:first-of-type,
.summary-page .summary-criteria-table tbody .summary-criteria-row--cond td,
.summary-page .summary-criteria-table tbody .summary-criteria-row--exclude td,
.summary-page .summary-criteria-table tbody .summary-criteria-row--foot td {
	background: #f1f3f5 !important;
	vertical-align: middle;
}

.summary-page .summary-criteria-cond__title {
	margin: 0;
	font-weight: 700;
	text-align: center;
	color: var(--sp-text);
}

.summary-page .summary-criteria-row--foot td {
	font-weight: 700;
	color: var(--sp-text);
}

.summary-page .summary-docs-table tbody th[scope="row"] {
	vertical-align: top;
	padding-top: 1rem;
}

.summary-page .summary-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0.15rem 0.15rem 0.15rem 0.35rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--primary, #0088cc) 28%, #d0d5dd);
	background: #fff;
	color: var(--primary, #0088cc);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.summary-page .summary-download-btn .lucide-icon,
.summary-page .summary-download-btn svg.lucide {
	width: 0.9rem;
	height: 0.9rem;
	flex-shrink: 0;
}

.summary-page .summary-download-btn:hover {
	color: var(--primary, #0088cc);
	background: color-mix(in srgb, var(--primary, #0088cc) 8%, #fff);
	border-color: var(--primary, #0088cc);
}

.summary-page .summary-priority {
	list-style: none;
	margin: 0.65rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 1.25rem;
}

.summary-page .summary-priority > li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.summary-page .summary-priority__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.1rem;
	padding: 0.2rem 0.45rem;
	border-radius: 6px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.summary-page .summary-invalid {
	margin: 0.75rem 0 0;
	padding: 0.85rem 0.95rem 0.95rem;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #f8fafc;
}

.summary-page .summary-invalid__label {
	display: inline-block;
	margin: 0 0 0.7rem;
	padding: 0.15rem 0.5rem;
	border-radius: 4px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	color: var(--primary);
	font-size: var(--sp-fs-small);
	font-weight: 700;
	line-height: 1.35;
}

.summary-page .summary-invalid__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
}

.summary-page .summary-invalid__list > li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0.75rem 0.7rem;
	border: 1px solid var(--sp-border);
	border-radius: 6px;
	background: #fff;
	font-size: var(--sp-fs-small);
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	color: var(--sp-text);
	word-break: keep-all;
}

.summary-page .summary-doc-groups {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 0.35rem;
}

.summary-page .summary-doc-groups--households {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 1rem;
}

.summary-page .summary-doc-group__title {
	margin: 0 0 0.55rem;
	font-size: var(--sp-fs-small);
	font-weight: 700;
	text-align: center;
	color: var(--sp-text);
}

.summary-page .summary-doc-group__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.summary-page .summary-doc-sample {
	margin: 0;
	min-width: 0;
}

.summary-page .summary-doc-sample img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: #fff;
}

.summary-page .summary-doc-sample__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 0.65rem;
	border: 1px dashed var(--sp-border-strong);
	border-radius: 8px;
	background: #f8fafc;
	color: #94a3b8;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
	word-break: keep-all;
}

.summary-page .summary-doc-sample__placeholder--text {
	color: var(--sp-text-body);
	font-weight: 500;
}

.summary-page .summary-docs-samples > td {
	height: 1px;
	vertical-align: top;
}

.summary-page .summary-doc-sample--fill {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.summary-page .summary-doc-sample--fill .summary-doc-sample__placeholder {
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 100%;
	aspect-ratio: auto;
	box-sizing: border-box;
}

.summary-page .summary-doc-sample figcaption {
	margin-top: 0.4rem;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	color: var(--sp-text);
}

.summary-page .summary-doc-notes {
	margin-top: 1.1rem;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	overflow: hidden;
}

.summary-page .summary-doc-notes__head {
	margin: 0;
	padding: 0.55rem 0.9rem;
	background: #eef2f6;
	font-size: var(--sp-fs-small);
	font-weight: 700;
	color: var(--sp-text);
}

.summary-page .summary-doc-notes__body {
	padding: 0.9rem 1rem 1rem;
}

.summary-page .summary-doc-notes__label {
	display: inline-block;
	margin: 1rem 0 0.4rem;
	padding: 0.15rem 0.45rem;
	border-radius: 4px;
	background: var(--primary-rgba-10, rgba(0, 136, 204, 0.1));
	font-size: var(--sp-fs-sub);
	font-weight: 700;
	color: var(--primary);
}

.summary-page .summary-doc-notes__label:first-child {
	margin-top: 0;
}

@media (max-width: 768px) {
	.summary-page .summary-doc-groups,
	.summary-page .summary-doc-groups--households {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.summary-page .summary-invalid__list {
		grid-template-columns: 1fr;
	}

	.summary-page .summary-criteria-table col {
		width: auto;
	}
}

@media (max-width: 480px) {
	.summary-page .summary-doc-groups,
	.summary-page .summary-doc-group__grid {
		grid-template-columns: 1fr;
	}
}

/* ── 사업요약 HTML 타임라인 (슈퍼어드민 미리보기) ── */
.summary-page .summary-flow {
	--flow-coral: #e56b7c;
	--flow-coral-soft: #f3b3bc;
	--flow-bg: #fdecee;
	--flow-text: #d45a6c;
	--flow-node: 1.4rem;
	--flow-line: 2px;
	--flow-gap: 0.85rem;
	--flow-label-h: 2.9rem;
	--flow-label-w: 12.75rem;
	margin-top: 1.25rem;
}

.summary-page .summary-flow__board {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 3.2rem 3rem 3.6rem 5rem;
	border-radius: 12px;
	background:
		radial-gradient(ellipse 75% 58% at 72% 56%, #fff7f8 0%, var(--flow-bg) 52%, #f6dce2 100%);
}

.summary-page .summary-flow__board::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("/img/summary/flow-bg.png?v=2") 88% 59% / min(26rem, 48%) auto no-repeat;
	opacity: 0.24;
	mix-blend-mode: multiply;
	image-rendering: auto;
	filter: blur(0.35px);
	-webkit-mask-image: radial-gradient(ellipse 48% 42% at 88% 59%, #000 18%, rgba(0, 0, 0, 0.55) 52%, transparent 78%);
	mask-image: radial-gradient(ellipse 48% 42% at 88% 59%, #000 18%, rgba(0, 0, 0, 0.55) 52%, transparent 78%);
	pointer-events: none;
}

.summary-page .summary-flow__list {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	list-style: none;
}

.summary-page .summary-flow__list::before {
	content: "";
	position: absolute;
	top: 0.7rem;
	bottom: 0.7rem;
	left: calc(var(--flow-node) / 2);
	width: var(--flow-line);
	background: var(--flow-coral-soft);
	transform: translateX(-50%);
}

.summary-page .summary-flow__item {
	position: relative;
	display: grid;
	grid-template-columns: calc(var(--flow-node) + var(--flow-gap) + var(--flow-label-w)) minmax(0, 1fr);
	column-gap: var(--flow-gap);
	align-items: start;
}

.summary-page .summary-flow__item + .summary-flow__item {
	margin-top: 1.15rem;
}

.summary-page .summary-flow__item--intro {
	grid-template-columns: var(--flow-node) minmax(0, 1fr);
	align-items: center;
	margin-bottom: 0.35rem;
}

.summary-page .summary-flow__item:has(> .summary-flow__plain) {
	align-items: center;
}

.summary-page .summary-flow__rail {
	display: grid;
	grid-template-columns: var(--flow-node) var(--flow-label-w);
	column-gap: var(--flow-gap);
	align-items: center;
}

.summary-page .summary-flow__node {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: var(--flow-node);
	height: var(--flow-node);
	border-radius: 999px;
	background: var(--flow-coral);
	color: #fff;
}

.summary-page .summary-flow__node .lucide-icon,
.summary-page .summary-flow__node svg.lucide,
.summary-page .summary-flow__node svg.lucide-icon {
	width: 0.85rem;
	height: 0.85rem;
	stroke: currentColor;
}

.summary-page .summary-flow__lead {
	margin: 0.05rem 0 0;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.55;
	color: var(--flow-text);
	word-break: keep-all;
}

.summary-page .summary-flow__label {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	min-height: var(--flow-label-h);
	padding: 0.7rem 1.15rem;
	border-radius: 999px;
	background: var(--flow-coral);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	word-break: keep-all;
	width: 100%;
	max-width: 100%;
}

.summary-page .summary-flow__card,
.summary-page .summary-flow__plain {
	min-width: 0;
	align-self: start;
}

.summary-page .summary-flow__plain {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--flow-label-h);
}

.summary-page .summary-flow__card {
	padding: 1.9rem 2.1rem 2rem;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(196, 90, 110, 0.08);
}

.summary-page .summary-flow__card p,
.summary-page .summary-flow__plain p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #3a3a3a;
	word-break: keep-all;
}

.summary-page .summary-flow__plain p {
	color: var(--flow-text);
	font-weight: 600;
}

.summary-page .summary-flow__card p + p,
.summary-page .summary-flow__plain p + p {
	margin-top: 0.28rem;
}

.summary-page .summary-flow__card > p:not(.summary-flow__strong):not(.summary-flow__arrow):not(.summary-flow__warn) {
	padding-left: 1.15em;
}

.summary-page .summary-flow__card p.summary-flow__arrow {
	padding-left: 2.35em;
	text-indent: -1.25em;
	font-weight: 400;
}

.summary-page .summary-flow__arrow::before {
	content: "→ ";
}

.summary-page .summary-flow__warn {
	margin-top: 0.55rem !important;
	color: var(--flow-coral) !important;
	font-weight: 600;
}

.summary-page .summary-flow__tipwrap {
	position: relative;
	display: inline;
}

.summary-page .summary-flow__tip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15em;
	height: 1.15em;
	margin: 0 0.12em;
	padding: 0;
	border: 0;
	background: transparent;
	vertical-align: -0.12em;
	color: var(--flow-coral);
	cursor: default;
}

.summary-page button.summary-flow__tip {
	cursor: pointer;
}

.summary-page .summary-flow__tip .lucide-icon,
.summary-page .summary-flow__tip svg.lucide,
.summary-page .summary-flow__tip svg.lucide-icon {
	width: 1.15em;
	height: 1.15em;
	stroke: currentColor;
	pointer-events: none;
}

.summary-page .summary-flow__tipbox {
	position: absolute;
	left: 0;
	top: calc(100% + 0.4rem);
	z-index: 8;
	box-sizing: border-box;
	width: max-content;
	max-width: min(24rem, calc(100vw - 3rem));
	padding: 0.75rem 0.9rem 0.85rem;
	border: 1px solid #f0c8ce;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(80, 30, 40, 0.12);
	color: #333;
	font-size: 0.88rem;
	font-weight: 400;
	line-height: 1.55;
	text-align: left;
	text-indent: 0;
	word-break: keep-all;
}

.summary-page .summary-flow__tipbox[hidden] {
	display: none;
}

.summary-page .summary-flow__tipbox--up {
	top: auto;
	bottom: calc(100% + 0.4rem);
	left: auto;
	right: 0;
}

.summary-page .summary-flow__tipbox-line {
	display: block;
	margin: 0;
	font-size: inherit;
	font-weight: 400;
	line-height: inherit;
	color: inherit;
}

.summary-page .summary-flow__tipbox-line + .summary-flow__tipbox-line {
	margin-top: 0.32rem;
}

.summary-page .summary-flow__tipbox-dash {
	display: block;
	margin: 0.2rem 0 0.4rem;
	padding-left: 1.1em;
}

.summary-page .summary-flow__tipbox-dash .summary-flow__tipbox-line + .summary-flow__tipbox-line {
	margin-top: 0.12rem;
}

.summary-page .summary-flow__tipbox-dash .summary-flow__tipbox-line::before {
	content: "- ";
}

.summary-page .summary-flow__tipbox-sub {
	padding-left: 1.15em;
}

.summary-page .summary-flow__tipbox-note {
	padding-left: 1.15em;
}

.summary-page .summary-flow__tipbox-note::before {
	content: "* ";
}

@media (max-width: 768px) {
	.summary-page .summary-flow__board {
		overflow: visible;
		padding: 2.4rem 1.8rem 2.8rem 3.2rem;
	}

	.summary-page .summary-flow__board::before {
		display: none;
	}

	.summary-page .summary-flow__item {
		grid-template-columns: minmax(0, 1fr);
	}

	.summary-page .summary-flow__card,
	.summary-page .summary-flow__plain {
		margin-top: 0.55rem;
		margin-left: calc(var(--flow-node) + var(--flow-gap));
	}

	.summary-page .summary-flow__tipbox {
		position: relative;
		left: auto;
		right: auto;
		top: 0.4rem;
		bottom: auto;
		display: block;
		width: auto;
		max-width: none;
		margin: 0.15rem 0 0.45rem;
	}
}
