.footer {
	display: flex;
	justify-content: center;
	background-color: #E8E8E8;
	position: fixed;
	bottom: 0px;
	width: 100%;
	padding: 20px 0px 5px 20px;
}

.footer-inner {
    color: #5A5A5A;
    max-width: 1200px;
	min-width: 1000px;
    width: 100%;
}

.grid-container {
	display: grid;
	grid-template-columns: minmax(490px, 1fr) 2fr;
	grid-template-rows: max-content;
}



.grid-container p {
	margin: 1px;
	font-size: 8.2pt;
}

.grid-container .col-5 p:nth-child(1) {
	margin-top: 15px;
	margin-bottom: 10px; /* <br> 대신 margin-bottom 사용 */
}

.v-line {
	border-right: thin solid gray;
	align-self: stretch; /* 높이 자동 조정 */
}

.certificate {
    margin-top: 20px;
	margin-left: 10px;
}

.certificate_inner > div {
	display: flex;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 5px;
	width: 160px;
	padding-top: 10px;
}

.certificate_inner div:last-child .cert-item {
	width: 200px;
}

.cert-item img {
	width: 20px; /* 가독성을 위해 크기 조정 */
    height: auto;
}

.cert-item p {
	color: black;
    font-size: 8pt;
    font-weight: bold;
    margin: 0;
}

/* 모바일 반응형 개선 */
@media (max-width: 768px) {
    .grid-logo {
        grid-template-columns: repeat(2, 1fr); /* 한 줄에 2개 */
    }
}



footer {
	font-size: 8pt;
    display: flex;
    justify-content: center;
    align-items: center;
}
