.donation-banner {
	position: relative;
	padding: clamp(96px, 11.7vw, 167px) clamp(16px, 2.4vw, 42px) 0;
	color: #fff;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 auto 8px;
	height: clamp(680px, 62.5vw, 900px);
	max-width: 1424px;
	box-sizing: border-box;
}

.donation-banner::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.12) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
	z-index: 1;
	pointer-events: none;
}

.donation-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.donation-banner .donation-content {
	position: relative;
	z-index: 2;
	text-align: left;
    margin: 0 auto;
	width: 100%;
    max-width: 1320px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.donation-label {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    padding: 0 0 14px;
    margin: 0 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    @media screen and (max-width: 768px) {
        font-size: 16px;
        margin: 0 0 30px;
    }
}

.donation-title {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: clamp(34px, 2.95vw, 42px);
    line-height: 110%;
    letter-spacing: -0.02em;
    margin: 0 auto clamp(56px, 5.35vw, 76px);
    padding: 0;
	max-width: 753px;
	text-align: center;
}

.donation-card {
	background: #F1F5F8;
	padding: 40px;
	border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
	width: 100%;
	min-height: 327px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}

.donation-card-title {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: rgba(1, 48, 38, 1);
    padding: 0;
    margin: 0;
	width: 100%;
}

.donation-form {
	width: 100%;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
	row-gap: 10px;
    column-gap: 8px;
}

.amount-btn {
	min-height: 46px;
	padding: 12px 0;
	border-radius: 300px;
	border: 1px solid rgba(0, 71, 53, 1);
	cursor: pointer;
	transition: 0.2s;
    font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: rgba(0, 71, 53, 1);
    background: transparent;
}

.amount-btn.active {
	background: rgba(207, 226, 224, 1);
}

.donate-submit {
    margin-top: 30px;
    width: 100%;
    padding: 16px 0;
    border-radius: 12px;
    background: #004735;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.01em;
	min-height: 52px;
}

@media screen and (max-width: 900px) {
	.donation-banner {
		height: auto;
		min-height: 680px;
		padding: 72px 20px;
	}

	.donation-title {
		font-size: clamp(32px, 6vw, 42px);
		margin-bottom: 42px;
	}
}

.donate-submit:hover {
    background-color: #CFE2E0;
    color: #004735;
	/* filter: brightness(1.15); */
}

@media screen and (max-width: 600px) {
	.donation-banner {
		margin: 0 4px 8px;
		min-height: 620px;
		padding: 56px 16px;
	}

	.donation-title {
		font-size: 30px;
		max-width: 12ch;
		margin-bottom: 34px;
	}

	.donation-card {
		padding: 24px 20px;
		min-height: auto;
		gap: 24px;
	}

	.donation-card-title {
		font-size: 26px;
	}

	.donation-amounts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.donate-submit {
		margin-top: 24px;
	}
}
