.minga-menu-cards__title {
	text-transform: uppercase;
	color: white;
	background-color: #718499;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	line-height: 1em;
}

@media screen and (max-width: 1200px) {
    .minga-menu-cards__title {
		margin-top: .75em;
        padding: 5px 8px;
        border-radius: 6px;
        margin-bottom: 1em;
    }
	.minga-mega-menu__arrow,
	.minga-menu-card__blob {
		display: none;
	}

	.minga-menu-card {
		display: flex;
		gap: 10px;
		align-items: center;
		color: #33485d;
		font-weight: 700;
		padding: 8px 0;
	}
	.minga-menu-card__icon {
		width: 20px;
		height: 20px;
		position: relative;
	}
	.minga-menu-card__icon img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
	}

	.minga-menu-card + .minga-menu-card {
		border-top: 1px solid #c2ceda;
	}
}

@media screen and (min-width: 1201px) {

	.minga-menu-cards__title {
		padding: 8px 9px;
        border-radius: 8px;
        margin-bottom: 1.5em;
	}
	.minga-menu-cards__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}

	.minga-menu-card {
		position: relative;
		overflow: hidden;
		background: #fff;
		border: 1px solid #c2ceda;
		border-radius: 8px;
		padding: 25px;
		text-decoration: none;
	}
    .minga-menu-card[data-style="custom"]:before {
        content:'';
        background-color: var(--card-color);
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition:opacity 0.3s ease-in-out;
    }
    .minga-menu-card[data-style="custom"]:hover:before {
        opacity: 0.2;
    }

	.minga-menu-card {
		position: relative;
		overflow: hidden;
	}

    .minga-menu-card[data-style="default"]:hover {
        background-color: #ebf8ff;
    }

	/* Blob 13 – top-left blue blur */
	.minga-menu-card[data-style="default"]:before {
		content: "";
		position: absolute;
		left: -22.5%;
		top: -81.43%;
		width: 150%; /* approximate based on left/right offsets */
		height: 150%; /* approximate based on top/bottom offsets */
		background: #39c0ff;
		opacity: 0.12;
		filter: blur(48px);
		transform: matrix(-0.91, -0.42, -0.4, 0.92, 0, 0);
		pointer-events: none;
		z-index: 0;
	}

	/* Blob 12 – purple blur, offset differently */
	.minga-menu-card[data-style="default"]:after {
		content: "";
		position: absolute;
		left: 39.64%;
		top: 7.86%;
		width: 150%; /* approximate width based on left/right */
		height: 150%; /* approximate height based on top/bottom */
		background: #bf39d6;
		opacity: 0.1;
		filter: blur(59px);
		transform: matrix(-0.63, 0.78, 0.91, 0.41, 0, 0);
		pointer-events: none;
		z-index: 0;
	}

	.minga-menu-card__blob {
		position: absolute;
		top: -96%;
		left: -29%;
		width: 100%;
		height: 200px;
		opacity: 0.2;
		mix-blend-mode: multiply;
		filter: blur(50px);
		pointer-events: none;
	}

	.minga-menu-card__icon {
		position: relative;
		width: 27px;
		height: 22px;
		margin-bottom: 0.25em;
		display: inline-block;
	}
	.minga-menu-card__icon img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
	}

	.minga-menu-card__title {
		font-size: 20px;
		color: #33485d;
		font-weight: 700;
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.minga-menu-card__title span {
		flex-grow: 1;
	}
	.minga-mega-menu__arrow {
		flex: 0 0 33px;
		max-width: 33px;
	}
	.minga-mega-menu__arrow svg {
		max-width: 100%;
	}
}
