/*--------------------------------------------------------------
# Newspaper Page
--------------------------------------------------------------*/
.newspaper-page-wrapper {
	overflow: hidden;
}

/* Masthead */
.newspaper-masthead {
	padding: 60px 0 40px;
	background-color: #ffffff;
	text-align: center;
	border-bottom: 4px double #1a1a1a;
}

.newspaper-title {
	font-family: 'Times New Roman', Times, serif;
	font-size: 4rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 10px 0;
	line-height: 1;
}

.newspaper-tagline {
	font-family: 'Times New Roman', Times, serif;
	font-size: 1rem;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.newspaper-tagline-bottom {
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.1rem;
	color: #c80000;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
}

.newspaper-rule {
	width: 100%;
	height: 3px;
	background-color: #1a1a1a;
	margin-top: 30px;
}

/* Announcement Section */
.newspaper-announcement-section {
	padding: 60px 0;
	background-color: #ffffff;
}

.newspaper-section-title {
	font-family: 'Times New Roman', Times, serif;
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid #c80000;
	position: relative;
}

.newspaper-section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -2px;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background-color: #1a1a1a;
}

.newspaper-announcement-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	max-width: 900px;
	margin: 0 auto;
}

.newspaper-announcement-content p {
	margin-bottom: 20px;
}

.newspaper-announcement-content p:last-child {
	margin-bottom: 0;
}

/* E-Paper Section */
.newspaper-epaper-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.epaper-reader {
	width: 100%;
	min-height: 600px;
	background-color: #ffffff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.epaper-reader iframe {
	width: 100%;
	height: 600px;
	border: none;
}

.epaper-placeholder {
	width: 100%;
	min-height: 600px;
	background-color: #ffffff;
	border: 2px dashed #ccc;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.epaper-placeholder-content {
	text-align: center;
	padding: 40px;
}

.epaper-placeholder-content i {
	font-size: 4rem;
	color: #ccc;
	margin-bottom: 20px;
}

.epaper-placeholder-content p {
	font-size: 1.25rem;
	color: #666;
	margin-bottom: 10px;
}

.epaper-placeholder-hint {
	font-size: 0.9rem;
	color: #999;
	font-style: italic;
}

/* Unique Section - 3 Column Newspaper Layout */
.newspaper-unique-section {
	padding: 60px 0;
	background-color: #ffffff;
}

.newspaper-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	position: relative;
}

.newspaper-column {
	padding: 0 40px;
	position: relative;
}

.newspaper-column:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #1a1a1a;
}

.newspaper-column:first-child {
	padding-left: 0;
}

.newspaper-column:last-child {
	padding-right: 0;
}

.newspaper-column-title {
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #1a1a1a;
}

.newspaper-column p {
	font-size: 1rem;
	line-height: 1.7;
	color: #333;
	margin-bottom: 0;
}

/* Subscribe Section */
.newspaper-subscribe-section {
	padding: 60px 0;
}

.newspaper-subscribe-text {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.newspaper-subscribe-card {
	background-color: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 40px 30px;
	backdrop-filter: blur(10px);
}

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

.newspaper-subscribe-option {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
}

.newspaper-subscribe-desc {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Partner Section */
.newspaper-partner-section {
	padding: 60px 0;
	background-color: #f4f4f4;
}

.newspaper-partner-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	max-width: 900px;
	margin: 0 auto;
}

.newspaper-partner-content p {
	margin-bottom: 20px;
}

.newspaper-partner-content p:last-child {
	margin-bottom: 0;
}

.newspaper-partner-content a {
	color: #c80000;
	text-decoration: none;
	font-weight: 600;
}

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

/* Responsive */
@media (max-width: 991px) {
	.newspaper-title {
		font-size: 3rem;
	}

	.newspaper-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.newspaper-column {
		padding: 0;
	}

	.newspaper-column:not(:last-child)::after {
		display: none;
	}

	.newspaper-column:not(:last-child) {
		border-bottom: 1px solid #1a1a1a;
		padding-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.newspaper-masthead {
		padding: 40px 0 30px;
	}

	.newspaper-title {
		font-size: 2.25rem;
		letter-spacing: 2px;
	}

	.newspaper-tagline,
	.newspaper-tagline-bottom {
		font-size: 0.85rem;
	}

	.newspaper-announcement-section,
	.newspaper-epaper-section,
	.newspaper-unique-section,
	.newspaper-subscribe-section,
	.newspaper-partner-section {
		padding: 50px 0;
	}

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

	.newspaper-column-title {
		font-size: 1.1rem;
	}

	.epaper-reader,
	.epaper-placeholder {
		min-height: 400px;
	}

	.epaper-reader iframe {
		height: 400px;
	}

	.newspaper-subscribe-option {
		font-size: 1.25rem;
	}
}
