/* Header with title and search */
.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.explore-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.explore-title span {
	background: linear-gradient(90deg, #FF0068 0%, #5F239C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Search field */
.search-group { 
    min-width: 280px; 
}
#influencer-search {
    width: 100%;
    height: 45px;
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #364046;
    color: #AAA8B1;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    border-radius: 5px;
}

/* Category tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
	margin-top: 35px;
}
.category-tab {
    /*background: #1d1a2f;*/
	background-color: transparent;
	border: 1px solid #364046;
    color: #AAA8B1;
    padding: 16px 42px;   
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    transition: all .2s ease;
    white-space: nowrap;
}
.category-tab:hover { 
	background: #FF0068; 
	border-style: solid;
	border-color: #02010100;
	color: #fff;
}
.category-tab.active  { 
	background: #FF0068; 
	color: #fff; 
	border-style: none;
}

/* Grid */
.influencer-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px 15px;
    margin-top: 20px;
    /*margin-bottom: 35px;*/
}
.influencer-filter-shortcode .load-more-btn,
.influencer-results-grid + .load-more-btn 
{
    margin-top: 35px;
}
.influencer-item {
    padding: 6px;
    border-radius: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
    /*background: #1d1a2f;*/
}
/*.influencer-item:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 24px rgba(0,0,0,.18); 
}*/

.influencer-thumbnail img { 
    width: 100%; 
    height: auto; 
    border-radius: 15px; 
}

.influencer-title { 
    margin: 30px 0 10px; 
    font-size: 24px; 
	font-weight: 700;
    color: #fff; 
    /*text-align: center;*/
}
.influencer-excerpt { 
    color: #AAA8B1; 
    font-size: 17px; 
    /*text-align: center;*/
}

/* Load more */
.load-more-btn {
    display: block;
    margin: 8px auto 0;
    padding: 16px 42px;
    background: #FF0068;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
}
.load-more-btn:hover { background: #5F239C; }

.loading, .no-results { 
    text-align: center; 
    padding: 40px; 
    grid-column: 1 / -1; 
    color: #AAA8B1;
    font-size: 18px;
}

.influencer-thumbnail {
    position: relative;
    overflow: hidden;
	border-radius: 15px;
}

.influencer-thumbnail img {
    transition: all 0.5s ease;
}

.influencer-thumbnail:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

/* Responsive adjustments */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .influencer-title {
        font-size: 22px;
    }
    .influencer-excerpt {
        font-size: 15px;
    }
    .explore-title {
        font-size: 32px;
    }
    #influencer-search {
        font-size: 15px;
    }
    .category-tab {
        font-size: 15px;
    }
    .load-more-btn {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .explore-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-group {
        width: 100%;
    }
    
    .category-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
		margin-bottom: 25px;
    }
	
	.influencer-item{
		padding-left: 0;
		padding-right: 0;
	}
	.influencer-filter-shortcode{
		padding-left: 12px;
		padding-right: 12px;
	}
	.influencer-title{
		font-size: 20px;
		margin-bottom: 5px;
	}
	.influencer-excerpt{
		font-size: 14px;
	}
	.explore-title{
		font-size: 22px;
	}
	#influencer-search{
		font-size: 14px;
	}
	.category-tab{
		font-size: 14px;
		padding: 12px 22px;
	}
	.load-more-btn{
		font-size: 14px;
	}
	
}

