footer {
		height: 340px;
		background-color: #1F2227;
		padding: 60px 120px 0 120px;

		.logo {
			margin-bottom: 40px;
			display: flex;
			align-items: center;
			justify-content: space-between;

			a {
				display: inline-block;
				width: 100%;             /* 부모 너비 기준으로 줄어듦 */
				max-width: 240px;        /* 최대 크기 제한 */
				aspect-ratio: 240 / 50;  /* 가로세로 비율 유지 */

				background-image: url("/resources/images/footer/download-company-profile.png");
				background-repeat: no-repeat;
				background-size: contain; /* 요소 크기에 맞춰 비율 유지 */
				background-position: center;
			}
		}

		pre {
			font-size: 16px;
			font-weight: 300;
			line-height: 26px;
			color: #B7BFC8;
			white-space: pre-line
		}
	}
	@media(max-width: 760px){
		footer{
			height: 300px;
			padding: 10px 10px 0 10px;

			.logo{
				justify-content: space-between;
				img{
					padding: 10px;
					width: 150px;

				}
				a{


				}
			}
		}
	}


	@media(max-width: 414px){
		footer{
			.logo{
			}
		}

	}
