.tt-blog {
	--blog-border: rgba(13, 19, 33, 0.14);
	background: #fbf8f1;
	color: var(--tt-navy);
}

.tt-blog-hero {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 30%, rgba(28, 50, 79, 0.35), transparent 43%),
		linear-gradient(126deg, #07101e, #09172a 52%, #06101f);
	color: #fff;
}

.tt-blog-hero__inner {
	position: relative;
	z-index: 2;
	padding-block: 28px 31px;
}

.tt-blog-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	min-height: 28px;
	font-size: 14px;
	font-weight: 600;
}

.tt-blog-breadcrumb span,
.tt-blog-breadcrumb strong {
	color: var(--tt-red);
}

.tt-blog-hero__content {
	width: min(680px, 100%);
	margin: 5px auto 0;
	text-align: center;
}

.tt-blog-hero__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.68);
	font-family: Consolas, monospace;
	font-size: 12px;
	letter-spacing: 2px;
	direction: ltr;
}

.tt-blog-hero__eyebrow i,
.tt-blog-side-title i {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tt-red);
}

.tt-blog-hero h1 {
	margin: 0;
	font-size: clamp(30px, 3vw, 47px);
	font-weight: 800;
	line-height: 1.3;
}

.tt-blog-hero__description {
	margin: 14px 0 20px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 15px;
	line-height: 1.9;
}

.tt-blog-search {
	display: flex;
	width: min(630px, 100%);
	height: 48px;
	margin-inline: auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	direction: rtl;
}

.tt-blog-search input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
}

.tt-blog-search input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.tt-blog-search button {
	position: relative;
	flex: 0 0 58px;
	border: 0;
	background: linear-gradient(135deg, #f42d3b, #dc2633);
	cursor: pointer;
}

.tt-blog-search button i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 17px;
	height: 17px;
	border: 2px solid #fff;
	border-radius: 50%;
	transform: translate(-55%, -55%);
}

.tt-blog-search button i::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: -4px;
	width: 7px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transform: rotate(45deg);
}

.tt-blog-hero__target {
	position: absolute;
	top: -122px;
	left: -80px;
	width: 320px;
	aspect-ratio: 1;
	border-radius: 50%;
}

.tt-blog-hero__rings,
.tt-blog-hero__rings::before,
.tt-blog-hero__rings::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: inherit;
	content: "";
}

.tt-blog-hero__rings::before {
	inset: 42px;
}

.tt-blog-hero__rings::after {
	inset: 86px;
}

.tt-blog-hero__core {
	position: absolute;
	inset: 132px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
}

.tt-blog-hero__core::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--tt-red);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 7px rgba(230, 57, 70, 0.15);
}

.tt-blog-hero__ring-mark {
	--tt-orbit-duration: 25s;
	--tt-orbit-delay: -2s;
	--tt-orbit-direction: 360deg;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	animation: tt-target-orbit var(--tt-orbit-duration) linear infinite;
	animation-delay: var(--tt-orbit-delay);
	will-change: transform;
}

.tt-blog-hero__ring-mark::before,
.tt-blog-hero__ring-mark::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
}

.tt-blog-hero__ring-mark::before {
	width: 13px;
	height: 13px;
	background: url("../icons/plus.svg") center / contain no-repeat;
	filter: drop-shadow(0 0 4px rgba(230, 57, 70, 0.28));
}

.tt-blog-hero__ring-mark::after {
	display: none;
}

.tt-blog-hero__ring-mark--middle {
	--tt-orbit-duration: 20s;
	--tt-orbit-delay: -7s;
	--tt-orbit-direction: -360deg;
	width: 73.75%;
}

.tt-blog-hero__ring-mark--inner {
	--tt-orbit-duration: 15s;
	--tt-orbit-delay: -5.7s;
	width: 46.25%;
}

.tt-blog-plus {
	position: absolute;
	z-index: 3;
	width: 17px;
	height: 17px;
	background: url("../icons/plus.svg") center / contain no-repeat;
}

.tt-blog-plus::before,
.tt-blog-plus::after {
	display: none;
}

.tt-blog-plus--hero-start {
	bottom: 17px;
	left: 16px;
}

.tt-blog-plus--hero-end {
	right: 17px;
	bottom: 17px;
}

.tt-blog-content {
	padding: 18px 0 70px;
}

.tt-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 34px;
	align-items: start;
	direction: rtl;
}

.tt-blog-main {
	min-width: 0;
}

