.platform-container {
	max-width: 100%;
	border:20px;
	background-color: #342f29;
	border-radius:50px;
}
.text-center { text-align: center; }

.platform-section {
	background: #f7941c url('/images/platform-bg.gif') no-repeat center center;
	background-size: cover;
	padding: 30px;
	position: relative;
	width:100%;
}

.icon-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px; /* À­ÁÙ°ú ¾Æ·§ÁÙ »çÀÌÀÇ °£°Ý */
}

.icon-row {
	display: flex;
	justify-content: center; /* ¾ÆÀÌÄÜµéÀ» °¡¿îµ¥ Á¤·Ä */
	gap: 20%; /* °¡·Î ¾ÆÀÌÄÜ »çÀÌÀÇ °£°Ý */
	width: 100%;
}

.icon-wrapper {
	max-width:100%;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
	border-radius: 50%;
}

.icon-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

.icon-wrapper:hover {
	transform: translateY(-8px);
	cursor: pointer;
}

/* 6. ¸ð¹ÙÀÏ µð¹ÙÀÌ½º(767px ÀÌÇÏ) ¹Ìµð¾î Äõ¸® Á¶Á¤ */
@media (max-width: 767px) {
	.platform-section {
		padding: 10px;
	}
	.platform-title-wrap {
		margin-bottom: 40px;
	}
	.icon-container {
		gap: 20px; /* ¸ð¹ÙÀÏ À§¾Æ·¡ °£°Ý Ãà¼Ò */
	}
	.icon-row {
		gap: 15px; /* ¸ð¹ÙÀÏ °¡·Î °£°Ý Ãà¼Ò */
		flex-wrap: wrap; /* È­¸éÀÌ ³Ê¹« Á¼¾ÆÁö¸é ÀÚ¿¬½º·´°Ô ÁÙ¹Ù²Þ µÇµµ·Ï ¼³Á¤ */
	}
	.icon-wrapper {
		width: 100px; /* ¸ð¹ÙÀÏ ¾ÆÀÌÄÜ Å©±â Ãà¼Ò */
	}
}