/* Editorial Policy Page Styles */

/* Hero Section */
.editorial-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px 60px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.editorial-hero .hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.editorial-hero .last-updated {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Main Content */
.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Policy Sections */
.policy-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Introduction Section */
.intro-section {
    border-left: 5px solid #667eea;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

/* Section Content */
.section-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 2rem;
}

.section-content p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

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

/* Emphasis Text */
.emphasis {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
}

/* Highlight Section - Ownership */
.highlight-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border: 2px solid #667eea;
}

.highlight-section .section-content p strong {
    color: #667eea;
    font-weight: 700;
}

/* Standards List */
.standards-list,
.technical-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.standards-list li,
.technical-list li {
    color: #444444;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 12px 0 12px 35px;
    position: relative;
}

.standards-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.3rem;
}

.technical-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #764ba2;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Warning Section - Responsible Use */
.warning-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 5px solid #ff9800;
}

.warning-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.warning-list li {
    color: #d84315;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 10px 0;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 5px solid #4caf50;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

/* Logo Section */
.logo-section {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section h1 {
    text-decoration: none;
}

/* Dark Mode Styles */
.dark-mode .policy-section {
    background: #1e1e1e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.dark-mode .intro-section {
    border-left-color: #8b9ce8;
}

.dark-mode .intro-text {
    color: #e0e0e0;
}

.dark-mode .section-content h2 {
    color: #ffffff;
}

.dark-mode .section-content p {
    color: #b0b0b0;
}

.dark-mode .emphasis {
    color: #8b9ce8;
}

.dark-mode .highlight-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    border-color: #8b9ce8;
}

.dark-mode .highlight-section .section-content p strong {
    color: #8b9ce8;
}

.dark-mode .standards-list li,
.dark-mode .technical-list li {
    color: #c0c0c0;
}

.dark-mode .standards-list li:before {
    color: #8b9ce8;
}

.dark-mode .technical-list li:before {
    color: #9b7bb8;
}

.dark-mode .warning-section {
    background: linear-gradient(135deg, #3a2f1a 0%, #4a3820 100%);
    border-left-color: #ffb74d;
}

.dark-mode .warning-list li {
    color: #ff8a65;
}

.dark-mode .contact-section {
    background: linear-gradient(135deg, #1a3a1f 0%, #254a2a 100%);
    border-left-color: #66bb6a;
}

.dark-mode .contact-email {
    background: #2a2a2a;
    color: #66bb6a;
}

.dark-mode .editorial-hero {
    background: linear-gradient(135deg, #5566c8 0%, #5f3d7e 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-hero {
        padding: 60px 15px 40px;
    }

    .editorial-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .editorial-hero .last-updated {
        font-size: 1rem;
    }

    .editorial-content {
        padding: 15px;
    }

    .policy-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .section-content h2 {
        font-size: 1.5rem;
    }

    .section-icon {
        font-size: 1.7rem;
    }

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

    .intro-text {
        font-size: 1.05rem;
    }

    .standards-list li,
    .technical-list li,
    .warning-list li {
        font-size: 1rem;
    }

    .contact-email {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .editorial-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .editorial-hero .last-updated {
        font-size: 0.95rem;
    }

    .policy-section {
        padding: 20px 15px;
    }

    .section-content h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-icon {
        font-size: 1.5rem;
    }

    .contact-email {
        font-size: 1rem;
        word-break: break-all;
    }
}
