



/* --- kartični izpis priponk (prilagodi barve/tipografijo stilom virs.si) --- */
.attachment-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 24px;
	margin-top: 20px;
}
 
.attachment-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
 
.attachment-card__img {
	display: block;
	position: relative;
	aspect-ratio: 210 / 297; /* A4 pokončno; odstrani, če slike niso enotnih razmerij */
	overflow: hidden;
	border: 1px solid #e2e2e2;
	background: #f5f5f5;
	transition: transform .3s ease;
}
 
.attachment-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

a.attachment-card:hover {
	text-decoration: none !important;
	box-shadow: none !important;
}

a.attachment-card:hover .attachment-card__img,
a.attachment-card:focus-visible .attachment-card__img {
	transform: translateY(-3px);
}

a.attachment-card:hover .attachment-card__label,
a.attachment-card:focus-visible .attachment-card__label {
	color: var(--color__orange);
	text-decoration: none;
}

a.attachment-card {
	gap: 0;
}

.attachment-card__label {
	margin-top: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.attachment-card__descr {
	margin-top: 0;
	font-size: var(--size-1);
}

.attachment-card__meta {
	margin-top: 4px;
	font-size: var(--size-1);
	font-weight: 400;
}
 
@media (max-width: 560px) {
	.attachment-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 14px;
	}
}