/* ===== Public Records Pages - Shared Styles ===== */

/* ----- Landing Page Category Cards ----- */
.pr-category-cards .card {
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	height: 100%;
}

.pr-category-cards .card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pr-category-cards .card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	background-color: #e8f0e6;
}

.pr-category-cards .card-icon img {
	max-height: 70px;
	width: auto;
}

.pr-category-cards .card-body {
	padding: 1.5rem;
}

.pr-category-cards .card-title {
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: #212529;
	margin-bottom: 0.75rem;
}

.pr-category-cards .card-text {
	font-family: "Josefin Sans", sans-serif;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
}

.pr-category-cards .card-link {
	display: inline-block;
	margin-top: 1rem;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: #614b28;
	text-decoration: none;
	border: 1px dashed #614b28;
	padding: 6px 16px;
	transition: background-color 0.2s, color 0.2s;
}

.pr-category-cards .card-link:hover {
	background-color: #614b28;
	color: #fff;
	border-style: solid;
}

.pr-category-cards .card-link i {
	margin-left: 4px;
	font-size: 0.85rem;
}

/* ----- Archive & Info Section ----- */
.pr-archive-section {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
}

.pr-archive-section p {
	font-family: "Josefin Sans", sans-serif;
	color: #555;
	line-height: 1.7;
}

.pr-archive-section a {
	color: #614b28;
	font-weight: 600;
	text-decoration: underline;
}

.pr-archive-section a:hover {
	color: #427437;
}

/* ----- Map Section ----- */
.pr-map-section {
	margin-top: 2rem;
}

.pr-map-section iframe {
	width: 100%;
	height: 400px;
	border: 0;
	border-radius: 4px;
}

/* ----- Category Page: Search Bar ----- */
.pr-search-wrapper {
	margin-bottom: 2rem;
}

.pr-search-box {
	position: relative;
	max-width: 500px;
}

.pr-search-box input {
	width: 100%;
	padding: 12px 16px 12px 44px;
	font-family: "Josefin Sans", sans-serif;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s;
}

.pr-search-box input:focus {
	border-color: #614b28;
	box-shadow: 0 0 0 3px rgba(97, 75, 40, 0.1);
}

.pr-search-box .search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 1.1rem;
	pointer-events: none;
}

.pr-search-box .clear-search {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	font-size: 1.1rem;
	padding: 0;
	line-height: 1;
	display: none;
}

.pr-search-box .clear-search:hover {
	color: #614b28;
}

.pr-no-results {
	display: none;
	text-align: center;
	padding: 3rem 1rem;
	font-family: "Josefin Sans", sans-serif;
	color: #888;
	font-size: 1.05rem;
}

/* ----- Category Page: Browse in Drive Button ----- */
.pr-drive-link {
	display: inline-block;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: #427437;
	text-decoration: none;
	transition: color 0.2s;
}

.pr-drive-link:hover {
	color: #614b28;
}

.pr-drive-link i {
	margin-right: 4px;
}

/* ----- Category Page: Document List ----- */
.pr-document-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pr-document-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid #eee;
	transition: opacity 0.2s;
}

.pr-document-item:last-child {
	border-bottom: none;
}

.pr-document-date {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: "Josefin Sans", sans-serif;
	font-size: 0.85rem;
	color: #888;
	min-width: 150px;
}

.pr-document-date i {
	font-size: 0.9rem;
	color: #614b28;
}

.pr-document-info {
	flex: 1;
}

.pr-document-info h3 {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	margin: 0 0 0.35rem;
	line-height: 1.4;
}

.pr-document-info h3 a {
	color: #212529;
	text-decoration: none;
	transition: color 0.2s;
}

.pr-document-info h3 a:hover {
	color: #614b28;
	text-decoration: underline;
}

.pr-document-info p {
	font-family: "Josefin Sans", sans-serif;
	font-size: 0.9rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* ----- Back Link ----- */
.pr-back-link {
	display: inline-block;
	margin-bottom: 1.5rem;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: #614b28;
	text-decoration: none;
	transition: color 0.2s;
}

.pr-back-link:hover {
	color: #427437;
}

.pr-back-link i {
	margin-right: 4px;
}

/* ----- Responsive ----- */
@media (max-width: 767.98px) {
	.pr-category-cards .card-icon {
		padding: 1.5rem 1rem;
	}

	.pr-category-cards .card-icon img {
		max-height: 55px;
	}

	.pr-category-cards .card-body {
		padding: 1.25rem;
	}

	.pr-document-item {
		flex-direction: column;
		gap: 0.25rem;
	}

	.pr-document-date {
		min-width: auto;
	}

	.pr-map-section iframe {
		height: 300px;
	}

	.pr-search-box {
		max-width: 100%;
	}
}

@media (max-width: 575.98px) {
	.pr-document-item {
		padding: 1rem 0;
	}
}
