/* Populární autoři */
.autor-grid, .interpret-grid, .redaktor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.autor-item h3 a, .interpret-item h3 a, .redaktor-item h3 a{
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: bold;
}
.osobnost-grid .role{
    display: flex;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: bold;
    width:100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    line-height: 1.3em;
    color: #759f40;
    justify-content: center;
    padding-top: 0.5em;
    padding-bottom: 1em;
}
.redaktor-item:first-of-type .role{
    font-size: clamp(22px, 3.2vw, 32px);
}
@media (min-width: 861px) {
    .interpret-grid, .autor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .redaktor-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .autor-grid, .interpret-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .redaktor-grid {
        display: flex;
        gap: 20px;
    }
    .redaktor-item:first-of-type {
        flex-direction: row;
        width: 100%;
        padding: clamp(1rem, 2vw, 1.5em);
    }
    .redaktor-item:not(:first-of-type) {
        flex-direction: row;
        width: clamp(50%, 60vw, 70%);
    }
    .redaktor-item:first-of-type img{
        width: 250px;
    }
}

.autor-image, .interpret-image, .redaktor-image{
    /* max-width: 220px !important;*/
    width: 200px;
    height: auto;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}
.autor-item, .interpret-item, .redaktor-item {
    border-radius: 8px;
    background-color: #fff;
    padding: 1.5em 0.5em;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    width: 100%;
    height: auto;
}
.autor-item h3, .interpret-item h3, .redaktor-item h3{
    margin: 0;
	padding: 0.5em !important;
}
.autor-description, .interpret-description, .redaktor-description {
    font-size: 0.9rem;
	text-align: left;
    padding: 0em 0.3em 1em;
    margin-bottom: 0em !important;
}