/* ===================================
   Single Waste Treatment Detail Page Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #128c5e;
    --primary-hover: #0f7a4f;
    --primary-light: rgba(18, 140, 94, 0.08);
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
    --max-content-width: 820px;
    --container-padding: 24px;
    --transition-speed: 0.3s;
}

/* Container */
.single-waste-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Hero Breadcrumb Overrides (Match Single Service) */
.hero-breadcrumb {
    margin: 0 0 1.5rem 0;
    padding: 0 !important;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.hero-breadcrumb li,
.hero-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
}

.hero-breadcrumb li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #ffffff;
}

.hero-breadcrumb li a:hover {
    color: #ffffff;
}

.hero-breadcrumb li:last-child {
    font-weight: 600;
    color: #ffffff;
}

/* Main Content Area */
.waste-main-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.content-wrapper {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

/* Related Waste Section */
.related-waste {
    background-color: var(--bg-light);
    padding: 5rem 0;
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.related-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--text-primary);
}

.waste-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Content Typography */
.waste-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.waste-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.content-section h2 {
    color: var(--primary-color);
    margin-top: 0;
}

@media (max-width: 991px) {
    .waste-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .waste-grid {
        grid-template-columns: 1fr;
    }

    .waste-main-content {
        padding-top: 50px;
    }
}

/* End of stylesheet */