.tt-blog-category-tabs {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	margin-bottom: 16px;
	overflow-x: auto;
	scrollbar-width: none;
}

.tt-blog-category-tabs::-webkit-scrollbar {
	display: none;
}

.tt-blog-category-tabs a {
	flex: 0 0 auto;
	min-width: 86px;
	padding: 9px 17px;
	border: 1px solid var(--blog-border);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.tt-blog-category-tabs a:hover,
.tt-blog-category-tabs a:focus-visible {
	border-color: var(--tt-red);
	color: var(--tt-red);
}

.tt-blog-category-tabs a.is-active {
	border-color: var(--tt-red);
	background: var(--tt-red);
	color: #fff;
}

.tt-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	transition: opacity 180ms ease;
}

.tt-blog-grid.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.tt-blog-card {
	display: flex;
	min-width: 0;
	min-height: 398px;
	flex-direction: column;
	padding: 10px;
	border: 1px solid rgba(13, 19, 33, 0.12);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 5px 18px rgba(13, 19, 33, 0.05);
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.tt-blog-card:hover,
.tt-blog-card:focus-within {
	border-color: var(--tt-red);
	box-shadow: 0 8px 24px rgba(230, 57, 70, 0.1);
	transform: translateY(-2px);
}

.tt-blog-card__image {
	position: relative;
	height: 196px;
	overflow: hidden;
	border-radius: 7px;
	background: #0b1728;
}

.tt-blog-card__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.tt-blog-card:hover .tt-blog-card__image > img {
	transform: scale(1.025);
}

.tt-blog-card__placeholder {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 50%, transparent 0 12%, rgba(230, 57, 70, 0.7) 12.5% 14%, transparent 14.5% 25%, rgba(255, 255, 255, 0.14) 25.5% 27%, transparent 27.5%),
		linear-gradient(145deg, #182943, #07111f);
}

.tt-blog-card__corner {
	position: absolute;
	z-index: 2;
	width: 17px;
	height: 17px;
	border: 0;
	background: url("../icons/corner-frame.svg") center / contain no-repeat;
	pointer-events: none;
}

.tt-blog-card__corner--top-start {
	top: 9px;
	right: 9px;
	transform: scaleX(-1);
}

.tt-blog-card__corner--top-end {
	top: 9px;
	left: 9px;
	transform: none;
}

.tt-blog-card__corner--bottom-start {
	right: 9px;
	bottom: 9px;
	transform: rotate(180deg);
}

.tt-blog-card__corner--bottom-end {
	bottom: 9px;
	left: 9px;
	transform: scaleY(-1);
}

.tt-blog-card__category {
	position: absolute;
	right: 30px;
	bottom: 10px;
	z-index: 3;
	padding: 7px 14px 6px;
	border-radius: 5px;
	background: var(--tt-red);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 5px 12px rgba(230, 57, 70, 0.28);
}

.tt-blog-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 10px 4px 1px;
}

.tt-blog-card h2 {
	display: -webkit-box;
	height: 3.1em;
	max-height: 3.1em;
	min-height: 3.1em;
	margin: 0;
	overflow: hidden;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.55;
	word-break: break-word;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tt-blog-card__body > p {
	display: -webkit-box;
	height: 3.7em;
	max-height: 3.7em;
	min-height: 3.7em;
	margin: 5px 0 8px;
	overflow: hidden;
	color: #737373;
	font-size: 12.5px;
	line-height: 1.85;
	word-break: break-word;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tt-blog-card__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid rgba(13, 19, 33, 0.1);
}

.tt-blog-card__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	align-items: center;
	gap: 0;
	color: #777;
	font-size: 10.5px;
}

.tt-blog-card__meta > span,
.tt-blog-card__meta time {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 0;
	padding-inline: 10px;
	white-space: nowrap;
}

.tt-blog-card__meta time {
	padding-left: 0;
}

.tt-blog-card__date {
	order: 3;
}

.tt-blog-card__reading {
	order: 2;
	border-left: 1px solid rgba(13, 19, 33, 0.12);
}

.tt-blog-card__views {
	order: 1;
	padding-right: 0;
	border-left: 1px solid rgba(13, 19, 33, 0.12);
}

.tt-blog-card__meta img,
.tt-blog-card__meta .tt-blog-card__meta-icon {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	opacity: 1;
	filter: brightness(0) saturate(100%) invert(43%) sepia(8%) saturate(430%) hue-rotate(177deg) brightness(92%) contrast(89%);
}

