.date-akb-banner-section {
	display: flex;
	flex-flow: column;
	gap: 20px;
	padding: 20px;
	border-radius: 28px;
	background-color: $color-surface;
	margin: 32px 16px 0;
	box-sizing: border-box;

	@include desktop {
		position: relative;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: space-between;
		align-self: center;
		padding: 40px;
		margin: 80px 0 0;
		width: calc(100% - 32px);
		max-width: $width-desktop;
		min-height: 168px;
		border-radius: 32px;
	}
}

.date-akb-banner-section__icon {
	width: 100%;
	max-width: 160px;
	aspect-ratio: 80 / 57;

	.date-akb-banner-section__icon-img-desktop {
		display: none;
	}

	@include desktop {
		order: 2;
		position: absolute;
		bottom: 0;
		right: calc(40px + 136px + 10px);
		max-width: 293px;
		aspect-ratio: 293 / 157;

		.date-akb-banner-section__icon-img-desktop {
			display: block;
		}

		.date-akb-banner-section__icon-img-mobile {
			display: none;
		}
	}
}

.date-akb-banner-section__icon-img-desktop,
.date-akb-banner-section__icon-img-mobile {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	pointer-events: none;
}

.date-akb-banner-section__content {
	display: flex;
	flex-flow: column;
	gap: 10px;

	@include desktop {
		flex: 1;
		order: 1;
		gap: 12px;
		max-width: calc(100% - 136px - 239px - 50px);
	}
}

.date-akb-banner-section__title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.03em;

	@include desktop {
		font-size: 28px;
	}
}

.date-akb-banner-section__desc {
	font-size: 14px;
	line-height: 150%;
	color: $color-gray-md;

	@include desktop {
		font-size: 16px;
	}
}

.date-akb-banner-section__link-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	padding: 0px 18px;
	border-radius: 14px;
	background-color: $color-green;
	font-size: 14px;
	font-weight: 500;
	color: $color-white;
	text-align: center;
	box-sizing: border-box;

	@include desktop {
		order: 3;
		width: 100%;
		max-width: 136px;
		height: 64px;
		border-radius: 16px;
		font-size: 16px;
		padding: 0 24px;

		&:hover {
			background-color: $color-green-hover;
		}
	}
}
