/* ==========================================================================
   Delivery Report – single page + gallery grid overrides
   ========================================================================== */

/* ── Single report page ─────────────────────────────────────────────────── */

.delivery-report-single {
	padding: 40px 0 60px;
}

.delivery-report-single .block-heading-holder {
	margin-bottom: 24px;
}

.delivery-report-single__content {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(37, 31, 31, 0.85);
}

.delivery-report-single__content p {
	margin-bottom: 16px;
}

.delivery-report-single__content a {
	color: #c0080b;
	text-decoration: underline;
}

.delivery-report-single__content a:hover {
	color: #251f1f;
}

.delivery-report-single__content em {
	font-style: italic;
	color: rgba(37, 31, 31, 0.7);
}

.delivery-report-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	color: rgba(37, 31, 31, 0.8);
}

.delivery-report-single__image {
	max-width: 700px;
	margin: 0 auto 40px;
	border: 3px solid rgba(81, 76, 76, 0.6);
	border-radius: 20px;
	overflow: hidden;
}

.delivery-report-single__image img {
	display: block;
	width: 100%;
	height: auto;
}

.delivery-report-single__details {
	max-width: 700px;
	margin: 0 auto 20px;
}

.delivery-report-single__detail-row {
	margin-bottom: 10px;
	font-size: 16px;
	color: rgba(37, 31, 31, 0.8);
}

.delivery-report-single__detail-row strong {
	color: #251f1f;
}

/* ── Gallery grid – delivery reports modifier ───────────────────────────── */

.delivery-reports-grid .gallery-grid__item {
	aspect-ratio: 1;
	display: block;
	text-decoration: none;
}

.delivery-reports-grid .gallery-grid__item img {
	height: 100%;
	object-fit: cover;
}

/* ── Pagination ─────────────────────────────────────────────────────────── */

.delivery-reports-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
	padding-bottom: 20px;
}

.delivery-reports-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid rgba(81, 76, 76, 0.3);
	border-radius: 8px;
	font-size: 15px;
	color: #251f1f;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}

.delivery-reports-pagination .page-numbers:hover {
	border-color: #c0080b;
	color: #c0080b;
}

.delivery-reports-pagination .page-numbers.current {
	background: #c0080b;
	border-color: #c0080b;
	color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.delivery-report-single {
		padding: 24px 0 40px;
	}

	.delivery-report-single__image {
		margin-bottom: 24px;
	}

	.delivery-report-single__meta {
		flex-direction: column;
		gap: 6px;
	}

	.delivery-reports-pagination .page-numbers {
		min-width: 36px;
		height: 36px;
		font-size: 14px;
	}
}