.tt-blog-card__meta b {
	overflow: hidden;
	font-weight: 400;
	text-overflow: ellipsis;
}

.tt-blog-card__reading-short {
	display: none;
}

.tt-blog-card__more {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 7px;
	margin-right: 10px;
	padding-right: 12px;
	border-right: 1px solid rgba(13, 19, 33, 0.12);
	color: var(--tt-red);
	font-size: 12px;
	font-weight: 600;
}

.tt-blog-card__more span {
	display: inline-flex;
	font-size: 16px;
}

.tt-blog-empty {
	grid-column: 1 / -1;
	padding: 80px 20px;
	border: 1px dashed rgba(13, 19, 33, 0.2);
	border-radius: 12px;
	text-align: center;
}

.tt-blog-empty strong {
	font-size: 20px;
}

.tt-blog-empty p {
	margin-bottom: 0;
	color: #777;
}

.tt-blog-sidebar-shell {
	position: sticky;
	z-index: 5;
	top: 82px;
	align-self: start;
	min-width: 0;
}

.tt-blog-sidebar {
	position: static;
	display: grid;
	gap: 13px;
}

.tt-blog-drawer-toggle,
.tt-blog-drawer-overlay {
	display: none;
}

.tt-blog-side-card {
	padding: 14px;
	border: 1px solid rgba(13, 19, 33, 0.14);
	border-top: 2px solid var(--tt-red);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 5px 17px rgba(13, 19, 33, 0.05);
}

.tt-blog-side-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	color: inherit;
	font-size: 15px;
	font-weight: 700;
}

.tt-blog-side-title i {
	width: 7px;
	height: 7px;
}

.tt-blog-side-card ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tt-blog-side-card li + li {
	border-top: 1px dotted rgba(13, 19, 33, 0.16);
}

.tt-blog-side-card li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 2px;
	font-size: 12px;
}

.tt-blog-side-card li a span::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-left: 8px;
	border-radius: 50%;
	background: transparent;
}

.tt-blog-side-card li a:hover,
.tt-blog-side-card li a.is-active {
	color: var(--tt-red);
}

.tt-blog-side-card li a.is-active span::before {
	background: var(--tt-red);
}

.tt-blog-side-card li small {
	color: #777;
}

.tt-blog-popular-list {
	display: grid;
}

.tt-blog-popular {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 9px;
	align-items: center;
	padding-block: 7px;
}

.tt-blog-popular + .tt-blog-popular {
	border-top: 1px solid rgba(13, 19, 33, 0.1);
}

.tt-blog-popular__image {
	height: 53px;
	overflow: hidden;
	border-radius: 5px;
	background: #0b1728;
}

.tt-blog-popular__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-blog-popular__image > i {
	display: block;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, var(--tt-red) 0 8%, transparent 9% 25%, rgba(255, 255, 255, 0.15) 26% 28%, transparent 29%), #0b1728;
}

