
.blogger_fio{padding-right: 200px}

.profile {
	border-radius: 10px;
	padding: 20px;
	text-align: left;
}

/* --- Верхняя часть: фото + текст справа --- */
.profile-top {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.profile_avatar {
	width: 416px;
	height: 434px;
	border-radius: 30px;
	background: #D9D9D9;
	flex-shrink: 0;
}

.profile_avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}


.profile-info {
	flex: 1;
}

/* Имя и бейдж на одной линии */
.profile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.profile-header h1 {
	margin: 0;
	font-size: 60px;
	font-family: 'Rubik-Bold';
	font-weight: 700;
}

.profile-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}


.badge {
	font-family: 'Rubik-SemiBold';
	color: #fff;
	background-color: #B0005B;
	border-radius: 6px;
	padding: 15px 25px;
	font-size: 18px;
	line-height: 24px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
	font-weight:600;
}

.badge:hover {
	background-color: #ff66a3;
		
}


.description {
	font-family: 'Nunito-Regular';
	color:#484848;
	font-size: 24px;
	line-height: 120%;
	font-weight:400;
	margin-bottom: 10px;
}

.location {
	font-family: 'Nunito-Regular';
	font-size: 24px;
	line-height: 120%;
	font-weight:400;
	color: #909090;
	margin-bottom: 5px;
}

.stats {
	font-size: 12px;
	color: #999;
	margin-bottom: 20px;
}

/* --- Tabs и иконки ниже --- */
/* Контейнер табов с серой линией */
/* Контейнер — ширина по содержимому, но с серой линией */
.social-tabs {
	display: inline-flex; /* НЕ растягиваем на всю ширину */
	gap: 0;
	position: relative;
	padding-bottom: 4px; /* место под линию */
}

/* серая линия под всеми табами */
.social-tabs::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: #F7F7F7;
	border-radius: 2px;
	z-index: 0;
}

/* Сами табы — ширина по тексту */
.social-tab {
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	font-family: 'Inter-Regular';
	font-size: 24px;
	line-height: 24px;
	font-weight: 700;
	color: #70757A; /* текст остаётся серым */
	padding: 10px 0px; /* регулирует ширину вкладки */
	position: relative;
	z-index: 2; /* над серой линией */
	transition: color 0.2s;
}

/* Ховер оставляем для видимости */
.social-tab:hover {
	color: #000;
}

/* Активный таб не меняет цвет текста */
.social-tab.active {
	color: #000;
}

/* Фиолетовая полоса поверх серой линии */
.social-tab.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px; /* перекрывает серую линию */
	height: 4px;
	background: #9B0C5B;
	border-radius: 2px;
	z-index: 1;
}


/* Иконка внутри таба — маленький кружок */
.social-tab .social-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: white;
	flex-shrink: 0;

}

.blogger-favorite-icon{}

.tab-content {
	display: none;
	min-height: 100px;
}

.tab-content.active {
	display: block;
}

.social-tab.disabled {
	cursor: default;
	color: #aaa;
	background: transparent;
}

.social-icon.disabled {
	background: #ccc !important;
	color: #666 !important;
}


.social-links .social-btn {
	font-family: 'Nunito-Regular';
	display: inline-flex;
	align-items: center;
	padding: 5px 15px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 20px;
	text-decoration: none;
	color: #212121;
	font-size: 16px;
	line-height:120%;
	font-weight:400;
	transition: background 0.2s;
}

.social-links .social-btn:hover {
	background: #f0f0f0;
}

.social-links .social-btn img.social-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
	margin-right:5px;
}

.blogger-ads-tab-content-stats h2{
	
	font-family: 'Rubik-SemiBold';
	margin-bottom:20px;
	color: #212121;
}

.blogger-ads-tab-content-ads h2{
	
	font-family: 'Rubik-SemiBold';
	margin-bottom:20px;
	color: #212121;
}


@media (max-width: 768px) {
	
	.profile {
		padding: 0px;
	}	

	.blogger_fio{padding-right: 0px}

	.profile-name h1{
		
		font-size:25px
	}

	.profile-top {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.profile_avatar {
		width: 100%;
		max-width: 350px;
		height: auto;
		border-radius: 20px;
	}

	.profile_avatar img {
		border-radius: 20px;
		height: auto;
	}

	.profile-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.profile-header h1 {
		font-size: 32px;
		line-height: 1.1;
	}

	.badge {
		font-size: 14px;
		padding: 10px 20px;
	}

	.description {
		font-size: 18px;
	}

	.location {
		font-size: 18px;
	}


	.social-links .social-btn {
		font-size: 14px;
		padding: 4px 12px;
	}

	.social-tabs {
		overflow-x: auto;
		padding-bottom: 6px;
	}

	.social-tab {
		font-size: 20px;
		padding: 8px 0;
		white-space: nowrap;
	}

	.social-tab .social-icon {
		width: 22px;
		height: 22px;
	}
}
