/* Archives Page Styles */

:root {
    --sobie-dark: #1e293b;
    --sobie-blue: #2563eb;
    --sobie-gradient: linear-gradient(135deg, var(--sobie-blue) 0%, #1d4ed8 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.hero-section {
    background: var(--sobie-gradient);
    color: white;
    padding: 4rem 0 2rem 0;
    margin-bottom: 3rem;
}

.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.list-group-item {
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
}

.list-group-item:hover {
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-1px);
}