/* Custom theme styles (Tailwind-friendly) */

:root {
	--color-primary: #2563eb;
	--color-surface: #ffffff;
	--color-text: #0f172a;
	--color-muted: #475569;
	--shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.07);
	--container-max-width: 1200px;
}

/* Universal Container Class */
.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem; /* 16px */
	padding-right: 1rem; /* 16px */
}

/* Responsive container padding */
@media (min-width: 640px) {
	.container {
		padding-left: 1.5rem; /* 24px */
		padding-right: 1.5rem; /* 24px */
	}
}

@media (min-width: 768px) {
	.container {
		padding-left: 2rem; /* 32px */
		padding-right: 2rem; /* 32px */
	}
}

@media (min-width: 1024px) {
	.container {
		padding-left: 2.5rem; /* 40px */
		padding-right: 2.5rem; /* 40px */
	}
}

@media (min-width: 1280px) {
	.container {
		padding-left: 3rem; /* 48px */
		padding-right: 3rem; /* 48px */
	}
}

/* Utility Classes - Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.75rem;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	line-height: 1.5;
}

.btn-primary {
	background-color: var(--color-primary);
	color: #ffffff;
}

.btn-primary:hover {
	background-color: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
	background-color: #ffffff;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background-color: var(--color-primary);
	color: #ffffff;
	transform: translateY(-1px);
}

.btn-outline {
	background-color: transparent;
	color: var(--color-text);
	border: 1px solid #e5e7eb;
}

.btn-outline:hover {
	background-color: #f8fafc;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* Utility Classes - Cards */
.card {
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.2s ease;
}

.card:hover {
	box-shadow: var(--shadow-soft);
	transform: translateY(-2px);
}

.card-body {
	padding: 1.5rem;
}

.card-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	font-weight: 600;
	font-size: 1.125rem;
}

.card-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid #e5e7eb;
	background-color: #f8fafc;
	border-radius: 0 0 1rem 1rem;
}

/* Utility Classes - Sections */
.section {
	padding: 4rem 0;
}

.section-sm {
	padding: 2rem 0;
}

.section-lg {
	padding: 6rem 0;
}

.section-xl {
	padding: 8rem 0;
}

@media (max-width: 768px) {
	.section {
		padding: 2.5rem 0;
	}
	.section-lg {
		padding: 4rem 0;
	}
	.section-xl {
		padding: 5rem 0;
	}
}

/* Utility Classes - Grid Layouts */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

/* Utility Classes - Badges */
.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 0.5rem;
	background-color: #e0f2fe;
	color: #0369a1;
}

.badge-success {
	background-color: #dcfce7;
	color: #15803d;
}

.badge-warning {
	background-color: #fef3c7;
	color: #b45309;
}

.badge-danger {
	background-color: #fee2e2;
	color: #b91c1c;
}

/* Utility Classes - Typography */
.heading-1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
}

.heading-2 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
}

.heading-3 {
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-text);
}

.text-lead {
	font-size: 1.25rem;
	line-height: 1.75;
	color: var(--color-muted);
}

@media (max-width: 768px) {
	.heading-1 {
		font-size: 2rem;
	}
	.heading-2 {
		font-size: 1.75rem;
	}
	.heading-3 {
		font-size: 1.5rem;
	}
	.text-lead {
		font-size: 1.125rem;
	}
}

body {
	background-color: #f8fafc;
	color: var(--color-text);
}

[x-cloak] {
	display: none !important;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: auto;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	background: #111827;
	color: #ffffff;
	font-weight: 600;
	z-index: 100;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	overflow: visible;
}

/* Navigation */
#primary-menu,
#mobile-primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

#primary-menu > li {
	position: relative;
}

#primary-menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 0;
	color: var(--color-muted);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.15s ease, transform 0.15s ease;
}

#primary-menu a:hover,
#primary-menu a:focus {
	color: var(--color-primary);
}

