.award-box {
	max-width: 296px;
	margin: 0 auto;
	background-color: #161616;
	text-align: center;
	padding: 20px 30px 40px;
	color: #fff;
}

.award-box__title {
	color: #FF6900;
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 8px;
	border-bottom: 1px solid #FF6900;
	padding-bottom: 4px;
}

.award-box__name {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.4;
	margin-top: 8px;
	margin-bottom: 16px;
}

.award-box__image-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	position: relative;
	z-index: 1;
}

.award-box__image {
	width: 160px;
	height: 180px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.award-box__image-placeholder {
	width: 160px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.875rem;
	cursor: pointer;
	border: 1px solid transparent;
	transition: border-color 0.2s;
}

.award-box__image-placeholder:hover {
	border-color: #ff6c00;
}

.award-box__image-btn,
.award-box__remove-btn {
	margin-top: 5px;
}

.award-box__remove-btn {
	color: #ff4d4d !important;
}