.chummery-layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

.chummery-column.text {
	flex: 1 1 100%;
	color: var(--text-color);
	max-width: 1200px;
}

.chummery-column.text h1 {
	font-size: 2.2rem;
	margin-bottom: 24px;
	color: #333;
	font-weight: 700;
}

.chummery-column.text h3 {
	margin-top: 24px;
	font-size: 1.3rem;
	color: #5865f2;
}

body.dark-theme .chummery-column.text h1 {
	color: #eee;
}

body.dark-theme .chummery-column.text h3 {
	color: #8da1ff;
}

.chummery-column.text p,
.chummery-column.text ul {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 16px;
	color: #444;
}

body.dark-theme .chummery-column.text p,
body.dark-theme .chummery-column.text ul {
	color: #ccc;
}

.chummery-column.text ul {
	padding-left: 20px;
	list-style: none;
	margin-bottom: 20px;
}

.chummery-column.text li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.chummery-column.text li::before {
	content: '•';
	position: absolute;
	left: -7px;
	top: 0.1em;
	color: #222;
	z-index: 1;
	font-size: 1.1em;
}

.chummery-column.text li::after {
	content: '•';
	position: absolute;
	left: -4px;
	top: 0.1em;
	color: #5865f2;
	z-index: 2;
	font-size: 1.1em;
}

body.dark-theme .chummery-column.text li::before {
	color: #111;
}

body.dark-theme .chummery-column.text li::after {
	color: #8da1ff;
}

.staff-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.staff-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 280px;
}

.staff-card:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.staff-card img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: center;
}

.staff-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 80%);
	color: #fff;
	text-align: left;
}

.staff-caption h4 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
}

.staff-caption p {
	margin: 4px 0 0;
	font-size: 0.95rem;
	color: #ddd;
}

.pdf-section {
	padding: 60px 20px;
	background-color: var(--background-color);
	color: var(--text-color);
	text-align: center;
	max-width: 1200px;
	margin: 0 auto 60px;
}

.pdf-section h2 {
	font-size: 2rem;
	margin-bottom: 12px;
}

.pdf-section p {
	font-size: 1.1rem;
	margin-bottom: 24px;
}

.pdf-frame {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: 12px;
}

.chummery-council {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
	color: var(--text-color);
}

.council-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.council-text {
	text-align: center;
}

.council-text img {
	max-width: 100%;
	height: auto;
	margin-top: 20px;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.council-info p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 15px;
	text-align: justify;
}

.room-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.room-gallery img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.room-gallery img:hover {
	transform: scale(1.03);
}

.gallery-container {
	position: relative;
	width: 600px;
	height: 400px;
	margin: 40px auto;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	background-color: #f5f5f5;
}

.gallery-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}

.gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 12px;
	cursor: pointer;
	font-size: 24px;
	z-index: 10;
	transition: background-color 0.3s ease;
}

.gallery-btn:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.gallery-btn.prev {
	left: 10px;
}

.gallery-btn.next {
	right: 10px;
}

.chummery-column.text .staff-caption h4 {
	color: #ffffff;
}

.chummery-column.text .staff-caption p {
	color: #f0f0f0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
