html, body { height: 100%; }
body {
	display: flex;
	flex-direction: column;
}

/* ¼­ºê ºñÁÖ¾ó */
.sub-visual {
	height: 350px;
	background-image: var(--bg_url);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

/* ¾îµÎ¿î ¿À¹ö·¹ÀÌ */
.sub-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

/* ºñÁÖ¾ó ÅØ½ºÆ® */
.sub-visual-text {
	margin-top: 80px;
	position: relative;
	z-index: 2;
	color: #fff;
}

.sub-visual-text h1 {
	font-size: 2.2rem;
}

.breadcrumb-wrap {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.85);
}

/* ³×ºñ°ÔÀÌ¼Ç À§Ä¡ Á¶Á¤ */
.sub-visual .navbar {
	position: absolute;
	top: 60px;           /* ¡ç ¸Þ´º ³»·Á¿À´Â ÇÙ½É Æ÷ÀÎÆ® */
	left: 0;
	width: 100%;
	z-index: 100;
	background: transparent !important;
}

/* ÄÁÅÙÃ÷ / ÇªÅÍ ¿µ¿ª */
.content-wrap {
	flex: 1 0 auto;
}


.intro-full-wrap {
    width: 100%;
    padding: 4rem 0 2rem 2rem;
    background: #ffffff;
}

/* ¼­ºê Top ½ÃÀÛ */

/* ³»ºÎ ½ÇÁ¦ ÄÜÅÙÃ÷ Æø (¾Æ·¡ Ä«µå container ¿Í µ¿ÀÏ) */
.intro-inner {
    max-width: 1320px; /* Bootstrap container-xl ±âÁØ */
    margin: 0 auto;
    padding: 0 1.5rem;

    display: flex;
    gap: 2.5rem;
}

/* ÁÂÃø Æ÷ÀÎÆ® ¶óÀÎ */
.intro-line {
    width: 6px;
    background: linear-gradient(
        180deg,
        var(--primary),
        var(--secondary)
    );
    border-radius: 10px;
}

/* ÅØ½ºÆ® ¿µ¿ª */
.intro-text {
    flex: 1;
}

/* Å¸ÀÌÆ² */
.intro-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    margin-bottom: 1.5rem;
}

.intro-title span {
    color: var(--primary);
}

/* ¼³¸í */
.intro-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

/* ¸ð¹ÙÀÏ */
@media (max-width: 768px) {
    .intro-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-line {
        width: 60px;
        height: 4px;
    }

    .intro-title {
        font-size: 1.6rem;
    }

    .intro-desc {
        font-size: 0.95rem;
    }
}
/* ¼­ºê Top ³¡ */

/* ¿¬·Â °ü·Ã */
.timeline {
position: relative;
margin: 2rem 0;
padding: 2rem 0;
}

.timeline::after {
content: '';
position: absolute;
width: 4px;
background-color: #dee2e6;
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
}

.timeline-item {
	position: relative;
	width: 100%;
	margin: 3rem 0;
	min-height: 100px;
}

.timeline-item .timeline-content {
	position: absolute;
	width: 45%;
	padding: 1rem;
	background-color: #f8f9fa;
	border-radius: 0.5rem;
}

.timeline-item.left .timeline-content {
	left: 0;
	text-align: right;
}

.timeline-item.right .timeline-content {
	right: 0;
	left: auto;
	text-align: left;
}

.timeline-item::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	background-color: #0d6efd;
	border-radius: 50%;
	z-index: 1;
}

@media (max-width: 768px) {
	.timeline::after {
		left: 8px;
	}

	.timeline-item .timeline-content {
		width: 100%;
		margin-left: 2rem;
		position: relative;
		text-align: left !important;
	}

	.timeline-item.left .timeline-content,
	.timeline-item.right .timeline-content {
		left: 0;
		right: auto;
	}

	.timeline-item::before {
		left: 0;
		transform: none;
	}
}

.modal-edit-btn { /* ¼öÁ¤ ¹öÆ° °ü·Ã */
	position: relative;
	z-index: 10;
	pointer-events: auto;
}
/* ¿¬·Â °ü·Ã */