/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
.about-us-page-wrapper {
	overflow: hidden;
	padding-bottom: 50px;
}

.about-us-page-wrapper > section:last-child {
	margin-bottom: 50px;
}

/* Story Section */
.about-story-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.about-story-logo {
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.about-story-logo img {
	max-width: 320px;
	max-height: 320px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.about-story-content .about-section-title {
	text-align: left;
}

.about-story-content .about-section-title::after {
	left: 0;
	transform: none;
}

.about-content-entry {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #555;
}

.about-content-entry p {
	margin-bottom: 20px;
}

.about-content-entry p:last-child {
	margin-bottom: 0;
}

/* Mission Section */
.about-mission-section {
	padding: 80px 0;
	background-color: #c80000;
}

.about-mission-text {
	font-size: 1.25rem;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.95;
}

.about-mission-card {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 40px 30px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.about-mission-card:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
}

.about-mission-icon {
	font-size: 3rem;
	color: #ffffff;
	margin-bottom: 20px;
}

.about-mission-title {
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.about-mission-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Editorial Standards */
.about-editorial-section {
	padding: 80px 0;
	background-color: #f4f4f4;
}

.about-standard-card {
	background-color: #f8f9fa;
	border-left: 4px solid #c80000;
	border-radius: 0 8px 8px 0;
	padding: 30px 25px;
	height: 100%;
	transition: all 0.3s ease;
}

.about-standard-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.about-standard-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #c80000;
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 10px;
}

.about-standard-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.about-standard-desc {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Team Section */
.about-team-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.about-team-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.about-team-card:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.about-team-image {
	overflow: hidden;
	height: 280px;
}

.about-team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.about-team-card:hover .about-team-image img {
	transform: scale(1.05);
}

.about-team-info {
	padding: 25px 20px;
}

.about-team-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 5px;
}

.about-team-role {
	color: #c80000;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.about-team-bio {
	font-size: 0.9rem;
	color: #777;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Stats Section */
.about-stats-section {
	padding: 80px 0;
	background-color: #c80000;
}

.about-stat-item {
	padding: 20px;
}

.about-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 10px;
}

.about-stat-label {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Coverage Section */
.about-coverage-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.about-coverage-card {
	background-color: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 35px 25px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.about-coverage-card:hover {
	border-color: #c80000;
	box-shadow: 0 8px 30px rgba(200, 0, 0, 0.08);
	transform: translateY(-3px);
}

.about-coverage-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(200, 0, 0, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.about-coverage-icon i {
	font-size: 1.75rem;
	color: #c80000;
}

.about-coverage-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.about-coverage-desc {
	font-size: 0.9rem;
	color: #777;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
	.about-hero-section {
		padding: 80px 0 60px;
		min-height: 300px;
	}

	.about-hero-title {
		font-size: 2.25rem;
	}

	.about-logo-section {
		padding: 40px 0 30px;
	}

	.about-page-logo {
		max-width: 160px;
	}

	.about-story-section,
	.about-mission-section,
	.about-editorial-section,
	.about-team-section,
	.about-stats-section,
	.about-coverage-section {
		padding: 60px 0;
	}

	.about-section-title {
		font-size: 1.75rem;
	}

	.about-stat-number {
		font-size: 2.25rem;
	}
}

@media (max-width: 767px) {
	.about-hero-title {
		font-size: 1.75rem;
	}

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

	.about-mission-section {
		padding: 50px 0;
	}

	.about-logo-section {
		padding: 30px 0 20px;
	}

	.about-page-logo {
		max-width: 140px;
	}

	.about-story-section,
	.about-editorial-section,
	.about-team-section,
	.about-stats-section,
	.about-coverage-section {
		padding: 50px 0;
	}

	.about-section-title {
		font-size: 1.5rem;
	}

	.about-team-image {
		height: 220px;
	}
}

/* Mission Text Block */
.about-mission-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

.about-mission-text p {
	margin-bottom: 20px;
}

.about-mission-text p:last-child {
	margin-bottom: 0;
}

/* Quote Block */
.about-quote-block {
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.about-quote-block::before {
	content: '\201C';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 6rem;
	color: rgba(200, 0, 0, 0.15);
	font-family: Georgia, serif;
	line-height: 1;
}

.about-quote-text {
	font-size: 1.5rem;
	font-weight: 400;
	font-style: italic;
	color: #1a1a1a;
	line-height: 1.6;
	padding: 20px 0;
	margin: 0;
	position: relative;
}

@media (max-width: 991px) {
	.about-story-logo img {
		max-width: 260px;
	}
}

@media (max-width: 767px) {
	.about-quote-text {
		font-size: 1.15rem;
	}

	.about-story-logo {
		margin-bottom: 30px;
		padding: 0;
	}

	.about-story-logo img {
		max-width: 220px;
	}
}
