/* Sekcja "Role" na stronie "Role i funkcje" — kafelki ról BuddyBoss.
   Celowo ciemne karty (odstępstwo od jasnej palety reszty frontu WP,
   docs/wordpress/design-styles-frontend.md) — wzorem sekcji marketingowej
   referencyjnej, żeby wizualnie wyróżnić tę sekcję jako "o platformie".
   Akcent i font zostają spójne z resztą brandu (#33e5bd / #00d6c7,
   ClashDisplay). Kafelek aktualnej roli usera ma dodatkową ramkę + badge. */

.me360-role-tiles {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

@media (max-width: 900px) {
	.me360-role-tiles__card {
		flex-basis: calc(50% - 10px);
	}
}

@media (max-width: 600px) {
	.me360-role-tiles {
		flex-direction: column;
	}

	.me360-role-tiles__card {
		flex-basis: 100%;
	}
}

.me360-role-tiles__card {
	position: relative;
	flex: 1 1 30%;
	background: linear-gradient(160deg, #0c1a27 0%, #16323a 100%);
	border: 1px solid transparent;
	border-radius: 14px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.me360-role-tiles__card:hover {
	transform: translateY(-4px);
	border-color: #00d6c7;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.me360-role-tiles__card--current {
	border-color: #33e5bd;
	box-shadow: 0 0 0 1px #33e5bd;
}

.me360-role-tiles__card--current:hover {
	box-shadow: 0 0 0 1px #33e5bd, 0 12px 24px rgba(0, 0, 0, 0.25);
}

.me360-role-tiles__badge {
	position: absolute;
	top: -10px;
	right: 16px;
	background: #33e5bd;
	border-radius: 8px;
	color: #0c1a27;
	font-family: ClashDisplay, sans-serif;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 10px;
}

.me360-role-tiles__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(51, 229, 189, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #33e5bd;
	font-size: 22px;
}

.me360-role-tiles__title {
	font-family: ClashDisplay, sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #33e5bd;
}

.me360-role-tiles__description {
	font-size: 15px;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
	flex-grow: 1;
}

.me360-role-tiles__cta,
.me360-role-tiles__cta:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #33e5bd;
	border: 1px solid #00d6c7;
	border-radius: 8px;
	color: #0c1a27;
	font-family: ClashDisplay, sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 18px;
	text-decoration: none;
	align-self: flex-start;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.me360-role-tiles__cta:hover,
.me360-role-tiles__cta:focus {
	background: #00d6c7;
	border-color: #33e5bd;
	color: #0c1a27;
}
