

/* Start:/local/components/bitrix/menu/templates/personal/style.css?17810342161850*/
#personalMenuWrap {
	position: sticky;
	top: 0;
	-z-index: 100;

	display: flex;
	align-items: center;
	gap: 8px;

	padding: 10px 12px;

	-background: rgba(255,255,255,0.75);
	-backdrop-filter: blur(12px);

	-border-bottom: 1px solid #e2e8f0;
	border-radius: 16px;
	margin-bottom: 15px;
	
}

/* SCROLL AREA */
#personalMenu {
	display: flex;
	gap: 10px;
	flex: 1;

	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;

	scroll-snap-type: x proximity;

	scrollbar-width: none;
}
#personalMenu::-webkit-scrollbar {
	display: none;
}

/* PILLS */
.navItem {
	flex: 0 0 auto;

	padding: 10px 14px;
	border-radius: 999px;

	font-size: 14px;
	font-weight: 500;

	text-decoration: none;

	color: #334155;
	background: #f1f5f9;

	white-space: nowrap;

	transition: all .18s ease;
}

.navItem:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.navItem.is-active {
	background: #2f7d6b;
	color: #fff;
	box-shadow: 0 8px 24px rgba(47,125,107,0.25);
}

/* ARROWS — Stripe style overlay */
.navArrow {
	width: 36px;
	height: 36px;

	border-radius: 12px;
	border: 1px solid #e2e8f0;

	background: #fff;

	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;

	transition: .15s ease;

	user-select: none;
}

/* hover */
.navArrow:hover {
	background: #f8fafc;
}

/* hidden state (soft fade, NOT display:none) */
.navArrow.hidden {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.95);
}

/* MOBILE: НЕ убираем стрелки полностью */
@media (max-width: 768px) {

	.navArrow {
		width: 32px;
		height: 32px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(255,255,255,0.9);
		backdrop-filter: blur(8px);
	}

	.navArrowLeft {
		left: 6px;
	}

	.navArrowRight {
		right: 6px;
	}

	#personalMenuWrap {
		position: sticky;
	}
}
/* End */


/* Start:/local/components/bitrix/system.pagenavigation/templates/round/style.css?17788571243226*/
.prr-pagination {
	margin: 48px 0;
}

.prr-pagination__inner {
	display: flex;
	justify-content: center;
	width: 100%;
}

.prr-pagination__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.prr-pagination__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.prr-pagination__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #E2E8F0;
	border-radius: 14px;
	background: #FFFFFF;
	color: #334155;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease,
		transform .2s ease,
		box-shadow .2s ease;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.03),
		0 8px 24px rgba(15, 23, 42, 0.04);
}

.prr-pagination__link:hover {
	background: #F4F3FB;
	border-color: #D6D2F3;
	color: #5A50C8;
	transform: translateY(-1px);
	box-shadow:
		0 4px 14px rgba(90, 80, 200, 0.08),
		0 12px 28px rgba(15, 23, 42, 0.06);
}

.prr-pagination__link:focus-visible {
	outline: none;
	border-color: #5A50C8;
	box-shadow:
		0 0 0 4px rgba(90, 80, 200, 0.12);
}

.prr-pagination__item--active .prr-pagination__link {
	background: linear-gradient(
		135deg,
		#5A50C8 0%,
		#4B42AA 100%
	);
	border-color: #5A50C8;
	color: #FFFFFF;
	box-shadow:
		0 8px 22px rgba(90, 80, 200, 0.24);
	cursor: default;
}

.prr-pagination__item--active .prr-pagination__link:hover {
	transform: none;
}

.prr-pagination__item--disabled .prr-pagination__link {
	background: #F8FAFC;
	border-color: #E2E8F0;
	color: #94A3B8;
	box-shadow: none;
	cursor: default;
	pointer-events: none;
}

.prr-pagination__link--nav {
	width: 48px;
	min-width: 48px;
	padding: 0;
	gap: 0;
}

.prr-pagination__text {
	display: none;
}

.prr-pagination__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.prr-pagination__icon svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.2;
}

.prr-pagination__text {
	white-space: nowrap;
}

.prr-pagination__item--all {
	margin-left: 8px;
}

.prr-pagination__link--all {
	background: #EEF2FF;
	border-color: #D6D2F3;
	color: #5A50C8;
	font-weight: 700;
}

.prr-pagination__link--all:hover {
	background: #E9E7FA;
	border-color: #C9C3F0;
	color: #4B42AA;
}

