.creators-hero h2 {
    margin-bottom:8px;
}

.creators-hero p {
    color:var(--fcom-secondary-text);
}

.creator-filters {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:20px 0;
}

.creator-select-wrap {
    position:relative;
    min-width:180px;
}

.creator-select-wrap select {

    width:100%;
    height:40px;

    padding:0 36px 0 12px;

    border:1px solid var(--fcom-primary-border);
    border-radius:8px;

    background:var(--fcom-primary-bg);
    color:var(--fcom-primary-text);

    font-size:14px;
    box-sizing:border-box;

    cursor:pointer;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

.creator-select-wrap select:focus {
    outline:none;
    border-color:var(--fcom-secondary-border);
}

.creator-select-icon {

    position:absolute;

    top:50%;
    right:12px;

    transform:translateY(-50%);

    display:flex;
    align-items:center;

    color:var(--fcom-secondary-text);

    pointer-events:none;
}

.creator-select-icon svg {
    width:14px;
    height:14px;
}

.creator-search-field {
    position:relative;
    flex:1;
    min-width:220px;
}

#creator-location-search {
    width:100%;
    height:40px;

    padding:0 42px 0 16px;

    border:1px solid var(--fcom-primary-border);
    border-radius:8px;

    background:var(--fcom-primary-bg);
    color:var(--fcom-primary-text);

    font-size:14px;
    box-sizing:border-box;
}

#creator-location-search:focus {
    outline:none;
    border-color:var(--fcom-secondary-border);
}

#creator-location-clear {
    position:absolute;
    top:50%;
    right:12px;

    transform:translateY(-50%);

    border:none;
    background:none;

    padding:0;
    margin:0;

    font-size:16px;
    line-height:1;

    cursor:pointer;
    display:none;

    color:var(--fcom-secondary-text);
}

#creator-location-clear:hover {
    color:var(--fcom-primary-text);
}

#creator-results-count {
    margin:16px 0 12px;

    font-size:14px;
    font-weight:600;

    color:var(--fcom-secondary-text);
}

#creators-grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

@media (max-width:768px) {

    #creators-grid {
        grid-template-columns:repeat(4,1fr);
    }

}

@media (max-width:647px) {

    #creators-grid {
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:430px) {

    #creators-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .creator-filters {
        flex-direction:column;
    }

    .creator-select-wrap {
        width:100%;
    }

    .creator-search-field {
        width:100%;
    }

}

#creators-grid .creator-card {
    background:var(--fcom-primary-bg);

    border:1px solid var(--fcom-primary-border);
    border-radius:8px;

    overflow:hidden;
}

#creators-grid .creator-card-content {
    display:flex;
    flex-direction:column;
    text-decoration:none;
}

#creators-grid .creator-avatar img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
}

#creators-grid .creator-info {
    padding:10px;
}

#creators-grid .display_name {
    display:flex;
    align-items:center;
    gap:4px;

    font-weight:600;
    line-height:1.3;

    color:var(--fcom-primary-text);
}

#creators-grid .meta_line {
    margin-top:4px;

    font-size:12px;

    color:var(--fcom-secondary-text);
}

#creators-grid .creator-location,
#creators-grid .creator-gender,
#creators-grid .creator-orientation {
    margin-top:4px;
}

#creators-grid .creator-description {
    margin-top:8px;

    font-size:13px;
    line-height:1.4;

    color:var(--fcom-primary-text);

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

#creators-grid .display_name .fcom_verified {
    display:flex;
    align-items:center;
    flex-shrink:0;
}

#creators-grid .display_name .fcom_verified svg {
    width:16px;
    height:16px;
    fill:#e23534;
}