.kam {
	max-width: 1280px;
	margin: 0 auto 50px auto;
}


/* -------------------
     목록
-------------------- */
.pg-top {
	display: flex;
	justify-content: space-between;
}

.p-list {

}

.p-list li {
	margin-bottom: 40px;
}
.p-list .pg-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pg-box .program-title {
	font-size: 18px;
	font-weight: bold;
}

.program-detail {
	display: flex;
	flex-direction: row;
	height: 200px;
}
.program-detail .cover-image {
	width: 300px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
	border: 1px #d7d7d7 solid;
}
/*.program-detail .cover-image img {*/
/*	max-width: 100%;*/
/*	max-height: 100%;*/
/*}*/
.program-detail .program-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
	box-sizing: border-box;
	padding-left: 20px;
}
.program-info .item {
	display: flex;
	flex-direction: row;
	margin-bottom: 0;
}
.program-info .item label {
	width: 100px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: left;
	font-size: 16px;
	font-weight: bold;
}
.program-info .item .value {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: left;
	font-size: 16px;

}
.program-info .item-row {
	display: flex;
	flex-direction: column;
}
.program-info .item-row label {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: left;
	font-size: 16px;
	font-weight: bold;
}
.program-info .item-row .value {
	font-size: 16px;
}

button i {
	vertical-align: baseline;
}



/* -------------------
    등록/수정
-------------------- */

.form-title {
	margin: 30px 0;
	text-align: center;
}


.form-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 20px;
}

.form-row textarea {
	border: 1px #d7d7d7 solid;
	box-sizing: border-box;
	padding: 8px;
	border-radius: 6px;
	resize: none;
	height: 100px;
}

.form-row input[type=file] {
	border: 1px #d7d7d7 solid;
	box-sizing: border-box;
	border-radius: 6px;
	padding: 8px;
	background-color: #f1f1f1;
	cursor: pointer;
}

.form-picture-view {
	height: 150px;
	border: 1px #ccc solid;
	border-radius: 6px;
	background-color: #f1f1f1;
	box-sizing: border-box;
	padding: 10px;
}
.form-picture-view img {
	max-height: 100%;
	width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}

.date {
	width: 100px;
}

.weekdays label {
	display: inline-block;
	padding: 4px 10px 4px 8px;
	line-height: 1;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.weekdays input {
	margin: 0;
}


/* -------------------
    상세보기
-------------------- */

.program-view-title {
	margin: 30px 0;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

.program-hero {
	padding: 20px 0;
	border-top: 1px #d7d7d7 solid;
}

.content-box {
	border-top: 1px #d7d7d7 solid;
	padding-top: 20px;
}

.content-box .content-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
}

.content-box .content {
	border-radius: 15px;
	padding: 10px;
	background-color: #f1f1f1;
	min-height: 300px;
}



