/*!
Theme Name: bahaifootprints
Theme URI: https://trushargavit.com
Author: Trushar Gavit
Author URI: https://trushargavit.com
Description: Description
Version: 1.3.4
Requires at least: 6.8.1
Tested up to:  6.8.1
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bahaifootprints
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bahaifootprints is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #2563eb;
	--primary-light: #3b82f6;
	--accent: #f59e0b;
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #64748b;
	--bg-primary: #ffffff;
	--bg-secondary: #f8fafc;
	--bg-card: #ffffff;
	--border: #e2e8f0;
	--border-light: #f1f5f9;
	--surface: rgba(37, 99, 235, 0.03);
	--reading-bg: #fefefe;
}

[data-theme='dark'] {
	--primary: #3b82f6;
	--primary-light: #60a5fa;
	--accent: #fbbf24;
	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-muted: #94a3b8;
	--bg-primary: #0f172a;
	--bg-secondary: #1e293b;
	--bg-card: #1e293b;
	--border: #334155;
	--border-light: #475569;
	--surface: rgba(59, 130, 246, 0.05);
	--reading-bg: #1e293b;
}

html {
	scroll-padding-top: 5rem;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-secondary);
	color: var(--text-primary);
	line-height: 1.6;
	transition: background-color 0.3s ease, color 0.3s ease;
}

a {
	text-decoration: none;
}

/* Top Navigation Bar */
.top-nav {
	background: var(--bg-primary);
	border-bottom: 1px solid var(--border);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	backdrop-filter: blur(10px);
}

