/**
 * SRZ Vestníky - Frontend štýly
 *
 * Moderný dizajn pre zobrazenie vestníkov na frontende.
 *
 * @package SRZ_Rada
 * @since 1.0.0
 */

/* === WRAPPER === */
.srz-vestniky-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

/* === TITLE === */
.srz-vestniky-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 30px;
	text-align: center;
}

/* === FILTER === */
.srz-vestniky-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
	padding: 16px 20px;
	background: #f8f9fa;
	border-radius: 12px;
}

.srz-vestniky-filter-label {
	font-size: 12px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.srz-vestniky-filter-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.srz-vestniky-filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 65px;
	height: 34px;
	padding: 0 14px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
	background: #fff;
	border: 1px solid #e5e7eb;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.15s ease;
}

.srz-vestniky-filter-btn:hover {
	border-color: #d1d5db;
	background: #f3f4f6;
	text-decoration: none;
}

.srz-vestniky-filter-btn.active {
	background: #018763;
	border-color: #018763;
	color: #fff;
}

/* === EMPTY STATE === */
.srz-vestniky-empty {
	text-align: center;
	padding: 60px 20px;
	background: #f8f9fa;
	border-radius: 12px;
}

.srz-vestniky-empty-icon {
	font-size: 4rem;
	margin-bottom: 20px;
}

.srz-vestniky-empty p {
	font-size: 1.1rem;
	color: #666;
	margin: 0;
}

/* === YEAR GROUP === */
.srz-vestniky-year-group {
	margin-bottom: 50px;
}

.srz-vestniky-year-header {
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #018763;
}

.srz-vestniky-year-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.srz-vestniky-year-icon {
	font-size: 1.3rem;
}

.srz-vestniky-year-count {
	font-size: 0.85rem;
	font-weight: 500;
	color: #888;
	margin-left: auto;
}

/* === GRID === */
.srz-vestniky-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 25px;
}

/* === CARD === */
.srz-vestnik-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.srz-vestnik-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* === CARD HEADER === */
.srz-vestnik-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: linear-gradient(135deg, #018763 0%, #016e52 100%);
	color: #fff;
}

.srz-vestnik-month {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.srz-vestnik-month-number {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	opacity: 0.9;
}

.srz-vestnik-month-name {
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.srz-vestnik-year-badge {
	font-size: 0.8rem;
	font-weight: 600;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
}

/* === CARD BODY === */
.srz-vestnik-card-body {
	padding: 20px;
}

/* === MAIN DOCUMENT === */
.srz-vestnik-main-doc {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: #f0fdf4;
	border: 2px solid #86efac;
	border-radius: 10px;
	text-decoration: none;
	color: #166534;
	transition: all 0.2s ease;
}

.srz-vestnik-main-doc:hover {
	background: #dcfce7;
	border-color: #4ade80;
	text-decoration: none;
}

.srz-vestnik-doc-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.srz-vestnik-doc-text {
	flex: 1;
	font-weight: 500;
	line-height: 1.3;
}

.srz-vestnik-doc-action {
	font-size: 0.8rem;
	font-weight: 600;
	color: #15803d;
	white-space: nowrap;
}

/* === NO DOCUMENT === */
.srz-vestnik-no-doc {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: #fef2f2;
	border: 2px dashed #fca5a5;
	border-radius: 10px;
	color: #991b1b;
}

.srz-vestnik-no-doc-icon {
	font-size: 1.5rem;
	opacity: 0.7;
}

/* === PRÍLOHY === */
.srz-vestnik-prilohy {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e5e7eb;
}

.srz-vestnik-prilohy-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.srz-vestnik-prilohy-icon {
	font-size: 1rem;
}

.srz-vestnik-prilohy-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.srz-vestnik-prilohy-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.srz-vestnik-priloha-item {
	padding: 8px 0;
	border-bottom: 1px solid #f3f4f6;
}

.srz-vestnik-priloha-item:last-child {
	border-bottom: none;
}

.srz-vestnik-priloha-item a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #3b82f6;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.srz-vestnik-priloha-item a::before {
	content: "→";
	color: #9ca3af;
	font-size: 0.8rem;
}

.srz-vestnik-priloha-item a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

/* === POZNÁMKA === */
.srz-vestnik-poznamka {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 15px;
	padding: 12px;
	background: #fefce8;
	border-radius: 8px;
	font-size: 0.9rem;
	color: #854d0e;
	line-height: 1.5;
}

.srz-vestnik-poznamka-icon {
	flex-shrink: 0;
}

/* === ERROR === */
.srz-vestniky-error {
	padding: 20px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	color: #991b1b;
	text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.srz-vestniky-wrapper {
		padding: 15px;
	}

	.srz-vestniky-title {
		font-size: 1.5rem;
	}

	.srz-vestniky-filter {
		flex-direction: column;
		align-items: flex-start;
	}

	.srz-vestniky-filter-buttons {
		width: 100%;
	}

	.srz-vestniky-filter-btn {
		padding: 5px 10px;
		font-size: 11px;
	}

	.srz-vestniky-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.srz-vestnik-card-header {
		padding: 15px;
	}

	.srz-vestnik-month-number {
		font-size: 2rem;
	}

	.srz-vestnik-month-name {
		font-size: 1rem;
	}

	.srz-vestnik-card-body {
		padding: 15px;
	}

	.srz-vestnik-main-doc {
		flex-wrap: wrap;
	}

	.srz-vestnik-doc-action {
		width: 100%;
		text-align: center;
		margin-top: 8px;
		padding-top: 8px;
		border-top: 1px solid #86efac;
	}
}

@media (max-width: 480px) {
	.srz-vestniky-year-title {
		flex-wrap: wrap;
		font-size: 1.3rem;
	}

	.srz-vestniky-year-count {
		width: 100%;
		margin-left: 0;
		margin-top: 5px;
	}
}
