@charset "utf-8";

/* Direction */
h2 {
    font-size: var(--font-size-18);
    font-weight: 700;
}	
.sub-h-txt {
    background-color: #f6fafd;
    margin-top: var(--margin-80);
    font-size: var(--font-size-18);
    line-height: var(--line-height-30);
    font-weight: 500;
    padding: 20px 20px;
}
.sub-h-txt span dd {
    font-weight: 600;
    color: var(--sub-color-0);
}

.report-container {
    margin: 0 auto;
    background: #fff;
}

.test-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: var(--font-size-20);
    font-weight: bold;
    color: var(--sub-color-0);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
	margin-top: var(--margin-60);
	padding-bottom: var(--padding-10);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.image-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.image-placeholder {
    background-color: #eee;
    height: 375px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    color: #888;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
}


/* 하단 모델 정보 영역 */
.card-footer {
    border-top: 1px solid #3486e2;
    border-bottom: 1px solid #e0e0e0;
    font-size: var(--font-size-16);
    margin-top: 10px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 4fr;
}

.card-footer.full {
	grid-template-columns: 4fr 0fr;
}
.model-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    width: auto;
    height: 100%;
    font-weight: bold;
    color: #004080;
    background: #f2f7fd;
    min-width: 50px;
    border-right: 1px solid #e0e0e0;
    text-align: center;
}
.model-label:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.model-info {
    padding: 15px 0 15px 15px;
    width: auto;
    height: 100%;
    color: #333;
    line-height: 1.4;
    display: flex;
    align-items: center;
}
.model-info:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.footer-note {
    font-size: 0.85rem;
    color: #666;
    border-top: 2px solid #007bff;
    padding-top: 15px;
    margin-top: 20px;
}


/* Large Devices, Wide Screens : ~ 1200px */
@media only screen and (max-width : 1200px) {

}


/* Medium Devices, Desktops : ~ 992px */
@media only screen and (max-width : 992px) {

}


/* Small Devices, Tablets : ~ 768px */
@media only screen and (max-width : 768px) {
	.image-grid2 {
		grid-template-columns: 1fr;
	}
	.image-placeholder {
		height: 100%;
	}
	.test-section {
		margin-bottom: 0px;
	}
	.card-footer {
		grid-template-columns: 1fr 2fr;
	}
	.card-footer.full {
		grid-template-columns: 1fr 0fr;
	}
	.image-grid {
		grid-template-columns: 1fr;
	}
	.model-info {
		padding: 10px 0 10px 15px;
	}
	.model-label {
		padding: 10px 0;
	}
}


/* Extra Small Devices, Phones : ~ 480px */
@media only screen and (max-width : 480px) {

}


/* Custom, iPhone Retina : ~ 320px */
@media only screen and (max-width : 320px) {

}