.nav-brand {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-item {
	position: relative;
}

.nav-item {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.nav-item a:hover,
.nav-item.current-menu-item a {
	color: var(--primary);
	background: var(--surface);
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.theme-toggle {
	background: none;
	border: none;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.theme-toggle:hover {
	background: var(--surface);
	color: var(--primary);
}

.theme-icon {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
	transform: rotate(15deg);
}

/* Admin Bar Compatibility */
.admin-bar .top-nav {
	top: 32px;
}

.admin-bar .sidebar {
	top: calc(60px + 32px);
	height: calc(100vh - 60px - 32px);
}

.admin-bar .layout,
.admin-bar .layout-page {
	padding-top: calc(60px + 32px);
}

.admin-bar .mobile-menu-toggle {
	top: calc(60px + 32px);
}

/* Mobile Admin Bar (WordPress admin bar is 46px on mobile screens < 783px) */
@media screen and (max-width: 782px) {
	.admin-bar .top-nav {
		top: 46px;
	}

	.admin-bar .sidebar {
		top: calc(60px + 46px);
		height: calc(100vh - 60px - 46px);
	}

	.admin-bar .layout,
	.admin-bar .layout-page {
		padding-top: calc(60px + 46px);
	}

	.admin-bar .mobile-menu-toggle {
		top: calc(60px + 46px);
	}
}

.layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	min-height: 100vh;
	padding-top: 60px;
}

.layout-page {
	min-height: 100vh;
	padding-top: 60px;
}

/* Sidebar Navigation */
.sidebar {
	background: var(--bg-primary);
	border-right: 1px solid var(--border);
	position: fixed;
	left: 0;
	top: 60px;
	height: calc(100vh - 60px);
	width: 280px;
	overflow-y: auto;
	z-index: 100;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sidebar-header {
	padding: 2rem 1.5rem 1rem;
	border-bottom: 1px solid var(--border-light);
	background: var(--surface);
}

.sidebar-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.sidebar-subtitle {
	font-size: 0.875rem;
	color: var(--text-muted);
}

/* Sidebar Scrollbar Styling */
.sidebar {
	/* Existing styles... */

	/* Force scrollbar to always be visible */
	overflow-y: scroll;

	/* Webkit browsers (Chrome, Safari, Edge) */
	scrollbar-width: thin;
	scrollbar-color: var(--border) var(--bg-secondary);
}

.sidebar::-webkit-scrollbar {
	width: 8px;
}

.sidebar::-webkit-scrollbar-track {
	background: var(--bg-secondary);
	border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}

.sidebar::-webkit-scrollbar-thumb:active {
	background: var(--primary-light);
}

/* Firefox scrollbar styling */
.sidebar {
	scrollbar-width: thin;
	scrollbar-color: var(--border) var(--bg-secondary);
}

/* For better visual consistency, also style the main content scrollbar */
html::-webkit-scrollbar {
	width: 12px;
}

html::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

html::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 6px;
	border: 2px solid var(--bg-secondary);
	transition: background-color 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}

html::-webkit-scrollbar-thumb:active {
	background: var(--primary-light);
}

.search-sidebar {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border-light);
}

.search-input {
	color: var(--text-secondary);
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 0.9rem;
	background: var(--bg-secondary);
	transition: all 0.2s ease;
	font-family: inherit;
}

.search-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	background: var(--bg-primary);
}

.alphabet-sidebar {
	padding: 1rem 0;
}

.alphabet-section {
	margin-bottom: 1rem;
}

.alphabet-letter {
	display: flex;
	align-items: center;
	padding: 0.5rem 1.5rem;
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.alphabet-letter:hover,
.alphabet-letter.active {
	background: var(--surface);
	border-left-color: var(--primary);
	color: var(--primary);
}

.letter-count {
	margin-left: auto;
	font-size: 0.8rem;
	color: var(--text-muted);
	background: var(--bg-secondary);
	padding: 0.2rem 0.5rem;
	border-radius: 12px;
	font-weight: 400;
}

.topic-list {
	display: none;
	padding-left: 1rem;
}

.topic-list.show {
	display: block;
}

.topic-item {
	display: block;
	padding: 0.4rem 1.5rem;
	color: var(--text-secondary);
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border-left: 2px solid transparent;
	text-decoration: none;
}

.topic-item:hover {
	background: var(--bg-secondary);
	color: var(--primary);
	border-left-color: var(--primary-light);
}

/* Main Content */
.main-content {
	grid-column: 2;
}

.content-header {
	background: var(--bg-primary);
	padding: 2rem;
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(10px);
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.content-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	letter-spacing: -0.025em;
}

.content-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
}

.reading-area {
	background: var(--reading-bg);
	padding: 2rem;
}

.letter-section {
	margin-bottom: 3rem;
}

.letter-divider {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	gap: 1rem;
}

.letter-title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}

.section-info {
	flex: 1;
}

.section-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.section-count {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.divider-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, var(--border), transparent);
}

.topics-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.topic-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	height: fit-content;
	overflow: hidden;
}

.topic-card:hover {
	border-color: var(--primary-light);
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
	transform: translateY(-2px);
}

.topic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 12px 12px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.topic-card:hover::before {
	opacity: 1;
}

.topic-card.active {
	border-color: var(--primary-light);
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
	transform: translateY(-2px);
}
.topic-card.active::before {
	opacity: 1;
}

.topic-header {
	margin-bottom: 1rem;
}