#primary-menu li.current-menu-item > a,
#primary-menu li.current_page_item > a {
	color: var(--color-primary);
}
.sub-menu {
  z-index: 50;
}
#primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 14rem;
	margin-top: 0.35rem;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: var(--shadow-soft);
	border-radius: 0.75rem;
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
	z-index: 50;
}

#primary-menu li:hover > .sub-menu,
#primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#primary-menu .sub-menu li {
	position: relative;
}

#primary-menu .sub-menu li a {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--color-text);
	font-weight: 500;
	white-space: nowrap;
}

#primary-menu .sub-menu li a:hover,
#primary-menu .sub-menu li a:focus {
	background-color: #f8fafc;
	color: var(--color-primary);
}

#primary-menu .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	margin-left: 0.25rem;
	margin-top: 0;
}

/* Mobile navigation */
#mobile-primary-menu li {
	margin: 0;
}

#mobile-primary-menu li a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--color-text);
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.75rem;
	transition: background-color 0.15s ease, color 0.15s ease;
}

#mobile-primary-menu li a:hover,
#mobile-primary-menu li a:focus {
	background-color: #f3f4f6;
	color: var(--color-primary);
}

#mobile-primary-menu li.current-menu-item > a,
#mobile-primary-menu li.current_page_item > a {
	background-color: #eff6ff;
	color: var(--color-primary);
}

#mobile-primary-menu .sub-menu {
	list-style: none;
	margin: 0.25rem 0 0.5rem;
	padding-left: 1rem;
	border-left: 2px solid #e5e7eb;
}

#mobile-primary-menu .sub-menu li a {
	padding: 0.5rem 1rem;
	font-size: 0.95rem;
}

.custom-logo {
	max-height: 48px;
	width: auto;
	height: auto;
}

/* Typography for post content */
.entry-content {
	color: var(--color-text);
	line-height: 1.75;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: #0f172a;
	font-weight: 700;
	line-height: 1.2;
	margin: 1.5rem 0 0.75rem;
}

.entry-content p {
	margin: 1rem 0;
	color: #0f172a;
}

.entry-content a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
}

.entry-content a:hover {
	text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
	margin: 1rem 0 1rem 1.25rem;
	padding: 0;
	color: #0f172a;
}

.entry-content li + li {
	margin-top: 0.35rem;
}

.entry-content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--color-primary);
	background: #eff6ff;
	border-radius: 0.75rem;
	color: #0f172a;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
	padding: 0.75rem;
	border: 1px solid #e5e7eb;
}

.entry-content th {
	background: #f8fafc;
	text-align: left;
}

.entry-content code {
	background: #0f172a;
	color: #e0f2fe;
	border-radius: 0.4rem;
	padding: 0.15rem 0.4rem;
	font-size: 0.9rem;
}

.entry-content pre {
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 1rem;
	padding: 1rem;
	overflow: auto;
}

.entry-content img {
	border-radius: 1rem;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea,
select {
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 0.75rem;
	padding: 0.65rem 0.9rem;
	background-color: #ffffff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
	outline: none;
}

button,
input[type="submit"],
input[type="button"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	background-color: var(--color-primary);
	color: #ffffff;
	padding: 0.65rem 1rem;
	border: none;
	border-radius: 0.75rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #1d4ed8;
	box-shadow: 0 10px 18px rgba(37, 99, 235, 0.22);
	transform: translateY(-1px);
}

button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* Widgets */
.widget {
	padding: 1.25rem;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
}

.widget-title {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.4rem;
}

.widget a {
	color: #0f172a;
	text-decoration: none;
	font-weight: 600;
}

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

/* Pagination / navigation */
.navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.navigation .nav-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
}

.navigation .nav-previous,
.navigation .nav-next {
	flex: 1;
}

.navigation a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
}

.navigation a:hover {
	text-decoration: underline;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	border: 1px solid #e5e7eb;
	color: #0f172a;
	font-weight: 600;
}

