﻿/* === SEZNAM URL === */
.RepeaterHeaderTemplate {
	font-size: 22px;
	font-weight: bold;
	color: #1f2e4f;
	margin-bottom: 15px;
	border-bottom: 2px solid #0078d4;
	padding-bottom: 5px;
}

.RepeaterItemTemplate,
.RepeaterAlternatingItemTemplate {
	background-color: #fff;
	border-radius: 8px;
	padding: 15px 20px;
	margin-bottom: 12px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	.RepeaterItemTemplate:hover,
	.RepeaterAlternatingItemTemplate:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	}

/* Nadpis odkazu */
.RepeaterHeading {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

	.RepeaterHeading a {
		color: #0078d4;
		text-decoration: none;
		transition: color 0.2s ease;
	}

		.RepeaterHeading a:hover {
			color: #005a9e;
			text-decoration: underline;
		}

/* Popis odkazu */
.RepeaterItemTemplate > span,
.RepeaterAlternatingItemTemplate > span {
	display: block;
	font-size: 15px;
	color: #444;
	margin-bottom: 10px;
	line-height: 1.4;
}

/* Metadata */
.RepeaterSmallInfo {
	font-size: 13px;
	color: #666;
	border-top: 1px solid #eee;
	padding-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

	.RepeaterSmallInfo a {
		color: #0078d4;
		text-decoration: none;
		font-weight: 500;
	}

		.RepeaterSmallInfo a:hover {
			text-decoration: underline;
		}

.RepeaterAlternatingItemTemplate {
	background-color: #f9fafc;
}
