/* Eagles Lodge Officers – Frontend Styles */

.elo-officers-grid {
	display: grid;
	gap: 2rem;
	margin: 2rem 0;
	width: 100%;
}

.elo-columns-1 {
	grid-template-columns: 1fr;
}

.elo-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.elo-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.elo-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
	.elo-columns-3,
	.elo-columns-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.elo-columns-2,
	.elo-columns-3,
	.elo-columns-4 {
		grid-template-columns: 1fr;
	}
}

.elo-officer-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.elo-officer-card:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.elo-officer-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.elo-officer-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.elo-officer-photo.elo-no-photo {
	color: #ccc;
	font-size: 4rem;
}

.elo-officer-photo.elo-no-photo .dashicons {
	width: 64px;
	height: 64px;
	font-size: 64px;
}

.elo-officer-info {
	padding: 1.25rem 1.5rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.elo-officer-name {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
}

.elo-officer-position {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: #b8860b; /* dark goldenrod – nice for lodge/fraternal feel */
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.elo-officer-bio {
	font-size: 0.9rem;
	line-height: 1.55;
	color: #444;
	margin-top: auto;
}

.elo-officer-bio p {
	margin: 0 0 0.75em;
}

.elo-officer-bio p:last-child {
	margin-bottom: 0;
}

.elo-no-officers {
	text-align: center;
	padding: 2rem;
	color: #666;
	font-style: italic;
}

/* Optional: subtle accent for Eagles theme */
.elo-officer-card::before {
	content: '';
	display: block;
	height: 4px;
	background: linear-gradient(90deg, #1a3a6e, #b8860b);
}
