/* Auxiliary Pages Styles */

.page-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ffff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.content-block {
    background: rgba(30, 27, 75, 0.3);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #334155;
    margin-bottom: 2rem;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #00ffff;
}

.content-block p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.placeholder-content {
    text-align: center;
    padding: 3rem;
    background: rgba(30, 27, 75, 0.2);
    border-radius: 12px;
    border: 2px dashed #334155;
}

.placeholder-content p {
    color: #64748b;
    font-style: italic;
    font-size: 1.1rem;
}

/* Content with visual layout */
.content-with-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text {
    order: 1;
}

.content-visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image {
    width: 100%;
    max-width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #334155;
}

.illustration {
    max-width: 100%;
    height: auto;
}

/* Alternate layout for visual variety */
.content-block:nth-child(even) .content-with-visual {
    grid-template-columns: 1fr 1fr;
}

.content-block:nth-child(even) .content-text {
    order: 2;
}

.content-block:nth-child(even) .content-visual {
    order: 1;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .placeholder-content {
        padding: 2rem;
    }
    
    .content-with-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-block:nth-child(even) .content-with-visual {
        grid-template-columns: 1fr;
    }
    
    .content-text,
    .content-visual {
        order: unset !important;
    }
    
    .content-image {
        max-width: 100%;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .placeholder-content {
        padding: 1.5rem;
    }
    
    .placeholder-content p {
        font-size: 1rem;
    }
    
    .content-with-visual {
        gap: 1.5rem;
    }
    
    .content-image {
        height: 150px;
    }
}