.navigation.pagination .page-numbers.current {
	background: #1d4ed8;
	border-color: #1d4ed8;
	color: #ffffff;
}

.cat-links,
.tags-links,
.comments-link,
.edit-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.cat-links a,
.tags-links a,
.comments-link a,
.edit-link a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
}

.cat-links a:hover,
.tags-links a:hover,
.comments-link a:hover,
.edit-link a:hover {
	text-decoration: underline;
}

/* Comments */
.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.comment-list .comment {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
}

.comment-metadata {
	font-size: 0.9rem;
	color: #64748b;
}

.comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.5rem;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
}

.comment-reply-link:hover {
	text-decoration: underline;
}

/* Hero Section Styles */
.hero-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
}

.hero-section .grid {
	display: grid;
}

.hero-section .grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
	.hero-section .lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.hero-title {
	letter-spacing: -0.025em;
	animation: fadeInUp 0.8s ease-out;
	font-family: system-ui, -apple-system, sans-serif;
}

.hero-subtitle {
	animation: fadeInUp 0.8s ease-out 0.2s both;
	line-height: 1.6;
}

.hero-cta {
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
	animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
	transition: transform 0.5s ease;
}

.hero-image:hover img {
	transform: scale(1.03);
}

/* Animation keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes blob {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(20px, -20px) scale(1.1);
	}
	50% {
		transform: translate(-20px, 20px) scale(0.9);
	}
	75% {
		transform: translate(20px, 20px) scale(1.05);
	}
}

.animate-blob {
	animation: blob 20s infinite;
}

.animation-delay-2000 {
	animation-delay: 2s;
}

/* Enhanced button styles for hero */
.hero-cta .btn-primary {
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
	font-weight: 600;
	border: none;
}

.hero-cta .btn-primary:hover {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 15px 35px rgba(14, 165, 233, 0.45);
}

