/* Support Page Layout */
.support-page {
    padding: 3rem 0 4rem;
    background: #f8fafc;
    min-height: 60vh;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Support Content */
.support-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.brochures-hero {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.brochures-hero h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.brochures-hero p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
}

.brochures-layout {
    margin-top: 0;
}

.brochures-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.brochures-filters {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
}

.brochures-filters h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 0.875rem;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group input::placeholder {
    color: #94a3b8;
}

.brochures-results {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.brochures-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.brochures-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.brochure-count {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.brochure-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brochure-card {
    border-radius: 0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: background-color 0.15s;
}

.brochure-card:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.brochure-card:last-child {
    border-bottom: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.brochure-card:hover {
    background-color: #f8fafc;
}

.brochure-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.brochure-meta {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.brochure-meta span:not(:last-child) {
    display: flex;
    align-items: center;
}

.brochure-meta span:has(+ span:contains('•'))::after {
    content: '•';
    margin-left: 0.5rem;
    color: #cbd5e1;
}

.brochure-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    min-width: 120px;
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #eff6ff;
    color: #1e40af;
    text-decoration: none;
    border: 1px solid #bfdbfe;
    transition: all 0.15s;
    white-space: nowrap;
}

.lang-chip:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-lang {
    font-size: 0.8rem;
    color: #9ca3af;
}

.brochure-empty {
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    font-size: 0.9375rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px dashed #cbd5e1;
}

.error {
    color: #dc2626;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 6px;
    border: 1px solid #fecaca;
}

@media (max-width: 968px) {
    .brochures-grid {
        grid-template-columns: 1fr;
    }
    
    .brochures-filters {
        position: static;
        margin-bottom: 2rem;
    }
    
    .brochure-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .brochure-languages {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .brochures-hero h1 {
        font-size: 1.875rem;
    }
    
    .brochures-hero p {
        font-size: 1rem;
    }
    
    .brochures-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