.tt-blog-popular strong {
	display: -webkit-box;
	overflow: hidden;
	font-size: 11.5px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tt-blog-popular small {
	display: block;
	margin-top: 3px;
	color: #999;
	font-size: 9px;
}

.tt-blog-side-card--dates form,
.tt-blog-side-card--newsletter form {
	display: grid;
	gap: 9px;
}

.tt-blog-side-card--dates {
	display: none;
}

.tt-blog-side-card--dates select,
.tt-blog-side-card--newsletter input {
	width: 100%;
	height: 39px;
	padding-inline: 10px;
	border: 1px solid rgba(13, 19, 33, 0.25);
	border-radius: 6px;
	outline: 0;
	background: #fff;
	color: var(--tt-navy);
	font-size: 12px;
}

.tt-blog-side-card--dates button,
.tt-blog-side-card--newsletter button {
	height: 39px;
	border: 0;
	border-radius: 6px;
	background: var(--tt-red);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.tt-blog-side-card--newsletter p {
	margin: -2px 0 10px;
	color: #777;
	font-size: 10.5px;
	line-height: 1.8;
}

.tt-blog-side-card--newsletter small {
	display: table;
	margin: 9px auto -4px;
	padding: 2px 10px;
	border: 1px solid rgba(13, 19, 33, 0.17);
	border-radius: 4px;
	color: #777;
	font-family: monospace;
	font-size: 9px;
	direction: ltr;
}

.tt-blog-promo {
	display: block;
	padding: 18px 16px 16px;
	border-radius: 10px;
	background:
		radial-gradient(circle at 50% 60%, rgba(40, 70, 111, 0.45), transparent 35%),
		linear-gradient(145deg, #0b1729, #07111f);
	color: #fff;
	text-align: center;
	box-shadow: 0 7px 18px rgba(13, 19, 33, 0.18);
}

.tt-blog-promo .tt-blog-side-title {
	justify-content: center;
}

.tt-blog-promo p {
	margin: 8px 0 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.85;
}

.tt-blog-promo a {
	display: grid;
	min-height: 42px;
	place-items: center;
	border-radius: 6px;
	background: var(--tt-red);
	font-weight: 700;
}

.tt-blog-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
	direction: rtl;
}

.tt-blog-pagination__line {
	position: relative;
	flex: 1 1 80px;
	height: 20px;
}

.tt-blog-pagination__line::before,
.tt-blog-pagination__line::after,
.tt-blog-pagination__line i {
	content: "";
	position: absolute;
}

.tt-blog-pagination__line::before {
	top: 9px;
	inset-inline: 0;
	height: 1px;
	background: rgba(13, 19, 33, 0.15);
}

.tt-blog-pagination__line::after {
	top: 4px;
	left: 0;
	width: 11px;
	height: 11px;
	background: url("../icons/plus.svg") center / contain no-repeat;
}

.tt-blog-pagination__number,
.tt-blog-pagination__direction {
	display: grid;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(13, 19, 33, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.tt-blog-pagination__number {
	width: 42px;
}

.tt-blog-pagination__direction {
	min-width: 53px;
	padding-inline: 10px;
}

.tt-blog-pagination__number.is-current {
	border-color: var(--tt-red);
	background: var(--tt-red);
	color: #fff;
}

.tt-blog-pagination__direction.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

body.tt-blog-drawer-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.tt-blog-layout {
		grid-template-columns: minmax(0, 1fr) 270px;
		gap: 22px;
	}

	.tt-blog-card__meta {
		gap: 7px;
		font-size: 9.5px;
	}
}

@media (max-width: 840px) {
	.tt-blog-content {
		padding-top: 20px;
	}

	.tt-blog-layout {
		display: block;
	}

	.tt-blog-sidebar-shell {
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
		width: 0;
		height: 100dvh;
		max-height: 100dvh;
	}

	.tt-blog-drawer-toggle {
		position: absolute;
		z-index: 3;
		top: 60%;
		left: 0;
		display: flex;
		width: 40px;
		height: 132px;
		align-items: center;
		justify-content: center;
		padding: 8px 4px;
		border: 0;
		border-radius: 0 10px 10px 0;
		background: var(--tt-red);
		color: #fff;
		box-shadow: 4px 5px 15px rgba(13, 19, 33, 0.2);
		cursor: pointer;
		transition: left 260ms ease;
	}

	.tt-blog-drawer-toggle span {
		writing-mode: vertical-rl;
		transform: rotate(180deg);
		font-size: 13px;
		font-weight: 700;
	}

	.tt-blog-drawer-toggle .tt-blog-drawer-arrow {
		position: absolute;
		top: 9px;
		width: 18px;
		height: 18px;
		filter: brightness(0) saturate(100%) invert(1);
		transform: rotate(180deg);
		transition: transform 220ms ease;
	}

	.tt-blog-drawer-overlay {
		position: fixed;
		z-index: 1;
		inset: 0;
		display: block;
		width: 100vw;
		height: 100dvh;
		border: 0;
		background: rgba(4, 11, 20, 0.54);
		opacity: 0;
		pointer-events: none;
		transition: opacity 220ms ease;
	}

	.tt-blog-sidebar {
		position: fixed;
		z-index: 2;
		top: 0;
		left: 0;
		width: min(84vw, 330px);
		height: 100dvh;
		max-height: 100dvh;
		padding: 18px 16px 34px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #fbfaf7;
		box-shadow: 10px 0 28px rgba(13, 19, 33, 0.2);
		transform: translateX(-101%);
		transition: transform 260ms ease;
	}

	.tt-blog-sidebar-shell.is-open .tt-blog-sidebar {
		transform: translateX(0);
	}

	.tt-blog-sidebar-shell.is-open .tt-blog-drawer-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.tt-blog-sidebar-shell.is-open .tt-blog-drawer-toggle {
		left: min(84vw, 330px);
	}

	.tt-blog-sidebar-shell.is-open .tt-blog-drawer-arrow {
		transform: rotate(0);
	}

	.tt-blog-side-card,
	.tt-blog-promo {
		display: block;
	}
}

@media (max-width: 767px) {
	.tt-blog-hero {
		min-height: 315px;
	}

	.tt-blog-hero__inner {
		padding-block: 21px 28px;
	}

	.tt-blog-breadcrumb {
		justify-content: flex-start;
		font-size: 11px;
	}

	.tt-blog-hero__content {
		margin-top: 24px;
	}

	.tt-blog-hero h1 {
		font-size: clamp(25px, 7.4vw, 34px);
	}

	.tt-blog-hero__description {
		width: min(520px, 94%);
		margin: 12px auto 20px;
		font-size: 12.5px;
	}

	.tt-blog-search {
		height: 44px;
	}

	.tt-blog-search input {
		padding-inline: 14px;
		font-size: 12px;
	}

	.tt-blog-search button {
		flex-basis: 52px;
	}

	.tt-blog-hero__target {
		top: -100px;
		left: -120px;
		width: 260px;
		opacity: 0.7;
	}

	.tt-blog-category-tabs {
		margin-bottom: 14px;
	}

	.tt-blog-category-tabs a {
		min-width: 70px;
		padding: 8px 12px;
		font-size: 11px;
	}

	.tt-blog-grid {
		gap: 12px;
	}

	.tt-blog-card {
		min-height: 0;
		padding: 7px;
		border-radius: 9px;
	}

	.tt-blog-card__image {
		height: clamp(118px, 27vw, 205px);
	}

	.tt-blog-card__category {
		right: 9px;
		bottom: 8px;
		padding: 5px 9px 4px;
		font-size: 9.5px;
	}

	.tt-blog-card h2 {
		height: 3.3em;
		max-height: 3.3em;
		min-height: 3.3em;
		font-size: clamp(11.5px, 3vw, 15px);
		line-height: 1.65;
	}

	.tt-blog-card__body > p {
		height: 3.8em;
		max-height: 3.8em;
		min-height: 3.8em;
		margin-top: 3px;
		font-size: clamp(9px, 2.2vw, 11.5px);
		line-height: 1.9;
	}

	.tt-blog-card__meta {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		gap: 0;
		font-size: clamp(7.5px, 1.65vw, 9.5px);
	}

	.tt-blog-card__footer {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.tt-blog-card__more {
		align-self: stretch;
		justify-content: flex-end;
		width: 100%;
		margin-right: 0;
		padding-top: 7px;
		padding-right: 0;
		border-top: 1px solid rgba(13, 19, 33, 0.12);
		border-right: 0;
	}

	.tt-blog-card__meta > span,
	.tt-blog-card__meta time {
		gap: 3px;
		padding-inline: clamp(4px, 1vw, 8px);
	}

	.tt-blog-card__meta time {
		padding-left: 0;
	}

	.tt-blog-card__views {
		order: 3;
		padding-right: clamp(4px, 1vw, 8px);
		padding-left: 0;
		border-left: 0;
	}

	.tt-blog-card__reading {
		order: 2;
		border-left: 1px solid rgba(13, 19, 33, 0.12);
	}

	.tt-blog-card__date {
		order: 1;
		padding-right: 0;
		padding-left: clamp(4px, 1vw, 8px);
		border-left: 1px solid rgba(13, 19, 33, 0.12);
	}

	.tt-blog-card__meta img,
	.tt-blog-card__meta .tt-blog-card__meta-icon {
		width: 11px;
		height: 11px;
		flex-basis: 11px;
	}

	.tt-blog-card__more {
		gap: 4px;
		font-size: 9.5px;
	}

	.tt-blog-pagination {
		gap: 7px;
		margin-top: 24px;
	}

	.tt-blog-pagination__number {
		width: 36px;
	}

	.tt-blog-pagination__number,
	.tt-blog-pagination__direction {
		height: 36px;
		font-size: 10px;
	}

	.tt-blog-pagination__direction {
		min-width: 47px;
		padding-inline: 8px;
	}
}

@media (max-width: 420px) {
	.tt-blog-grid {
		gap: 8px;
	}

	.tt-blog-card {
		padding: 5px;
	}

	.tt-blog-card__body {
		padding-inline: 2px;
	}

	.tt-blog-card__reading b {
		display: inline-flex;
		gap: 2px;
	}

	.tt-blog-card__reading-full {
		display: none;
	}

	.tt-blog-card__reading-short {
		display: inline;
	}

	.tt-blog-pagination__line {
		display: none;
	}
}
