/* Alphabet archive styles */
.alphabet-section {
    margin-bottom: 3rem;
}

.alphabet-letter {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

.alphabet-list {
    list-style: none;
    column-count: 3;
    column-gap: 2rem;
}

.alphabet-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.alphabet-list a {
    color: var(--color-text);
}

.alphabet-list a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .alphabet-list {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .alphabet-list {
        column-count: 1;
    }
}

/* Search form styles */
.search-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 0.5rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.search-form button:hover {
    background: var(--color-accent);
}

