.topto-blog-main {
	background: #f5f5f5;
}

.topto-blog-page {
	width: 100%;
	padding: 64px 0 96px;
	background: #f5f5f5;
	color: #111111;
}

.topto-blog-page,
.topto-blog-page * {
	box-sizing: border-box;
}

.topto-blog-page__inner {
	width: min(calc(100% - 48px), 900px);
	margin-inline: auto;
}

.topto-blog-page__header {
	max-width: 620px;
	margin: 0 0 62px;
}

.topto-blog-page__title {
	margin: 0;
	color: #92268e;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
}

.topto-blog-page__divider {
	display: block;
	width: 52px;
	height: 2px;
	margin: 20px 0 18px;
	border-radius: 999px;
	background: #e84382;
}

.topto-blog-page__description {
	max-width: 590px;
	color: #111111;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.35;
}

.topto-blog-page__description p {
	margin: 0;
	color: inherit;
}

.topto-blog-page__description strong,
.topto-blog-page__description b {
	font-weight: 800;
}

.topto-blog-page__content {
	max-width: 590px;
	margin: -44px 0 62px;
	color: #111111;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.35;
}

.topto-blog-page__content > *:first-child {
	margin-top: 0;
}

.topto-blog-page__content > *:last-child {
	margin-bottom: 0;
}

.topto-blog-page__content p {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.topto-blog-page__content strong,
.topto-blog-page__content b {
	font-weight: 800;
}

.topto-blog-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
	align-items: stretch;
}

.topto-blog-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
}

.topto-blog-card__media {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 7px;
	background: #ffffff;
	text-decoration: none;
	aspect-ratio: 1.9 / 1;
}

.topto-blog-card__image,
.topto-blog-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.topto-blog-card__image {
	object-fit: cover;
	transition: transform 0.35s ease;
}

.topto-blog-card__media:hover .topto-blog-card__image,
.topto-blog-card__media:focus .topto-blog-card__image {
	transform: scale(1.035);
}

.topto-blog-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border: 1px solid rgba(146, 38, 142, 0.16);
	background: #ffffff;
	color: #92268e;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.topto-blog-card__title {
	margin: 18px 0 13px;
	color: #92268e;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.topto-blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.topto-blog-card__title a:hover,
.topto-blog-card__title a:focus {
	color: #e84382;
}

.topto-blog-card__excerpt {
	margin: 0;
	color: #111111;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.48;
}

.topto-blog-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 102px;
	margin-top: 30px;
	padding: 11px 20px 12px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(90deg, #b7259a 0%, #e84382 100%);
	color: #ffffff;
	text-decoration: none;
	transform: skew(8deg);
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.topto-blog-card__button span {
	display: block;
	color: inherit;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	transform: skew(-8deg);
	white-space: nowrap;
}

.topto-blog-card__button:hover,
.topto-blog-card__button:focus {
	background: #111111;
	color: #ffffff;
}

.topto-blog-card__button:focus-visible {
	outline: 2px solid #e84382;
	outline-offset: 4px;
}

.topto-blog-page .navigation.pagination {
	margin: 58px 0 0;
}

.topto-blog-page .nav-links,
.topto-blog-page ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.topto-blog-page .page-numbers li {
	margin: 0;
	padding: 0;
}

.topto-blog-page .nav-links .page-numbers,
.topto-blog-page ul.page-numbers a,
.topto-blog-page ul.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 4px;
	color: #92268e;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.topto-blog-page .nav-links .page-numbers.current,
.topto-blog-page .nav-links .page-numbers:hover,
.topto-blog-page .nav-links .page-numbers:focus,
.topto-blog-page ul.page-numbers .current,
.topto-blog-page ul.page-numbers a:hover,
.topto-blog-page ul.page-numbers a:focus {
	background: #92268e;
	color: #ffffff;
}

@media (max-width: 991px) {
	.topto-blog-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.topto-blog-page {
		padding: 48px 0 64px;
	}

	.topto-blog-page__inner {
		width: min(calc(100% - 36px), 900px);
	}

	.topto-blog-page__header {
		margin-bottom: 42px;
	}

	.topto-blog-page__title {
		font-size: 22px;
	}

	.topto-blog-page__description {
		font-size: 15px;
		line-height: 1.45;
	}

	.topto-blog-page__content {
		margin: -24px 0 42px;
		font-size: 15px;
		line-height: 1.45;
	}

	.topto-blog-page__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.topto-blog-card__title {
		font-size: 17px;
	}

	.topto-blog-card__excerpt {
		font-size: 13px;
	}
}
