.sponsor-card-one {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.12);
	z-index: 9999;
}
.sponsor-card-content {
	background: #fff;
	box-shadow: 0 8px 32px #0002;
    width: auto;
	height: 70%;
    aspect-ratio: 1 / 1;
	animation: sponsorCardFloat 1.2s ease;
}

@media (max-width: 768px) {
    .sponsor-card-content {
        width: 80%;
        height: auto;
    }
}

.sponsor-card-col {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
	padding: 18px 18px;
	gap: 6px;
}
.sponsor-card-title {
	font-weight: bold;
	color: #007fff;
	text-align: left;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
	width: 100%;
}
.sponsor-card-message {
	color: #222;
	text-align: left;
	width: 100%;
}
.sponsor-card-btn-later {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border: 1px solid #007fff;
	color: #007fff;
	padding: 4px 6px;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	margin-bottom: 8px;
	transition: background 0.2s, color 0.2s;
}
.sponsor-card-btn-later:hover {
	background: #e3f2fd;
	color: #005fa3;
}
.sponsor-card-btn-action {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1de9b6;
	color: #fff;
	padding: 4px 8px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	font-weight: bold;
	margin-top: 8px;
	transition: background 0.2s, color 0.2s;
}
.sponsor-card-btn-action:hover {
	background: #00bfa5;
	color: #fff;
}
.sponsor-card-icon {
	margin-right: 6px;
}
@keyframes sponsorCardFloat {
	0% { transform: translateY(40px); opacity: 0; }
	60% { transform: translateY(-8px); opacity: 1; }
	100% { transform: translateY(0); opacity: 1; }
}
