.door-section {
    padding: 120px 0 150px 0;
}

.door-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.door-main-title {
    margin-bottom: 80px;
}

/* 블록 - 좌우 2단 */
.door-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.door-block .reverse {
    flex-direction: row-reverse  !important;
}

.door-left,
.door-right {
    flex: 1;
}

/* 제목/설명 */
.block-title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E7E7E7;
    width: 570px;
}

.block-desc {
    line-height: 1.6;
}

/* 테이블 */
.door-table {
	border: 1px solid #E7E7E7;
    width: 100%;
    border-collapse: collapse;
    background-color: #F9F9F9;
    overflow: hidden;
}

.door-table .t-value {
    background-color: #fff;
}

.white-desc {
	background-color: #fff;
}

.door-table tr {
    border-bottom: 1px solid #E8E8EE;
}

.door-table tr:last-child {
    border-bottom: none;
}

.door-table td,
.door-table th {
    padding: 20px 20px;
}

.door-table th {
    background-color: #F0F0F5;
    text-align: left;
}

.t-label {
    width: 35%;
}

.t-note {
    margin-top: 12px;
    padding: 25px;
    border-radius: 10px;
    background: #F9F9F9;
}

/* 추가 선택 비용 테이블 */
.door-table.extra td {
    text-align: center;
}

.door-table.extra th {
    text-align: center;
}

.block-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: #433CC2;
    margin-right: 10px;
    vertical-align: middle;
}


/* 버튼 */
.door-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.door-btn {
    display: inline-block;
    padding: 16px 60px;
    background-color: #433CC2;
    border-radius: 50px;
    text-decoration: none;
}


.door-btn:hover {
	background: #fff;
	color: #433CC2;
	border: 1px solid #433CC2;
	box-shadow: 0 4px 25px rgba(67, 60, 194, 0.08);
}

/* 반응형 */
@media (max-width: 768px) {
    .door-block,
    .door-block.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .door-left,
    .door-right {
        width: 100%;
    }
    
    .door-main-title {
    	margin-bottom: 40px;
    }
    
    .door-section {
    padding: 60px 0 75px 0;
	}
	
	.screen-table {
        font-size: 12px;
    }

    .screen-table th,
    .screen-table td {
        padding: 10px 6px;
    }
}


/* ===== screen/section.css ===== */

.screen-section {
    padding: 80px 0;
}

.screen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen-main-title {
    margin-bottom: 60px;
}

/* 5열 테이블 */
.screen-table th,
.screen-table td {
    text-align: center;
    padding: 14px 10px;
}

.screen-table .t-label {
    width: auto;
    text-align: center;
}

