/*
 * wisнblower - Content Component CSS
 * Content Sections, Typography, Links for Static Pages
 */

/* ===== CONTENT SECTION CONTAINER ===== */
.content-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 860px;
    max-width: calc(100vw - 40px);
    position: relative;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* ===== CONTENT TYPOGRAPHY ===== */
.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.content-section h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.content-section p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.content-section ul, .content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.content-section li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* ===== CONTENT LINKS ===== */
.content-section a {
    color: #87CEEB;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #ADD8E6;
}

.content-section a:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* ===== CONTENT EMPHASIS ===== */
.content-section strong {
    font-weight: 600;
    color: white;
}

.content-section em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTENT DIVIDERS ===== */
.content-section hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

/* ===== RESPONSIVE CONTENT ===== */
@media (max-width: 900px) {
    .content-section {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        width: 98%;
    }
    
    .content-section h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .content-section ul, .content-section ol {
        margin-left: 1rem;
    }
}

/* ===== ACCESSIBILITY OVERRIDES ===== */
@media (forced-colors: active) {
    .content-section {
        border: 2px solid transparent;
    }
    
    .content-section a {
        text-decoration: underline;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content-section a {
        transition: none;
    }
}