.bloggers-list-box{margin-bottom:80px}

.bloggers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blogger-card-link {
    text-decoration: none; /* убираем подчеркивание */
    color: #000;           /* дефолтный цвет текста */
	margin-bottom:40px;
}

.blogger-card {
    width: 380px;
    background: #fff;
    border-radius: 35px;
    padding: 20px 20px 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.2s;
    position: relative; /* для соцсетей */
	height:100%;
}

.blogger-card:hover {
    transform: translateY(-3px);
}

.avatar {
    position: relative;
    margin-top: 17px; 
    margin-bottom: 26px; 
}

.avatar img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2px; /* меньше расстояние между иконками */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.social-icons img {
    transition: 0.2s;
}

.social-icons img.active {
    width: 32px;
    height: 32px;
}

.social-icons img.inactive {
    width: 24px;  /* чуть меньше */
    height: 24px;
    position:relative;
	top:5px;
}


.info-base{
	font-family: 'Rubik-SemiBold';
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
	font-weight:600;
	line-height:120%;
    margin-bottom: 18px;	
}

.info-pair {
	font-family: 'Nunito-Regular';
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
	font-weight:400;
	line-height:120%;
    margin-bottom: 15px;
}

.info-pair .left,
.info-pair .right {
    color: #333;
}

.location {
    font-family: 'Nunito-Regular';
    color: #484848;
    text-align: center;
    font-size: 20px;
	font-weight:400;
	line-height:120%;
    margin-bottom: 12px;
}

.categories {
	font-family: 'Nunito-Regular';
    font-size: 18px;
	font-weight:400;
	line-height:100%;
    text-align: center;
    color: #ABABAB;
    margin-bottom: 10px;
}

.categories span {
    margin: 0px 3px 10px 3px;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin: 10px 0px 00px 0px;

}

.stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats .label {
	font-family: 'Nunito-Regular';
    font-size: 18px;
	font-weight:400;
	line-height:100%;
    color: #484848;
    margin-top: 12px;
    margin-bottom: 12px;
}

.stats .value {
	font-family: 'Rubik-SemiBold';
    font-weight: 600;
    font-size: 24px;
	line-height:120%;	
}

.gender-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.gender-icon img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {



}


/* === Адаптив до 768px === */
@media (max-width: 768px) {

	.base_con_box.bloggers-list-box {
		margin: 40px 0 40px 0 !important;
		padding: 0 15px !important;
		box-sizing: border-box;
		width: 100%;
		overflow: hidden; /* фикс выезда */
	}

	.bloggers-list {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.blogger-card-link {
		display: block;
		width: 100%;
		margin-bottom:0px;
	}

	.blogger-card {
		width: 100%;
		padding: 18px;
		border-radius: 24px;
		margin-bottom: 20px;
		box-sizing: border-box;
	}

	.avatar img {
		width: 120px;
		height: 120px;
	}

	.info-base {
		font-size: 22px;
		margin-bottom: 14px;
	}

	.info-pair {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.location {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.categories {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.stats {
		gap: 50px;
		margin: 10px 0 18px 0;
	}

	.stats .value {
		font-size: 22px;
	}

	.stats .label {
		font-size: 16px;
	}

	.social-icons img.active {
		width: 28px;
		height: 28px;
	}

	.social-icons img.inactive {
		width: 22px;
		height: 22px;
		top: 4px;
	}
}


/* === Адаптив до 480px: основной мобильный вид === */
@media (max-width: 480px) {

	.blogger-card {
		padding: 16px 14px;
		border-radius: 20px;
	}

	.avatar {
		margin-top: 12px;
		margin-bottom: 20px;
	}


	.info-base {
		font-size: 20px;
		gap: 6px;
		margin-bottom: 12px;
	}

	.info-pair {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.location {
		font-size: 16px;
	}

	.categories {
		font-size: 14px;
	}

	.stats {
		gap: 30px;
		margin: 8px 0 16px 0;
	}

	.stats .value {
		font-size: 20px;
	}

	.stats .label {
		font-size: 14px;
	}

	.social-icons img.active {
		width: 26px;
		height: 26px;
	}

	.social-icons img.inactive {
		width: 20px;
		height: 20px;
		top: 3px;
	}
}


/* === Адаптив до 360px: минимальный комфорт === */
@media (max-width: 360px) {

	.blogger-card {
		padding: 14px 12px;
		border-radius: 18px;
	}

	.avatar img {
		width: 90px;
		height: 90px;
	}

	.info-base {
		font-size: 18px;
	}

	.info-pair {
		font-size: 15px;
	}

	.location {
		font-size: 15px;
	}

	.stats .value {
		font-size: 18px;
	}

	.stats .label {
		font-size: 13px;
	}
}