.topic-title {
	font-family: 'Crimson Text', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.topic-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.topic-description {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.topic-tags {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.tag {
	background: var(--surface);
	color: var(--primary);
	padding: 0.2rem 0.6rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 500;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 500;
	font-size: 0.85rem;
	transition: gap 0.2s ease;
}

.read-more a {
	color: var(--primary);
}

.read-more:hover {
	gap: 0.6rem;
}

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	z-index: 100;
}

.back-to-top.show {
	opacity: 1;
	transform: translateY(0);
}

.back-to-top:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

/* Responsive Design */
@media (max-width: 1600px) {
	.topics-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1200px) {
	.topics-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.layout {
		grid-template-columns: 1fr;
		padding-top: 60px;
	}

	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		top: 60px;
		height: calc(100vh - 60px);
	}

	.sidebar.open {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 0;
	}

	.mobile-menu-toggle {
		display: flex;
		align-items: center;
		background: none;
		border: none;
		color: var(--text-secondary);
		cursor: pointer;
		padding: 0.5rem;
		border-radius: 6px;
		transition: all 0.2s ease;
	}

	.mobile-menu-toggle:hover {
		background: var(--surface);
		color: var(--primary);
	}

	.nav-menu {
		display: none;
	}

	.reading-area {
		padding: 1.5rem;
	}

	.content-header {
		padding: 1.5rem;
		top: 60px;
	}

	.content-title {
		font-size: 2rem;
	}

	.top-nav {
		padding: 0 1rem;
	}

	.topics-container {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.letter-title {
		font-size: 2rem;
	}

	.topic-card {
		padding: 1.25rem;
	}

	.topic-title {
		font-size: 1.2rem;
	}
}

.loading-skeleton {
	background: linear-gradient(
		90deg,
		var(--border-light) 25%,
		var(--border) 50%,
		var(--border-light) 75%
	);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/* Single Post Specific Styles */
.single-post-layout {
	grid-template-columns: 300px 1fr;
}

.single-main {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.single-article {
	position: relative;
	background: var(--bg-card);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--border);
}

.single-article:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 12px 12px 0 0;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.article-header {
	padding: 3rem 3rem 2rem;
	background: linear-gradient(135deg, var(--surface) 0%, transparent 100%);
	border-bottom: 1px solid var(--border-light);
}

.article-breadcrumb {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.article-breadcrumb a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
	color: var(--primary-light);
}

.breadcrumb-separator {
	color: var(--text-muted);
}

.article-title {
	font-family: 'Crimson Text', serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.article-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.meta-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.meta-icon {
	font-size: 1rem;
}

.article-excerpt {
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.6;
	font-style: italic;
	padding: 1.5rem;
	background: var(--bg-secondary);
	border-radius: 12px;
	border-left: 4px solid var(--primary);
}

.article-content {
	font-family: 'Crimson Text', serif;
	padding: 3rem;
	font-size: 1.5rem;
	color: var(--text-primary);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
	font-family: 'Crimson Text', serif;
	color: var(--text-primary);
	margin: 2rem 0 1rem;
	line-height: 1.3;
}

.article-content h2 {
	font-size: 2rem;
	border-bottom: 2px solid var(--border-light);
	padding-bottom: 0.5rem;
}

.article-content h3 {
	font-size: 1.5rem;
}

.article-content p {
	margin-bottom: 1.5rem;
}

.article-content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	background: var(--surface);
	border-left: 4px solid var(--primary);
	border-radius: 8px;
	font-style: italic;
	color: var(--text-secondary);
}

.article-content ul,
.article-content ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.article-content li {
	margin-bottom: 0.5rem;
}

.article-content a {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: all 0.2s ease;
}

.article-content a:hover {
	text-decoration-color: var(--primary);
}

.article-footer {
	padding: 2rem 3rem 3rem;
	border-top: 1px solid var(--border-light);
}

.article-tags {
	margin-bottom: 3rem;
}

.tags-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.tags-list {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.article-tag {
	background: var(--surface);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.article-tag:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.article-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.nav-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nav-next {
	text-align: right;
}

.nav-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nav-link {
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: var(--primary);
}

.nav-title {
	font-weight: 500;
	line-height: 1.4;
}

/* Sidebar Styles for Single Posts */
.sidebar-actions {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border-light);
}

.action-button {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--surface);
	color: var(--primary);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.2s ease;
	border: 1px solid var(--border);
}

.action-button:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.action-icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.post-meta-sidebar {
	padding: 1rem 0;
}

.meta-section {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border-light);
}

.meta-section:last-child {
	border-bottom: none;
}

.meta-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.meta-items {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.meta-item {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
}

.meta-label {
	color: var(--text-muted);
}

.meta-value {
	color: var(--text-secondary);
	font-weight: 500;
}

.sidebar-tags {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sidebar-tag {
	background: var(--surface);
	color: var(--primary);
	padding: 0.4rem 0.8rem;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 500;
	width: fit-content;
}

.related-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.related-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.85rem;
	padding: 0.5rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	line-height: 1.4;
}

.related-link:hover {
	background: var(--surface);
	color: var(--primary);
}

.sidebar-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid var(--border-light);
}

.share-buttons {
	display: flex;
	gap: 0.5rem;
}

.share-button {
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.5rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.share-button:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.share-icon {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.single-post-layout {
		grid-template-columns: 1fr;
	}

	.single-main {
		padding: 1.5rem;
	}

	.article-header {
		padding: 2rem 2rem 1.5rem;
	}

	.article-title {
		font-size: 2.5rem;
	}

	.article-content {
		padding: 2rem;
	}

	.article-footer {
		padding: 1.5rem 2rem 2rem;
	}

	.article-navigation {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.nav-next {
		text-align: left;
	}
}

@media (max-width: 768px) {
	.article-title {
		font-size: 2rem;
	}

	.article-meta {
		gap: 1rem;
	}

	.article-header {
		padding: 1.5rem;
	}

	.article-content {
		padding: 1.5rem;
		font-size: 1.3rem;
	}

	.article-footer {
		padding: 1.5rem;
	}
}

/* Language Switcher Styles */
.language-switcher {
	position: relative;
	display: inline-block;
	margin-right: 10px;
}

.language-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.3s ease;
	color: var(--text-color, #333);
}

.language-toggle:hover {
	background-color: var(--hover-bg, rgba(0, 0, 0, 0.1));
}

.language-toggle .theme-icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
}

.current-lang {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 320px;
	background: var(--dropdown-bg, #ffffff);
	border: 1px solid var(--border-color, #e1e5e9);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.language-dropdown.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-dropdown-header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color, #e1e5e9);
	text-align: center;
}

.language-dropdown-header h3 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-color, #333);
}

.language-dropdown-header p {
	margin: 0;
	font-size: 13px;
	color: var(--text-secondary, #666);
	opacity: 0.8;
}

.language-list {
	max-height: 300px;
	overflow-y: auto;
	padding: 8px 0;
}

.language-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	text-decoration: none;
	color: var(--text-color, #333);
	transition: all 0.2s ease;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
}

.language-option:hover {
	background-color: var(--hover-bg, rgba(0, 0, 0, 0.05));
}

.language-option.active {
	background-color: var(--primary-color, #007cba);
	color: white;
}

.language-option.active:hover {
	background-color: var(--primary-hover, #005a87);
}

.lang-flag {
	font-size: 20px;
	min-width: 24px;
	text-align: center;
}

.lang-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lang-english {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.lang-native {
	font-size: 12px;
	opacity: 0.8;
	line-height: 1.2;
}

.current-indicator {
	font-size: 16px;
	color: currentColor;
	font-weight: bold;
	display: none;
}

.language-option.active .current-indicator {
	display: inline;
}

/* Google Translate Override Styles */
.goog-te-banner-frame {
	display: none !important;
}

.goog-te-menu-frame {
	z-index: 999999 !important;
}

body {
	top: 0 !important;
}

#google_translate_element {
	display: none !important;
}

.skiptranslate {
	display: none !important;
}

/* Prevent Google Translate from affecting layout */
body.translated-ltr {
	top: 0 !important;
}

body.translated-rtl {
	top: 0 !important;
}

/* Loading indicator for translation */
.translating {
	position: relative;
}

.translating::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid transparent;
	border-top: 2px solid var(--primary-color, #007cba);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 1000;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Dark theme support */
[data-theme='dark'] .language-dropdown {
	--dropdown-bg: #2c2c2c;
	--border-color: #404040;
	--text-color: #ffffff;
	--text-secondary: #cccccc;
	--hover-bg: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .language-toggle {
	color: #ffffff;
}

[data-theme='dark'] .language-toggle:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.language-dropdown {
		width: 280px;
		right: -10px;
	}

	.language-switcher {
		margin-right: 5px;
	}

	.language-toggle {
		padding: 6px 8px;
	}

	.current-lang {
		display: none; /* Hide text on mobile, just show icon */
	}
}

@media (max-width: 480px) {
	.language-dropdown {
		width: 260px;
		right: -20px;
	}

	.language-option {
		padding: 10px 16px;
	}

	.lang-english {
		font-size: 13px;
	}

	.lang-native {
		font-size: 11px;
	}
}

/* Custom scrollbar for language list */
.language-list::-webkit-scrollbar {
	width: 6px;
}

.language-list::-webkit-scrollbar-track {
	background: var(--scroll-track, #f1f1f1);
	border-radius: 3px;
}

.language-list::-webkit-scrollbar-thumb {
	background: var(--scroll-thumb, #c1c1c1);
	border-radius: 3px;
}

.language-list::-webkit-scrollbar-thumb:hover {
	background: var(--scroll-thumb-hover, #a8a8a8);
}

[data-theme='dark'] .language-list::-webkit-scrollbar-track {
	--scroll-track: #404040;
}

[data-theme='dark'] .language-list::-webkit-scrollbar-thumb {
	--scroll-thumb: #666666;
}

[data-theme='dark'] .language-list::-webkit-scrollbar-thumb:hover {
	--scroll-thumb-hover: #777777;
}

/* Mobile Page Menu Toggle Styles */
.mobile-page-menu-toggle {
	display: none;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border-light);
	background: var(--surface);
}

.page-menu-toggle-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	transition: all 0.2s ease;
	background: var(--bg-primary);
	border: 1px solid var(--border);
}

.page-menu-toggle-btn:hover {
	background: var(--surface);
	border-color: var(--primary-light);
}

.menu-toggle-icon {
	font-size: 1.1rem;
}

.menu-toggle-text {
	flex: 1;
	text-align: left;
	margin-left: 0.75rem;
}

.toggle-arrow {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.page-menu-section {
	border-bottom: 1px solid var(--border-light);
}

.content-directory-section {
	flex: 1;
}

/* Sidebar Menu Styles */
.sidebar-section {
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--border-light);
	padding-top:2rem;
	padding-bottom: 1.5rem;
}

.sidebar-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.sidebar-section-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
	padding: 0 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.8;
}

.sidebar-section .menu-list {
	display: flex;
	flex-direction: column;
}

.sidebar-section .menu-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
	position: relative;
}

.sidebar-section .menu-item:hover {
	background: var(--surface);
	color: var(--primary);
	border-left-color: var(--primary-light);
}

.sidebar-section .menu-item.active {
	background: var(--surface);
	color: var(--primary);
	border-left-color: var(--primary);
	font-weight: 600;
}

.sidebar-section .menu-icon {
	font-size: 1rem;
	min-width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.external-link {
	justify-content: space-between;
}

.external-icon {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.6;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
	.mobile-page-menu-toggle {
		display: block;
	}

	.page-menu-section {
		display: none;
		animation: slideDown 0.3s ease-in-out;
	}

	.page-menu-section.expanded {
		display: block;
	}

	.page-menu-section.expanded .sidebar-section:last-child {
		margin-bottom: 1rem;
		padding-bottom: 1rem;
	}
}

/* Desktop: Hide page menu section and toggle button */
@media (min-width: 1025px) {
	.mobile-page-menu-toggle {
		display: none;
	}

	.page-menu-section {
		display: none;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		max-height: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		max-height: 500px;
		transform: translateY(0);
	}
}

/* Adjust sidebar structure */
.sidebar {
	display: flex;
	flex-direction: column;
}

/* About Page Specific Styles */
.about-section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-light);
}

.about-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.about-section h2 {
	font-family: 'Crimson Text', serif;
	font-size: 2rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--border-light);
	padding-bottom: 0.5rem;
}

.about-section p {
	font-size: 1.5rem;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.author-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 2rem;
	background: var(--surface);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--border);
}

.author-image {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.author-photo {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--primary);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.author-info p {
	font-size: 1.1rem;
}

.author-info h3 {
	font-family: 'Crimson Text', serif;
	font-size: 1.8rem;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.author-title {
	color: var(--primary);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 1.5rem !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.developer-link {
	font-size: 1.1rem;
	margin-top: 1.5rem;
}

.notice-section {
	background: linear-gradient(135deg, var(--accent), #f97316);
	color: white;
	border-radius: 16px;
	padding: 2rem;
	border: none;
}

.notice-section h2 {
	color: white;
	border-bottom-color: rgba(255, 255, 255, 0.3);
}

.notice-content p {
	color: white;
	font-size: 1.1rem;
	line-height: 1.8;
	margin: 0;
}

.official-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.official-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.2s ease;
}

.official-link:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
	transform: translateY(-2px);
}

.link-info h4 {
	color: var(--primary);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.link-info p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

/* Contact Page Specific Styles */
.contact-info {
	padding: 0 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-icon {
	font-size: 1.2rem;
	min-width: 24px;
	margin-top: 0.2rem;
}

.contact-details strong {
	display: block;
	font-size: 0.9rem;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.contact-details p {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.4;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--border);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	background: var(--bg-primary);
	color: var(--text-primary);
	transition: all 0.2s ease;
	resize: vertical;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control:invalid {
	border-color: #ef4444;
}

select.form-control {
	cursor: pointer;
}

textarea.form-control {
	min-height: 120px;
	line-height: 1.6;
}

.form-actions {
	text-align: center;
	margin-top: 2rem;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.btn-primary:hover {
	background: var(--primary-light);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-icon {
	font-size: 1.1rem;
}

.contact-success {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	border-radius: 12px;
	margin-bottom: 2rem;
}

.success-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.contact-success h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: white;
}

.contact-success p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin: 0;
}

.contact-errors {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #dc2626;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.contact-errors h4 {
	color: #dc2626;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.contact-errors ul {
	margin: 0;
	padding-left: 1.5rem;
}

.contact-errors li {
	margin-bottom: 0.5rem;
}

[data-theme='dark'] .contact-errors {
	background: rgba(220, 38, 38, 0.1);
	border-color: rgba(220, 38, 38, 0.2);
	color: #fca5a5;
}

[data-theme='dark'] .contact-errors h4 {
	color: #fca5a5;
}

/* Resources Page Specific Styles */
.resources-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2rem;
}

.resource-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: row;
	position: relative;
	min-height: 200px;
}

.resource-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 12px 12px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.resource-card:hover {
	border-color: var(--primary-light);
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
	transform: translateY(-2px);
}

.resource-card:hover::before {
	opacity: 1;
}

.resource-cover {
	position: relative;
	width: 200px;
	min-width: 200px;
	overflow: hidden;
	background: var(--bg-secondary);
	margin: 2rem 0 2rem 2rem;
}

.cover-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface) 100%);
}

.placeholder-icon {
	font-size: 3rem;
	opacity: 0.5;
}

.resource-type-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.9rem;
	backdrop-filter: blur(10px);
	font-weight: 500;
}

.resource-info {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.resource-title {
	font-family: 'Crimson Text', serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.resource-title a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.resource-title a:hover {
	color: var(--primary);
}

.resource-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
	font-size: 1rem;
}

.resource-meta {
	margin-bottom: 1.5rem;
	background: var(--bg-secondary);
	padding: 1.25rem;
	border-radius: 8px;
	border: 1px solid var(--border-light);
}

.meta-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.meta-row:last-child {
	margin-bottom: 0;
}

.meta-label {
	color: var(--text-muted);
	font-weight: 500;
}

.meta-value {
	color: var(--text-secondary);
	font-weight: 600;
}

.resource-tags {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.resource-tag {
	background: var(--surface);
	color: var(--primary);
	padding: 0.4rem 1rem;
	border-radius: 16px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(37, 99, 235, 0.1);
}

.resource-actions {
	margin-top: auto;
}

.no-resources {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--text-muted);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	background: var(--bg-secondary);
	margin-top: 2rem;
}

.no-resources-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.no-resources h3 {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	font-family: 'Crimson Text', serif;
}

.no-resources p {
	color: var(--text-muted);
	font-size: 1rem;
}

/* Article/Single Page Common Styles */
.article-header {
	padding: 3rem 3rem 2rem;
	background: linear-gradient(135deg, var(--surface) 0%, transparent 100%);
	border-bottom: 1px solid var(--border-light);
}

.article-breadcrumb {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.article-breadcrumb a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
	color: var(--primary-light);
}

.breadcrumb-separator {
	color: var(--text-muted);
}

.article-title {
	font-family: 'Crimson Text', serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.article-excerpt {
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.6;
	font-style: italic;
	padding: 1.5rem;
	background: var(--bg-secondary);
	border-radius: 12px;
	border-left: 4px solid var(--primary);
}

/* Additional Mobile Responsive Styles for Page Templates */
@media (max-width: 1024px) {
	.author-card {
		grid-template-columns: 160px 1fr;
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.author-photo {
		width: 140px;
		height: 140px;
	}

	.author-info h3 {
		font-size: 1.6rem;
	}

	.resource-cover {
		width: 180px;
		min-width: 180px;
	}

	.resource-info {
		padding: 1.5rem;
	}

	.resource-title {
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.about-section {
		margin-bottom: 2rem;
	}

	.about-section p {
		font-size: 1.3rem;
	}

	.about-section h2 {
		font-size: 1.7rem;
	}

	.author-card {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1rem;
		margin: 0 -0.5rem;
		text-align: center;
	}

	.author-image {
		justify-content: center;
	}

	.author-photo {
		width: 120px;
		height: 120px;
		border-width: 3px;
	}

	.author-info {
		text-align: center;
	}

	.author-info h3 {
		font-size: 1.5rem;
		margin-bottom: 0.25rem;
	}

	.author-title {
		font-size: 0.9rem;
		margin-bottom: 1rem !important;
	}

	.author-info p {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1rem;
		text-align: center;
	}

	.developer-link {
		margin-top: 1rem;
		text-align: center;
	}

	.notice-section {
		padding: 1.5rem;
		margin: 0 -0.5rem;
	}

	.official-links {
		grid-template-columns: 1fr;
	}

	.official-link {
		padding: 1.2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.contact-form {
		padding: 0;
	}

	.btn-primary {
		width: 100%;
		justify-content: center;
	}

	.article-header {
		padding: 2rem 2rem 1.5rem;
	}

	.article-title {
		font-size: 2.5rem;
	}

	.resources-grid {
		padding: 2rem;
	}

	.resource-card {
		flex-direction: column;
		min-height: auto;
	}

	.resource-cover {
		width: 100%;
		min-width: auto;
		margin: auto;
	}

	.resource-info {
		padding: 1.5rem;
	}

	.resource-title {
		font-size: 1.2rem;
	}

	.resource-meta {
		padding: 1rem;
	}
}

@media (max-width: 480px) {
	.resources-grid {
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.resource-info {
		padding: 1.25rem;
	}

	.resource-title {
		font-size: 1.1rem;
	}

	.resource-description {
		font-size: 0.9rem;
	}

	.btn-primary {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}

	.resource-meta {
		padding: 0.875rem;
	}

	.meta-row {
		font-size: 0.85rem;
	}

	.article-title {
		font-size: 2rem;
	}

	.article-header {
		padding: 1.5rem;
	}
}
