.acteurs-page {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
    padding: 32px 0 60px;
}

.acteurs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
}

.page-kicker {
    display: block;
    margin-bottom: 5px;
    color: #58a6ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.acteurs-header h1 {
    margin: 0;
    color: #f0f6fc;
    font-size: 32px;
    line-height: 1.15;
}

.acteurs-header p {
    margin: 7px 0 0;
    color: #8b949e;
    font-size: 14px;
}

.acteurs-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.acteur-search {
    position: relative;
    width: min(420px, 100%);
}

.acteur-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #6e7681;
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
}

.acteur-search input {
    width: 100%;
    height: 44px;
    padding: 0 15px 0 40px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    color: #f0f6fc;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.acteur-search input::placeholder {
    color: #6e7681;
}

.acteur-search input:focus {
    border-color: #58a6ff;
}

.acteur-sort {
    display: flex;
    align-items: center;
    gap: 7px;
}

.acteur-sort select {
    height: 44px;
    padding: 0 38px 0 13px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    color: #c9d1d9;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

.acteur-sort select:focus {
    border-color: #58a6ff;
}

.sort-direction {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    color: #8b949e;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sort-direction:hover {
    background: #161b22;
    border-color: #58a6ff;
    color: #58a6ff;
}

.acteurs-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.acteur-card {
    min-width: 0;
    overflow: hidden;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.acteur-card:hover {
    background: #1c2128;
    border-color: #58a6ff;
    transform: translateY(-3px);
}

.acteur-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0d1117;
}

.acteur-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.acteur-card:hover .acteur-image img {
    transform: scale(1.025);
}

.acteur-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #30363d;
    font-size: 46px;
}

.acteur-content {
    padding: 13px;
}

.acteur-content h2 {
    min-height: 39px;
    margin: 0 0 11px;
    overflow: hidden;
    color: #f0f6fc;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.acteur-card:hover .acteur-content h2 {
    color: #58a6ff;
}

.acteur-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #8b949e;
    font-size: 11px;
}

.acteur-stats span {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.acteur-stats strong {
    color: #c9d1d9;
    font-size: 12px;
    font-weight: 650;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 7px;
    color: #8b949e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.pagination a {
    background: #161b22;
    border: 1px solid #30363d;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pagination a:hover {
    background: #1c2128;
    border-color: #58a6ff;
    color: #58a6ff;
}

.pagination a.active {
    background: #1f6feb;
    border-color: #1f6feb;
    color: #ffffff;
}

.pagination-arrow {
    font-size: 11px !important;
}

.no-acteurs {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    text-align: center;
}

.no-acteurs>i {
    margin-bottom: 15px;
    color: #30363d;
    font-size: 40px;
}

.no-acteurs strong {
    color: #f0f6fc;
    font-size: 17px;
}

.no-acteurs p {
    margin: 6px 0 0;
    color: #8b949e;
    font-size: 13px;
}

@media (max-width: 1250px) {
    .acteurs-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1000px) {
    .acteurs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .acteurs-page {
        width: min(100% - 28px, 1500px);
        padding-top: 24px;
    }
    .acteurs-tools {
        align-items: stretch;
        flex-direction: column;
    }
    .acteur-search {
        width: 100%;
        max-width: none;
    }
    .acteur-sort {
        width: 100%;
    }
    .acteur-sort select {
        flex: 1;
        min-width: 0;
    }
    .acteurs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .acteurs-page {
        width: min(100% - 20px, 1500px);
        padding-top: 20px;
    }
    .acteurs-header {
        margin-bottom: 18px;
    }
    .acteurs-header h1 {
        font-size: 27px;
    }
    .acteurs-tools {
        margin-bottom: 18px;
    }
    .acteurs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .acteur-content {
        padding: 10px;
    }
    .acteur-content h2 {
        min-height: 36px;
        margin-bottom: 8px;
        font-size: 13px;
    }
    .acteur-stats {
        font-size: 10px;
    }
    .acteur-stats strong {
        font-size: 11px;
    }
    .pagination {
        margin-top: 24px;
    }
}