/* Autoři – Grid styles */

.autori-wrap {
    margin: 0 auto;
}

.autori-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.autori-title-row h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

/* Písmenkový filtr */
.autori-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.4rem;
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid #e5e7eb;
}

.autori-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease;
}

.autori-filter a:hover {
    color: #0f172a;
}

.autori-filter a.active {
    background: #1f2937;
    color: #ffffff;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
}

/* Řádek s počtem výsledků a řazením */
.autori-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.85rem;
}

.autori-count {
    color: #6b7280;
    font-size: 0.95rem;
}

.autori-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
}

.autori-sort select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    cursor: pointer;
}

.autori-sort select:focus {
    outline: none;
}

/* Mřížka karet */
.autori-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 2rem;
}

.autor-card {
    width: 100%;
}

.autor-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.25rem 1rem 0;
}

.autor-thumb {
    width: 128px;
    height: 128px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.autor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.autor-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: #0f172a;
}

.autor-text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #6b7280;
}

.autor-text p {
    margin: 0.2rem 0;
}

.autori-grid-empty {
    font-style: italic;
    color: #6b7280;
}

/* Responsivita – 2 vedle sebe na tabletu */
@media (max-width: 1024px) {
    .autori-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Responsivita – 1 pod druhým na mobilu */
@media (max-width: 640px) {
    .autori-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .autori-title-row h2 {
        font-size: 1.4rem;
    }

    .autor-thumb {
        width: 104px;
        height: 104px;
    }

    .autori-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