.hero-cta .btn-primary:active {
	transform: translateY(0) scale(0.98);
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Responsive hero adjustments */
@media (max-width: 1024px) {
	.hero-section {
		min-height: auto;
	}

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

	.hero-subtitle {
		font-size: 1.125rem;
	}
}

@media (max-width: 640px) {
	.hero-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-cta .btn-primary {
		padding: 0.875rem 1.75rem;
		font-size: 1rem;
	}
}

/* Services Section Styles */
.services-section {
	position: relative;
}

.services-section .grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

@media (min-width: 1024px) {
	.services-section .grid-4 {
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5rem;
	}
}

.service-card {
	transition: all 0.3s ease;
	padding: 1rem;
	border-radius: 1rem;
}

.service-card:hover {
	transform: translateY(-4px);
}

.service-icon {
	filter: grayscale(0);
	transition: all 0.3s ease;
}

.service-card:hover .service-icon {
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
	transition: color 0.3s ease;
}

.service-card:hover h3 {
	color: #374151;
}

/* Staggered animation for service cards */
.service-card:nth-child(1) {
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.service-card:nth-child(2) {
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(3) {
	animation: fadeInUp 0.6s ease-out 0.3s both;
}

.service-card:nth-child(4) {
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

@media (max-width: 640px) {
	.service-icon {
		width: 4rem;
		height: 4rem;
	}
}

/* Job Offers Section Styles */
.job-offers-section {
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

.job-offers-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(8, 145, 178, 0.7) 0%, rgba(6, 95, 117, 0.65) 100%);
	z-index: 1;
}

.job-offers-section > div {
	position: relative;
	z-index: 10;
}

.job-offers-section h2 {
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	letter-spacing: -0.02em;
}

.job-offers-section p {
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.btn-job-offers {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn-job-offers:hover {
	transform: scale(1.05) translateY(-2px);
}

.btn-job-offers:active {
	transform: scale(0.98);
}

@media (min-width: 1024px) {
	.job-offers-section {
		background-attachment: fixed;
	}
}

@media (max-width: 1024px) {
	.job-offers-section h2 {
		font-size: 2.5rem;
	}

	.job-offers-section p {
		font-size: 1.125rem;
	}
}

@media (max-width: 640px) {
	.job-offers-section {
		padding: 3rem 0;
	}

	.job-offers-section h2 {
		font-size: 2rem;
	}

	.job-offers-section p {
		font-size: 1rem;
	}

	.btn-job-offers {
		width: 100%;
		justify-content: center;
		padding: 1rem 2rem;
	}
}

/* Stats Section Styles */
.stats-section {
	position: relative;
}

.stats-section .grid-2 {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 3rem;
}

@media (min-width: 768px) {
	.stats-section .grid-2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}
}

.stat-card {
	padding: 2rem 1rem;
	transition: transform 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-number {
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat-description {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Staggered animation for stat cards */
.stat-card:nth-child(1) {
	animation: fadeInUp 0.8s ease-out 0.1s both;
}

.stat-card:nth-child(2) {
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stat-card:nth-child(3) {
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat-card:nth-child(4) {
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Stat cards with border dividers */
@media (min-width: 768px) {
	.stat-card:nth-child(1),
	.stat-card:nth-child(2) {
		padding-bottom: 3rem;
		border-bottom: 1px solid #e5e7eb;
	}

	.stat-card:nth-child(1) {
		border-right: 1px solid #e5e7eb;
		padding-right: 2rem;
	}

	.stat-card:nth-child(2) {
		padding-left: 2rem;
	}

	.stat-card:nth-child(3) {
		border-right: 1px solid #e5e7eb;
		padding-right: 2rem;
		padding-top: 3rem;
	}

	.stat-card:nth-child(4) {
		padding-left: 2rem;
		padding-top: 3rem;
	}
}

@media (max-width: 768px) {
	.stat-number {
		font-size: 3.5rem;
	}

	.stat-description {
		font-size: 1.125rem;
	}
}

/* News Section Styles */
.news-section {
	position: relative;
}

.news-section .grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

@media (min-width: 1024px) {
	.news-section .grid-3 {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}

.news-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	transform: translateY(-8px);
}

.news-image-link {
	overflow: hidden;
	border-radius: 0.75rem;
	display: block;
}

.news-image-link img {
	transition: transform 0.5s ease;
}

.news-card:hover .news-image-link img {
	transform: scale(1.05);
}

.news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-date {
	display: block;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.news-title {
	margin: 0;
}

.news-title-link {
	text-decoration: none;
	display: inline-block;
	transition: color 0.3s ease;
}

.news-title-link:hover {
	color: #0891b2;
}

.news-excerpt {
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Staggered animation for news cards */
.news-card:nth-child(1) {
	animation: fadeInUp 0.8s ease-out 0.1s both;
}

.news-card:nth-child(2) {
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.news-card:nth-child(3) {
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (max-width: 768px) {
	.news-section .grid-3 {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.news-title {
		font-size: 1.25rem;
	}
}

/* Footer Styles */
.site-footer {
	background-color: #1e3a8a;
	color: white;
}

.footer-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-logo img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.footer-brand a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-brand a:hover {
	color: #22d3ee;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 1.5rem;
	align-items: center;
	justify-content: center;
}

.footer-menu a {
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.footer-menu a:hover {
	color: #22d3ee;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 2px solid #22d3ee;
	color: #22d3ee;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background-color: #22d3ee;
	color: #1e3a8a;
	transform: translateY(-3px);
}

.social-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

@media (max-width: 1024px) {
	.footer-wrapper {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-brand {
		align-items: center;
		text-align: center;
	}

	.footer-menu {
		gap: 1rem 1.25rem;
	}
}

@media (max-width: 640px) {
	.footer-menu {
		flex-direction: column;
		gap: 0.75rem;
	}

	.footer-social {
		gap: 0.75rem;
	}

	.social-icon {
		width: 2.25rem;
		height: 2.25rem;
	}
}
