/* ======= WORKERS PROFILES ======= */

/* Kontajner pre všetky profily */
.worker-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	padding: 50px 0;
}

/* Jednotlivá karta pracovníka */
.worker-profile {
	position: relative;
	width: 300px;
	padding: 25px 15px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Fotka pracovníka */
.worker-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #09253829;
	margin-bottom: 15px;
}

/* Meno */
.worker-name {
	color: #0e3b5a;
}

/* Základné info */
.worker-info {
	list-style: none;
	margin: 15px 0;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 500;
	color: #2f5875;
	border: 1px solid #09253829;
}
.worker-info li {
	padding: 3px 0;
	width: 165px;
	display: flex;
	justify-content: space-between;
}

/* Sekcie (certifikáty, voľný čas, skills, extra) */
.worker-profile section {
	width: 200px;
	margin-bottom: 15px;
	font-size: 14px;
}

.worker-profile section strong {
	display: block;
	margin-bottom: 10px;
	color: #0e3b5a;
	font-weight: 700;
}

.worker-profile section ul {
	list-style: inside;
	text-align: left;
}

.worker-profile section ul li {
	padding: 3px 0;
	font-size: 13px;
	font-weight: 500;
	color: #2f5875;
}

.worker-profile section p {
	font-size: 13px;
	margin: 0;
	text-align: left;
}

.available {
	position: absolute;
	display: inline-block;
	top: -15px;
	right: 20px;
	padding: 6px 14px;
	background: #1bb86d;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 0 0 0 rgba(40, 199, 111, 0.4);
	animation: pulse 1.5s infinite;
}

/* Pulzujúci efekt */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.4);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(40, 199, 111, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(40, 199, 111, 0);
	}
}

.not-available {
	position: absolute;
	display: inline-block;
	top: -15px;
	right: 20px;
	padding: 6px 14px;
	background: #dc3545;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 0 0 0 rgba(220, 53, 69, 0.4);
	animation: pulse-red 2s infinite;
}

/* Animácia – jemné červené pulzovanie */
@keyframes pulse-red {
	0% {
		box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
	}
}
/* RESPONSIVE */
@media screen and (max-width: 768px) {
	.worker-profile {
		width: 100%;
		max-width: 500px;
	}
}


@media screen and (max-width: 682px) {
	
}

@media screen and (max-width: 480px) {

}