/* =====================================================
   waste-sub.css — Solid Waste page styles
   Depends on ../assets/css/main.css
===================================================== */


/* =====================================================
   1) TITLE BLOCK (HERO)
===================================================== */
.waste-hero {
	background: #fff;
	padding: 3rem 1rem 2rem;
	text-align: center;
}

.waste-hero-overlay {
	background-color: rgba(0, 0, 0, 0.3);
}

.waste-hero-content {
	max-width: 900px;
	margin: 0 auto;
}

.waste-hero-content h1 {
	font-size: 0.85rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #6b7280;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.waste-hero-content p {
	font-size: 2rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0;
	line-height: 1.2;
}

.waste-hero-content::after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background: #f2a900;
	margin: 1.25rem auto 0;
	border-radius: 2px;
}

/* =====================================================
   2) PAGE LAYOUT
===================================================== */

#main.wrapper {
	margin-top: 0 !important;
}

#main .inner {
	max-width: none !important;
	width: 100%;
	padding: 0 2rem 2rem 2rem;
	margin-top: 0 !important;
}

.content-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;

	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}

.main-content {
	min-width: 0;
	max-width: 100%;
}


/* =====================================================
   3) SIDEBAR
===================================================== */

.sidebar {
	width: 100%;
	max-width: 300px;
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 100px;
}

.sidebar h3 {
	margin-top: 0;
	font-size: 1.1rem;
	color: #374151;
}

.sidebar p {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 1rem;
}

.sidebar a {
	color: #0077cc;
	text-decoration: none;
}

.sidebar a:hover {
	text-decoration: underline;
}

.sidebar hr {
	margin: 1.5rem 0;
	opacity: 0.2;
}


/* =====================================================
   4) PRIMARY CONTENT (UPDATED)
===================================================== */

.primary {
	max-width: 900px;
}

.primary section {
	margin-bottom: 2.5rem;
}

.primary h2 {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.primary h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: #374151;
}

.primary p {
	line-height: 1.6;
	color: #374151;
}

.primary hr {
	margin: 1.5rem 0;
	opacity: 0.2;
}


/* =====================================================
   5) NOTICE BLOCK
===================================================== */

.notice {
	background: #f8fafc;
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,0.05);
}


/* =====================================================
   6) FEATURE LIST (UPDATED FOR THIS PAGE)
===================================================== */
.feature-list-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 1rem auto;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem 0;
}

.feature-list-title {
	margin-bottom: 0;
	padding-bottom: 0;
}

.feature-list li {
	padding: 0.35rem 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-list li:last-child {
	border-bottom: none;
}


/* =====================================================
   7) GLOBAL TYPOGRAPHY
===================================================== */

h2 {
	font-size: 2rem;
}

h3 {
	margin-top: 1.5rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

hr {
	margin: 2rem 0;
	opacity: 0.2;
}


/* =====================================================
   8) OPTIONAL COMPONENTS (KEPT)
===================================================== */

.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
	margin: 0 0 0.5rem 0;
	font-size: 0.95rem;
	color: #6b7280;
}

.card p {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
}


/* =====================================================
   9) MAP
===================================================== */

iframe.map {
	width: 100%;
	height: 450px;
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   10) COVER FEATURE
===================================================== */

.cover-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	background: rgba(242, 169, 0, 0.15);
	color: #374151;
	padding: 2rem;
	border-radius: 12px;
}

.cover-image img {
	width: 100%;
	border-radius: 10px;
}


/* =====================================================
   11) IMAGE POLISH
===================================================== */

.image.fit {
	border-radius: 8px;
	margin-top: 1rem;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   12) RESPONSIVE
===================================================== */

@media (max-width: 900px) {
	#main .inner {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.layout {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.sidebar {
		position: static;
		max-width: none;
	}
}

@media (max-width: 768px) {
	.waste-hero {
		height: 35vh;
	}

	.waste-hero-content p {
		font-size: 1.75rem;
	}

	iframe.map {
		height: 300px;
	}

	.cover-feature {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}

	.info-cards {
		grid-template-columns: 1fr;
	}
}

.waste-sub-img {
	display: flex;
	justify-content: center;
}

.waste-sub-img img {
	width: 33rem;
	margin: 1rem auto;
}