/* Auxiliary Pages Styles */

/* Image Styles */
.block-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}


/* Header */
.aux-header {
    background-color: var(--white);
    border-bottom: 2px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 3) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aux-header .logo-section {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 4);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background-color: var(--gray-50);
}

/* Main Content */
.aux-main {
    min-height: calc(100vh - 200px);
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 10);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.page-header h1 {
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.last-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Content Blocks */
.content-block {
    margin-bottom: calc(var(--spacing-unit) * 12);
}

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

.block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.block-content.reverse {
    direction: rtl;
}

.block-content.reverse > * {
    direction: ltr;
}

.block-text h2 {
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.block-text p {
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.7;
}

.block-image .image-placeholder {
    height: 300px;
    border-radius: var(--border-radius);
}

/* Values List */
.values-list {
    margin-top: calc(var(--spacing-unit) * 4);
}

.value-item {
    margin-bottom: calc(var(--spacing-unit) * 4);
    padding: calc(var(--spacing-unit) * 3);
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1.125rem;
}

.value-item p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    margin-top: calc(var(--spacing-unit) * 6);
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-placeholder {
    background-color: var(--gray-50);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 8);
    text-align: center;
}

.placeholder-content h2 {
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.placeholder-content > p {
    font-size: 1.125rem;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--text-light);
}

.placeholder-topics {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 4);
    text-align: left;
}

.placeholder-topics h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.placeholder-topics ul {
    list-style: none;
    padding: 0;
}

.placeholder-topics li {
    padding: calc(var(--spacing-unit) * 1) 0;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 3);
    color: var(--text-color);
}

.placeholder-topics li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Policy Sections */
.policy-section {
    margin-bottom: calc(var(--spacing-unit) * 8);
    padding-bottom: calc(var(--spacing-unit) * 6);
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-size: 1.5rem;
}

.policy-section h3 {
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 4);
    font-size: 1.125rem;
}

.policy-section p {
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.7;
}

.contact-details {
    background-color: var(--gray-50);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: var(--border-radius);
    margin-top: calc(var(--spacing-unit) * 3);
}

.contact-details p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* SVG Illustrations */
.svg-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 3);
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .block-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .block-content.reverse {
        direction: ltr;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .aux-main {
        padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 8);
    }
    
    .policy-placeholder {
        padding: calc(var(--spacing-unit) * 4);
    }
    
    .svg-illustration {
        height: 250px;
    }
    
    .block-img {
        height: 250px;
    }
}