@media (max-width: 768px) {

	.prr-pagination {
		margin: 36px 0;
	}

	.prr-pagination__list {
		gap: 8px;
		justify-content: center;
	}

	.prr-pagination__link {
		min-width: 42px;
		height: 42px;
		padding: 0 14px;
		border-radius: 12px;
		font-size: 14px;
	}

	.prr-pagination__text {
		display: none;
	}

	.prr-pagination__link--nav {
		width: 42px;
		min-width: 42px;
		padding: 0;
	}

	.prr-pagination__icon svg {
		width: 17px;
		height: 17px;
	}

	.prr-pagination__item--all {
		width: 100%;
		margin-top: 8px;
		margin-left: 0;
	}

	.prr-pagination__link--all {
		width: 100%;
	}
}

@media (max-width: 480px) {

	.prr-pagination__list {
		gap: 6px;
	}

	.prr-pagination__link {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		border-radius: 10px;
		font-size: 13px;
	}

	.prr-pagination__link--nav {
		width: 38px;
		min-width: 38px;
	}
}
/* End */


/* Start:/local/components/bitrix/news/templates/blog/bitrix/news.list/.default/style.css?17785006495749*/
/* =========================================
   BLOG WRAPPER
========================================= */

.profrr-blog-card * {
    box-sizing: border-box;
}

.profrr-blog {
    max-width: 1480px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* =========================================
   CARD
========================================= */

.profrr-blog-card {
    position: relative;

    display: flex;
    flex-direction: column;

    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* hover */

.profrr-blog-card:hover {
    transform: translateY(-2px);

    border-color: #D6DBF5;

    box-shadow:
        0 10px 30px rgba(90, 80, 200, 0.08);
}

/* =========================================
   FEATURED CARD
========================================= */

.profrr-blog-card.is-featured {
    grid-column: span 2;
    min-height: 560px;
}

.profrr-blog-card.is-featured .profrr-blog-image {
    height: 340px;
}

.profrr-blog-card.is-featured .profrr-blog-title {
    font-size: 28px;
    line-height: 1.25;
}

.profrr-blog-card.is-featured .profrr-blog-description {
    font-size: 16px;
}

/* =========================================
   IMAGE
========================================= */

.profrr-blog-image {
    position: relative;

    display: block;

    width: 100%;
    height: 240px;

    overflow: hidden;

    background: #F1F5F9;
}

.profrr-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.profrr-blog-card:hover .profrr-blog-image img {
    transform: scale(1.03);
}

/* =========================================
   CONTENT
========================================= */

.profrr-blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    padding: 24px;
}

/* =========================================
   META
========================================= */

.profrr-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;
}

.profrr-blog-date {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    background: #EEF2FF;
    border: 1px solid #D6D2F3;
    border-radius: 999px;

    color: #5A50C8;
    font-size: 13px;
    font-weight: 500;
}

/* =========================================
   TITLE
========================================= */

.profrr-blog-title {
    display: block;

    margin-bottom: 14px;

    color: #0F172A;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}

.profrr-blog-title:hover {
    color: #5A50C8;
}

/* =========================================
   DESCRIPTION
========================================= */

.profrr-blog-description {
    color: #334155;

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 22px;

    flex-grow: 1;
}

/* =========================================
   FOOTER
========================================= */

.profrr-blog-footer {
    margin-top: auto;
}

/* =========================================
   BUTTON
========================================= */

.profrr-blog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding:
        0 18px;

    background: #F4F3FB;
    border: 1px solid #D6D2F3;
    border-radius: 12px;

    color: #5A50C8;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.profrr-blog-link:hover {
    background: #E9E7FA;
    border-color: #C9C2F0;

    color: #4B42AA;
}

/* =========================================
   PAGINATION
========================================= */

.profrr-blog-pagination {
    margin-top: 40px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .profrr-blog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profrr-blog-card.is-featured {
        grid-column: span 2;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .profrr-blog {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .profrr-blog-card.is-featured {
        grid-column: span 1;
        min-height: auto;
    }

    .profrr-blog-card.is-featured .profrr-blog-image {
        height: 240px;
    }

    .profrr-blog-card.is-featured .profrr-blog-title {
        font-size: 22px;
    }

    .profrr-blog-image {
        height: 220px;
    }

    .profrr-blog-content {
        padding: 18px;
    }

    .profrr-blog-title {
        font-size: 20px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .profrr-blog-image {
        height: 200px;
    }

    .profrr-blog-title {
        font-size: 18px;
    }

    .profrr-blog-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .profrr-blog-link {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}
/* End */
/* /local/components/bitrix/menu/templates/personal/style.css?17810342161850 */
/* /local/components/bitrix/system.pagenavigation/templates/round/style.css?17788571243226 */
/* /local/components/bitrix/news/templates/blog/bitrix/news.list/.default/style.css?17785006495749 */
