/**
 * SportsPics Customer Account
 */

/* Main account library */

.skps-account-downloads {
	max-width: 1200px;
	margin: 40px auto;
}

/* Header */

.skps-account-header {
	margin-bottom: 35px;
}

.skps-account-header h2 {
	margin: 0 0 8px;
}

.skps-account-header p {
	margin: 0;
	color: #666;
}

/* Download all */

.skps-download-actions {
	margin-bottom: 30px;
}

.skps-download-actions .button {
	display: inline-block;
	padding: 12px 22px;
	text-decoration: none;
	border-radius: 5px;
}

/* Download grid */

.skps-download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 25px;
}

/* Individual card */

.skps-download-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Image */

.skps-download-image {
	background: #f5f5f5;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.skps-download-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Missing image */

.skps-download-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	font-size: 14px;
}

/* Details */

.skps-download-details {
	padding: 20px;
}

.skps-download-details h3 {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 1.4;
}

.skps-download-details p {
	margin: 0 0 8px;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

.skps-download-details p strong {
	color: #333;
}

/* Filename */

.skps-download-filename {
	word-break: break-word;
}

/* Event */

.skps-download-event {
	margin-bottom: 20px !important;
}

/* Download button */

.skps-download-button {
	display: inline-block;
	margin-top: 10px;
	padding: 11px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
}

/* Empty library */

.skps-account-empty {
	padding: 40px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	text-align: center;
}

/* Mobile */

@media (max-width: 767px) {

	.skps-account-downloads {
		margin: 25px 15px;
	}

	.skps-download-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.skps-download-details {
		padding: 16px;
	}

	.skps-download-actions .button {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}

}