@font-face {
    font-family: "Onest";
    src: url("../webfonts/Onest-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root{
  --container: 1170px;
  --gutter: 15px;
  --gap: 30px;
  --text: #000000;
  --text2: #ffffff;

  --header-text: #1f2940;
  --header-muted: #7e8aa8;
  --header-accent: #4d6bff;
  --header-border: rgba(127, 145, 190, 0.20);
  --header-glass: rgba(255, 255, 255, 0.82);
  --submenu-shadow: 0 20px 50px rgba(52, 78, 126, 0.16);
  
  --sal-duration: 0.65s;
  --sal-delay: 100ms;
  --sal-easing: cubic-bezier(.215, .61, .355, 1); /* это ease-out-cubic */ 
}

*{ 
	box-sizing: border-box; 
}

html, body{ 
	min-height: 100%;
	/*
	overflow-x: hidden;
	*/
}

body {
  margin: 0;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
  position: relative;
  isolation: isolate;
	min-height: 100vh;
}

/*
body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(360px, 48vh, 640px);
  background: url("../img/bg1.webp") center top / cover no-repeat;
  pointer-events: none;
  z-index: -1;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 62%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 62%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0) 100%
  );
}
*/

#page.site {
	/*
  min-height: 100vh;
  display: flex;
  flex-direction: column;
	*/
}

#primary.site-main {
	/*
  flex: 1 0 auto;
	*/
	padding-top:70px;
}

body main {
	padding-top:70px !important;	
}

.site-footer {
  margin-top: auto;
}

.container {
    width: min(var(--container), 100%);
    margin-inline: auto;
    padding-inline: var(--gutter);
    position: relative;
}

.layout {
	display: flex;
    align-items: stretch;
    gap: var(--gap);
}

.site-header {
	position: fixed;
	z-index: 80;
	width: 100%;
}

/*
body.admin-bar {
  --wp-admin-offset: 32px;
}
*/

.head {
	position: relative;
	top: auto;
	z-index: 1;	
	
	background: var(--header-glass);
	color: var(--header-text);
	/*
	border-bottom: 1px solid var(--header-border);
	*/
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(95, 121, 168, 0.18);
}

.head .layout {
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	padding-top: 14px;
	padding-bottom: 14px;
}


.header-burger,
.header-mobile-panel__head,
.header-mobile-close,
.header-mobile-overlay {
	display: none;
}

.header-mobile-panel {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	gap: 28px;
	min-width: 0;
}

.header-mobile-panel .menu {
	min-width: 0;
}

body.menu-open {
	overflow: hidden;
}


.col {
}

.logo {
  flex: 0 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 42px;
  width: auto;
}



.menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.menu nav > ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu nav > ul > li {
  position: relative;
}

.menu nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--header-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.menu nav > ul > li.has > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--header-muted);
  border-bottom: 1.5px solid var(--header-muted);
  transform: rotate(45deg) translateY(-1px);
  transition: 0.2s ease;
}

.menu nav > ul > li:hover > a {
  color: #ff430c;
}

.menu nav > ul > li:hover > a::after {
  border-color: #ff430c;
  transform: rotate(225deg) translateY(-1px);
}



.menu nav > ul > li > ul {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  margin: 0;
  padding: 14px;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(140, 157, 196, 0.18);
  border-radius: 18px;
  box-shadow: var(--submenu-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
}

.menu nav > ul > li:hover > ul,
.menu nav > ul > li.is-open > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu nav > ul > li > ul li + li {
  margin-top: 4px;
}

.menu nav > ul > li > ul a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #33415f;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  transition: 0.2s ease;
}

.menu nav > ul > li > ul a:hover {
  background: #f1f3ff;
  color: #ff430c;
}




.head-search {
  flex: 0 0 250px;
}

.search-form {
  position: relative;
}

.search-form::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid #9aa7c3;
    border-radius: 50%;
    transform: translateY(-58%);
    pointer-events: none;
}

.search-form::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 64%;
    width: 5px;
    height: 2px;
    background: #9aa7c3;
    transform: rotate(45deg);
    pointer-events: none;
}

.search-form input {
  width: 100%;
  height: 30px;
  padding: 0 16px 0 38px;
  border: none;
  border-radius: 6px;
  background: rgb(232 231 243);
  color: #22304d;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: 0.2s ease;
}

.search-form input::placeholder {
  color: #9ca8c1;
}

/*
.search-form input:focus {
  border-color: rgba(77, 107, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(77, 107, 255, 0.08);
}
*/



.hero-intro {
	position: relative;
	padding-top: 82px;
	padding-bottom: 42px;
	z-index: 1;
}

.hero-intro__wrap {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hero-intro__title {
	margin: 0;
    font-size: 36px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #16233d;
}

.hero-intro__title span {
	color: #ff430c;
}

.hero-intro__subtitle {
    margin-top: 14px;
    font-size: 31px;
    line-height: 1.28;
    font-weight: 500;
    color: #4f5f84;
}




.hero-sections {
	position: relative;
	padding-top: 18px;
	padding-bottom: 34px;
	z-index: 1;
}

.hero-sections .layout {
	gap: 18px;
}

.hero-sections__main {
	flex-wrap: wrap;
	justify-content: center;
}

.hero-card {
	flex: 1 1 calc(20% - 15px);
	min-width: 190px;
}

.hero-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 186px;
	padding: 22px 16px 18px;
	border-radius: 12px;
	text-decoration: none;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid rgba(176, 190, 224, 0.22);
	box-shadow: 0 14px 34px rgba(102, 124, 173, 0.10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(82, 109, 166, 0.16);
}

.hero-card__icon {
	width: 80px;
	height: 75px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.hero-card__icon img {
	display: block;
	width: 80px;
	height: 75px;
	object-fit: contain;
}

.hero-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-card__title {
	font-size: 18px;
	line-height: 1.18;
	font-weight: 800;
	color: #1d2740;
	letter-spacing: -0.02em;
}

.hero-card__subtitle {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 500;
	color: #6d7896;
}

.hero-card--vibe .hero-card__link {
	align-items: flex-start;
	justify-content: flex-end;
	text-align: left;
	padding: 22px 18px 18px;
	background:
		linear-gradient(180deg, rgba(14, 17, 48, 0.08) 0%, rgba(13, 10, 42, 0.36) 100%),
		url("../img/menu_bg1.webp") center center / cover no-repeat;
	border-color: rgba(130, 136, 255, 0.18);
	box-shadow: 0 16px 38px rgba(62, 56, 158, 0.24);
}

.hero-card--vibe .hero-card__content {
	align-items: flex-start;
}

.hero-card--vibe .hero-card__title {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.12;
	font-weight: 800;
	max-width: 120px;
}

.hero-card--vibe .hero-card__subtitle {
	color: rgba(255, 255, 255, 0.82);
	margin-top: 6px;
	font-size: 13px;
	font-weight: 500;
}

.hero-card--guides .hero-card__link {
	background: #d0f0e9;
}

.hero-card--prompts .hero-card__link {
	background: #eedef6;
}

.hero-card--tools .hero-card__link {
	background: #fae9de;
}

.hero-card--news .hero-card__link {
	background: #c7e0fd;
}

.hero-sections__chips {
	margin-top: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.hero-chip {
	flex: 1 1 calc(16.666% - 15px);
	min-width: 150px;
}

.hero-chip a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 10px 16px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 17px;
	line-height: 1.2;
	/*
	font-weight: 600;
	*/
	color: #34415f;
	background: rgb(231 231 231);
	/*
	border: 1px solid rgba(170, 184, 217, 0.22);
	*/
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hero-chip a:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(90, 117, 170, 0.12);
	color: #1f2944;
}

.hero-chip a::before {
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 4px;
	flex: 0 0 auto;
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.7);
}

.hero-chip--code a::before {
	background: linear-gradient(180deg, #5ea3ff 0%, #387dff 100%);
}

.hero-chip--text a::before {
	background: linear-gradient(180deg, #a06cff 0%, #7b49f8 100%);
}

.hero-chip--image a::before {
	background: linear-gradient(180deg, #60c9a5 0%, #39ad84 100%);
}

.hero-chip--video a::before {
	background: linear-gradient(180deg, #f0c76a 0%, #d8a53d 100%);
}

.hero-chip--biz a::before {
	background: linear-gradient(180deg, #ff8f7c 0%, #ef6a52 100%);
}

.hero-chip--start a::before {
	background: linear-gradient(180deg, #7aa8ff 0%, #5578ff 100%);
}







.latest-news {
	position: relative;
	padding-top: 34px;
	padding-bottom: 34px;
	z-index: 1;
}

.latest-news__head {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
}

.latest-news__title-col,
.latest-news__action-col {
	flex: 0 0 auto;
}

.latest-news__title {
	margin: 0;
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.latest-news__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgb(231 231 231);
	/*
	border: 1px solid rgba(171, 186, 221, 0.24);
	*/
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #242424;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: 0.2s ease;
}

.latest-news__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.latest-news__grid {
	flex-wrap: wrap;
	gap: 18px;
}

.news-card {
	flex: 1 1 calc(25% - 14px);
	min-width: 250px;
}

.news-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.news-card__image {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1.72 / 1;
	background: #dfe8f7;
	box-shadow: 0 12px 26px rgba(102, 124, 173, 0.10);
}

.news-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__body {
	padding-top: 14px;
}

.news-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.28;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #1d2740;
	transition: color 0.2s ease;
}

.news-card__link:hover .news-card__title {
	color: #ff430c;
}

.news-card__meta {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	color: #8a96b2;
}

.news-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--news-tag-bg, #eef3ff);
    color: var(--news-tag-color, #5f74b7);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 12px;
}

.news-card__tag--models {
	background: #eee7ff;
	color: #6d52b9;
}

.news-card__tag--tools {
	background: #dff4ee;
	color: #2b8c70;
}

.news-card__tag--practice {
	background: #e9f2ff;
	color: #4b74c9;
}

.news-card__tag--market {
	background: #fff0e5;
	color: #c76d3a;
}

.news-card__tag--rules {
	background: #ffe8eb;
	color: #bf5565;
}






.popular-tools {
	position: relative;
	padding-top: 34px;
	padding-bottom: 38px;
	z-index: 1;
	background-color: #f1f1f1;
}

.popular-tools__head {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
}

.popular-tools__title-col,
.popular-tools__action-col {
	flex: 0 0 auto;
}

.popular-tools__title {
	margin: 0;
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.popular-tools__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(171, 186, 221, 0.24);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #5f77b8;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: 0.2s ease;
}

.popular-tools__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.popular-tools__slider {
	position: relative;
	margin: 0 -9px;
}

.popular-tools__slider .tool-card {
	padding: 0 9px;
}

.tool-card__link {
	display: block;
	min-height: 100%;
	padding: 20px 18px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(170, 184, 217, 0.22);
    box-shadow: 0 4px 12px rgba(96, 120, 167, 0.08);
	text-decoration: none;
	color: inherit;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 6px rgba(96, 120, 167, 0.12);
}

.tool-card__top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.tool-card__icon {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	font-weight: 800;
	color: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.tool-card__icon--chatgpt {
	background: linear-gradient(180deg, #3db1a7 0%, #23958c 100%);
}

.tool-card__icon--cursor {
	background: linear-gradient(180deg, #3769c9 0%, #2851aa 100%);
}

.tool-card__icon--midjourney {
	background: linear-gradient(180deg, #4168d9 0%, #2744ad 100%);
}

.tool-card__icon--deepseek {
	background: linear-gradient(180deg, #1d3f83 0%, #142f64 100%);
}

.tool-card__icon--perplexity {
	background: linear-gradient(180deg, #5d59d9 0%, #4a43bf 100%);
}

.tool-card__icon--runway {
	background: linear-gradient(180deg, #8c61ff 0%, #6f43e8 100%);
}

.tool-card__head {
	flex: 1 1 auto;
	min-width: 0;
}

.tool-card__name {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1d2740;
}

.tool-card__desc {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 500;
	color: #7b86a3;
}

.tool-card__text {
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
	color: #5b6786;
	min-height: 66px;
}

.tool-card__meta {
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.tool-card__badge,
.tool-card__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.tool-card__badge {
	background: #eef3fb;
	color: #4c5f8f;
}

.tool-card__status {
	background: #f6f8fc;
	color: #7c879f;
}

.popular-tools__slider .slick-list {
	margin: 0 -1px;
    padding-top: 15px;
    padding-bottom: 40px;
}

.popular-tools__slider .slick-track {
	display: flex !important;
}

.popular-tools__slider .slick-slide {
	height: inherit !important;
}

.popular-tools__slider .slick-slide > div {
	height: 100%;
}

.popular-tools__slider .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.12);
	font-size: 0;
	cursor: pointer;
	z-index: 5;
	transition: 0.2s ease;
}

.popular-tools__slider .slick-arrow:hover {
	transform: translateY(-50%) scale(1.06);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.18);
}

.popular-tools__slider .slick-prev {
	left: -45px;
}

.popular-tools__slider .slick-next {
	right: -45px;
}

.popular-tools__slider .slick-prev::before,
.popular-tools__slider .slick-next::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #7c8ab0;
	border-right: 2px solid #7c8ab0;
}

.popular-tools__slider .slick-prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.popular-tools__slider .slick-next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}








.vibe-projects {
	position: relative;
	padding-top: 34px;
	padding-bottom: 40px;
	z-index: 1;
}

.vibe-projects__head {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
}

.vibe-projects__title-col,
.vibe-projects__action-col {
	flex: 0 0 auto;
}

.vibe-projects__title {
	margin: 0;
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.vibe-projects__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgb(231 231 231);
	/*
	border: 1px solid rgba(171, 186, 221, 0.24);
	*/
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #242424;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: 0.2s ease;
}

.vibe-projects__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.vibe-projects__grid {
	flex-wrap: wrap;
	gap: 18px;
}

.vibe-project-card {
	flex: 1 1 calc(25% - 14px);
	min-width: 250px;
}

.vibe-project-card__link {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
    margin-bottom: 30px;
}

.vibe-project-card__image {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1.72 / 1;
	background: #dfe8f7;
	box-shadow: 0 12px 26px rgba(102, 124, 173, 0.10);
}

.vibe-project-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vibe-project-card__demo {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	box-shadow: 0 10px 20px rgba(63, 111, 255, 0.28);
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.01em;
	z-index: 2;
}

.vibe-project-card__body {
	padding-top: 14px;
}

.vibe-project-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.28;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1d2740;
	transition: color 0.2s ease;
}

.vibe-project-card__link:hover .vibe-project-card__title {
	color: #ff430c;
}

.vibe-project-card__text {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 500;
	color: #6c7894;
}

.vibe-project-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.vibe-project-card__stack {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 11px;
	border-radius: 999px;
	background: #eef3fb;
	color: #4c5f8f;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.01em;
}







.demo-showcase {
	position: relative;
	padding-top: 36px;
	padding-bottom: 42px;
	z-index: 1;
}

.demo-showcase__head {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
}

.demo-showcase__title-col,
.demo-showcase__action-col {
	flex: 0 0 auto;
}

.demo-showcase__title {
	margin: 0;
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.demo-showcase__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgb(231 231 231);
	/*
	border: 1px solid rgba(171, 186, 221, 0.24);
	*/
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #242424;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: 0.2s ease;
}

.demo-showcase__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.demo-showcase__grid {
	flex-wrap: wrap;
	gap: 24px;
}

.demo-card {
	flex: 1 1 calc(50% - 12px);
	min-width: 320px;
}

.demo-card__inner {
	height: 100%;
}

.demo-card__image {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 2.6 / 1;
	background: #dfe8f7;
	box-shadow: 0 14px 32px rgba(102, 124, 173, 0.10);
	text-decoration: none;
}

.demo-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.demo-card__image:hover img {
	transform: scale(1.03);
}

.demo-card__type {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 20px rgba(53, 76, 127, 0.12);
	color: #4f648f;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.01em;
	z-index: 2;
}

.demo-card__body {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-top: 14px;
}

.demo-card__content {
	flex: 1 1 auto;
	min-width: 0;
}

.demo-card__title {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.demo-card__title a {
	color: #1d2740;
	text-decoration: none;
	transition: color 0.2s ease;
}

.demo-card__title a:hover {
	color: #ff430c;
}

.demo-card__article {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
	color: #7b88a6;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	transition: color 0.2s ease;
}

.demo-card__article:hover {
	color: #4f6fe8;
}

.demo-card__action {
	flex: 0 0 auto;
}

.demo-card__launch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 12px;
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	box-shadow: 0 14px 28px rgba(63, 111, 255, 0.22);
	color: #ffffff;
	text-decoration: none;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-card__launch:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(63, 111, 255, 0.28);
}







.prompt-packs {
	position: relative;
	padding-top: 34px;
	padding-bottom: 38px;
	z-index: 1;
}

.prompt-packs__head {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
}

.prompt-packs__title-col,
.prompt-packs__action-col {
	flex: 0 0 auto;
}

.prompt-packs__title {
	margin: 0;
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.prompt-packs__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgb(231 231 231);
	/*
	border: 1px solid rgba(171, 186, 221, 0.24);
	*/
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #242424;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: 0.2s ease;
}

.prompt-packs__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.prompt-packs__grid {
	flex-wrap: wrap;
	gap: 18px;
}

.prompt-pack-card {
	flex: 1 1 calc(33.333% - 12px);
	min-width: 300px;
}

.prompt-pack-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.prompt-pack-card__image {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 2.18 / 1;
	background: #dfe8f7;
	box-shadow: 0 12px 26px rgba(102, 124, 173, 0.10);
}

.prompt-pack-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prompt-pack-card__body {
	padding-top: 14px;
}

.prompt-pack-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.28;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1d2740;
	transition: color 0.2s ease;
}

.prompt-pack-card__link:hover .prompt-pack-card__title {
	color: #ff430c;
}

.prompt-pack-card__text {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.42;
	font-weight: 500;
	color: #6f7b97;
}

.prompt-pack-card__meta {
	margin-top: 12px;
}

.prompt-pack-card__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.prompt-pack-card__tag--seo {
	background: #dff4ee;
	color: #2b8c70;
}

.prompt-pack-card__tag--image {
	background: #e9f2ff;
	color: #4b74c9;
}

.prompt-pack-card__tag--biz {
	background: #fff0e5;
	color: #c76d3a;
}








.guides-playbooks {
	position: relative;
	padding-top: 34px;
	padding-bottom: 40px;
	z-index: 1;
}

.guides-playbooks__head {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
}

.guides-playbooks__title-col,
.guides-playbooks__action-col {
	flex: 0 0 auto;
}

.guides-playbooks__title {
	margin: 0;
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.guides-playbooks__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgb(231 231 231);
	/*
	border: 1px solid rgba(171, 186, 221, 0.24);
	*/
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #242424;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: 0.2s ease;
}

.guides-playbooks__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.guides-playbooks__grid {
	flex-wrap: wrap;
	gap: 18px;
}

.guide-card {
	flex: 1 1 calc(25% - 14px);
	min-width: 250px;
}

.guide-card__link {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.guide-card__inner {
	height: 100%;
	padding: 22px 20px 20px;
	border-radius: 18px;
	background: rgb(231 231 231 / 72%);
	border: 1px solid rgba(176, 191, 225, 0.22);
	box-shadow: 0 14px 34px rgba(98, 119, 167, 0.10);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-card__link:hover .guide-card__inner {
	transform: translateY(-4px);
	box-shadow: 0 18px 38px rgba(98, 119, 167, 0.14);
	border-color: rgba(112, 141, 219, 0.24);
}

.guide-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.28;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1d2740;
	transition: color 0.2s ease;
}

.guide-card__link:hover .guide-card__title {
	color: #ff430c;
}

.guide-card__goal {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(182, 194, 224, 0.22);
}

.guide-card__label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8a97b4;
}

.guide-card__text,
.guide-card__result {
	font-size: 14px;
	line-height: 1.45;
	font-weight: 500;
	color: #66738f;
}

.guide-card__meta {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 18px;
}

.guide-card__meta-item {
	padding-top: 14px;
	border-top: 1px solid rgba(182, 194, 224, 0.18);
}

.guide-card__level {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.guide-card__level--easy {
	background: #b9e3cb;
	color: #2f8a60;
}

.guide-card__level--medium {
	background: #c7d4f5;
	color: #4a67bd;
}

.guide-card__level--hard {
	background: #f1d9c8;
	color: #c36d39;
}









.topic-hubs {
	position: relative;
	padding-top: 42px;
	padding-bottom: 46px;
	z-index: 1;
}

.topic-hubs__intro {
	max-width: 920px;
	margin: 0 auto 28px;
	text-align: center;
}

.topic-hubs__title {
	margin: 0;
	font-size: clamp(30px, 2.5vw, 46px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.topic-hubs__text {
	margin-top: 14px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
	color: #66738f;
}

.topic-hubs__grid {
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.topic-hub-card {
	flex: 1 1 calc(33.333% - 15px);
	min-width: 180px;
}

.topic-hub-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 230px;
	padding: 22px 16px 18px;
	border-radius: 18px;
	text-decoration: none;
	text-align: center;
	background: rgba(255, 255, 255, 0.72);
	/*
	border: 1px solid rgba(176, 190, 224, 0.22);
	*/
	box-shadow: 0 14px 34px rgba(102, 124, 173, 0.10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.topic-hub-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(82, 109, 166, 0.16);
	border-color: rgba(112, 141, 219, 0.24);
}

.topic-hub-card__icon {
	width: 78px;
	height: 78px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	font-size: 26px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
}

.topic-hub-card__title {
	margin-top: 18px;
	font-size: 18px;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1d2740;
	transition: color 0.2s ease;
}

.topic-hub-card__link:hover .topic-hub-card__title {
	color: #ff430c;
}

.topic-hub-card__subtitle {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	color: #6d7896;
}

.topic-hub-card__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.topic-hub-card__tags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 8px 18px rgba(91, 112, 159, 0.08);
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #556582;
}

.topic-hubs__bottom {
	max-width: 920px;
	margin: 28px auto 0;
	text-align: center;
	font-size: 17px;
	line-height: 1.55;
	font-weight: 500;
	color: #5d6b89;
}

/* Цветовые варианты карточек */

.topic-hub-card--chatgpt .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(223, 244, 238, 0.95) 0%, rgba(240, 249, 246, 0.9) 100%);
}

.topic-hub-card--chatgpt .topic-hub-card__icon {
	background: linear-gradient(180deg, #55b6a9 0%, #2a968d 100%);
}

.topic-hub-card--claude .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(238, 235, 255, 0.95) 0%, rgba(246, 244, 255, 0.9) 100%);
}

.topic-hub-card--claude .topic-hub-card__icon {
	background: linear-gradient(180deg, #7e73dc 0%, #6258c2 100%);
}

.topic-hub-card--cursor .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(222, 242, 255, 0.96) 0%, rgba(241, 248, 255, 0.92) 100%);
}

.topic-hub-card--cursor .topic-hub-card__icon {
	background: linear-gradient(180deg, #2f7fd8 0%, #1e58b8 100%);
}

.topic-hub-card--deepseek .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(239, 233, 255, 0.95) 0%, rgba(247, 243, 255, 0.9) 100%);
}

.topic-hub-card--deepseek .topic-hub-card__icon {
	background: linear-gradient(180deg, #2f5fbe 0%, #203f88 100%);
}

.topic-hub-card--midjourney .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(224, 238, 255, 0.95) 0%, rgba(243, 248, 255, 0.9) 100%);
}

.topic-hub-card--midjourney .topic-hub-card__icon {
	background: linear-gradient(180deg, #3d63d8 0%, #2746aa 100%);
}

.topic-hub-card--gemini .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(255, 239, 214, 0.92) 0%, rgba(255, 248, 237, 0.9) 100%);
}

.topic-hub-card--gemini .topic-hub-card__icon {
	background: linear-gradient(180deg, #ef9d47 0%, #d8743b 100%);
}







.site-footer {
	position: relative;
	margin-top: 20px;
	padding-top: 86px;
	overflow: hidden;
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 170px;
	pointer-events: none;
	/*
	background:
		radial-gradient(circle at 8% 20%, rgba(175, 204, 255, 0.35) 0, rgba(175, 204, 255, 0.35) 13%, transparent 14%),
		radial-gradient(circle at 18% 78%, rgba(209, 226, 255, 0.38) 0, rgba(209, 226, 255, 0.38) 18%, transparent 19%),
		radial-gradient(circle at 88% 28%, rgba(219, 232, 255, 0.28) 0, rgba(219, 232, 255, 0.28) 16%, transparent 17%),
		linear-gradient(180deg, rgba(240, 246, 255, 0.88) 0%, rgba(246, 249, 255, 0.72) 48%, rgba(255, 255, 255, 0) 100%);
		*/
	z-index: 0;
}

.site-footer::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 18px;
	height: 120px;
	pointer-events: none;
	opacity: 0.95;
	background:
		radial-gradient(ellipse at 12% 100%, rgba(255,255,255,0.94) 0 26%, transparent 27%),
		radial-gradient(ellipse at 28% 100%, rgba(255,255,255,0.96) 0 28%, transparent 29%),
		radial-gradient(ellipse at 46% 100%, rgba(255,255,255,0.95) 0 27%, transparent 28%),
		radial-gradient(ellipse at 64% 100%, rgba(255,255,255,0.94) 0 26%, transparent 27%),
		radial-gradient(ellipse at 82% 100%, rgba(255,255,255,0.96) 0 28%, transparent 29%);
	z-index: 0;
}

.footer-compact {
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, rgba(248, 250, 255, 0.94) 0%, rgba(242, 246, 255, 0.98) 100%);
	border-top: 1px solid rgba(180, 196, 228, 0.22);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.footer-compact__inner {
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.footer-compact__nav-col {
	flex: 1 1 auto;
}

.footer-compact__social-col {
	flex: 0 0 auto;
}

.footer-compact__nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px 34px;
}

.footer-compact__nav a {
	color: #7f8cac;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-compact__nav a:hover {
	color: #ff430c;
}

.footer-compact__socials {
	display: flex;
	align-items: center;
	gap: 14px;
}

.footer-compact__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #7f8cac;
	text-decoration: none;
	font-size: 22px;
	line-height: 1;
	transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.footer-compact__socials a:hover {
	color: #4f6fe8;
	transform: translateY(-2px);
}


.footer-compact__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-compact__list li {
	margin: 0;
	padding: 0;
}

.footer-compact__list a {
	text-decoration: none;
}




/* ==========================================================================
   NEWS HUB / SINGLE
   ========================================================================== */

.news-hub {
	position: relative;
	z-index: 1;
	padding-top: 50px;
	padding-bottom: 28px;
}

.news-hub__hero {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 24px;
}

.news-hub__hero-inner {
	/*
	max-width: 1120px;
	*/
	margin: 0 auto;
	text-align: center;
}

.news-hub__title {
	margin: 0;
	font-size: clamp(40px, 4vw, 64px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1a2540;
}

.news-hub__title span {
	color: #ff430c;
}

.news-hub__text {
	max-width: 860px;
	margin: 18px auto 0;
	font-size: 20px;
	line-height: 1.55;
	font-weight: 500;
	color: #66738f;
}

.news-hub__search {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 980px;
	margin: 26px auto 0;
	padding: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgb(16 16 16 / 24%);
	box-shadow: 0 14px 34px rgba(96, 120, 167, 0.10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.news-hub__search input[type="search"] {
	flex: 1 1 auto;
	height: 56px;
	padding: 0 22px;
	border: 0;
	outline: none;
	background: transparent;
	font-size: 18px;
	font-weight: 500;
	color: #2b3551;
}

.news-hub__search input[type="search"]::placeholder {
	color: #98a4bf;
}

.news-hub__search button {
	flex: 0 0 auto;
	min-width: 160px;
	height: 56px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #58a8ff 0%, #368eff 100%);
	box-shadow: 0 14px 28px rgba(54, 142, 255, 0.22);
	color: #ffffff;
	font-size: 19px;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-hub__search button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(54, 142, 255, 0.28);
}

.news-hub__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 1120px;
	margin: 18px auto 0;
}

.news-hub__tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border-radius: 999px;
	background: rgb(229 229 229 / 66%);
	border: 1px solid rgba(174, 189, 222, 0.22);
	box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
	color: #556582;
	text-decoration: none;
	font-size: 17px;
	line-height: 1;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.news-hub__tabs a:hover,
.news-hub__tabs a.is-active {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(96, 120, 167, 0.12);
    color: #ffffff;
    background: rgb(255 67 12);
}

.news-hub__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
	padding-top: 6px;
}

.news-hub__context-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgb(238 238 238);
    box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
    color: #2d3855;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
}

.news-hub__controls-right form {
	margin: 0;
}

.news-hub__controls-right select {
    height: 46px;
    padding: 0 44px 0 16px;
    border: 1px solid rgb(187 187 187 / 24%);
    border-radius: 14px;
    background-color: rgb(238 238 238);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%232d3855' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
    color: #2d3855;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.news-hub__listing {
	position: relative;
	z-index: 1;
	padding-top: 10px;
	padding-bottom: 18px;
}

.news-hub__grid {
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 22px;
}

.news-archive-card {
	flex: 0 0 calc(50% - 11px);
	max-width: calc(50% - 11px);
	min-width: 320px;
}

.news-archive-card__image {
	display: block;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 2.1 / 1;
	background: #dfe8f7;
	box-shadow: 0 14px 32px rgba(102, 124, 173, 0.10);
	text-decoration: none;
}

.news-archive-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.news-archive-card__image:hover img {
	transform: scale(1.03);
}

.news-archive-card__body {
	padding-top: 16px;
}

.news-archive-card__tag-wrap {
	margin-bottom: 12px;
}

.news-archive-card__tag-wrap .news-card__tag {
	margin-top: 0;
	text-decoration: none;
}

.news-archive-card__title {
	margin: 0;
	font-size: clamp(26px, 2.1vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.news-archive-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-archive-card__title a:hover {
	color: #ff430c;
}

.news-archive-card__excerpt {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.55;
	font-weight: 500;
	color: #64708a;
}

.news-archive-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;
	color: #8793ae;
}

.news-hub__pagination {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.news-hub__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #5d6a88;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.news-hub__pagination .page-numbers:hover,
.news-hub__pagination .page-numbers.current {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	color: #ffffff;
}

.news-hub__empty {
	padding: 26px 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 30px rgba(96, 120, 167, 0.08);
	text-align: center;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 500;
	color: #66738f;
}

/* SINGLE POST */

.news-single {
	position: relative;
	z-index: 1;
	padding-top: 28px;
	padding-bottom: 20px;
}

.news-single__top {
	padding-bottom: 16px;
}

.news-single__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin-bottom: 22px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	color: #8490aa;
}

.news-single__breadcrumbs a {
	color: #6a79a0;
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-single__breadcrumbs a:hover {
	color: #4561b7;
}

.news-single__hero {
	max-width: 1120px;
}

.news-single__badge {
	margin-bottom: 16px;
}

.news-single__badge .news-card__tag {
	margin-top: 0;
}

.news-single__title {
	margin: 0;
	font-size: clamp(40px, 4.5vw, 68px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1a253d;
}

.news-single__lead {
	max-width: 920px;
	margin-top: 22px;
	font-size: 24px;
	line-height: 1.5;
	font-weight: 500;
	color: #606d89;
}

.news-single__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.news-single__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 40px;
	padding: 0 14px 0 8px;
	border-radius: 999px;
	border: 1px solid rgba(178, 191, 221, 0.28);
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #6a7692;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
}

.news-single__meta-item i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	font-size: 12px;
}

.news-single__meta-item--date i {
	background: linear-gradient(180deg, #72a6ff 0%, #4f87f5 100%);
	box-shadow: 0 8px 16px rgba(79, 135, 245, 0.26);
	color: #ffffff;
}

.news-single__meta-item--views i {
	background: rgba(83, 138, 255, 0.12);
	color: #5d86e9;
}

.news-single__meta-item--comments i {
	background: rgba(83, 138, 255, 0.12);
	color: #5d86e9;
}

.news-single__cover {
	margin-top: 28px;
	border-radius: 24px;
	overflow: hidden;
	background: #dfe8f7;
	box-shadow: 0 18px 40px rgba(102, 124, 173, 0.12);
	height: 360px;
}

.news-single__cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-single__content-wrap {
	padding-top: 18px;
	padding-bottom: 12px;
}

.news-single__content {
	max-width: 1120px;
	font-size: 19px;
	line-height: 1.8;
	font-weight: 500;
	color: #47526d;
}

.news-single__content h2 {
	margin: 38px 0 18px;
	font-size: clamp(34px, 3vw, 48px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.news-single__content h3 {
	margin: 30px 0 14px;
	font-size: 28px;
	line-height: 1.16;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1a253d;
}

.news-single__content p {
	margin: 0 0 18px;
}

.news-single__content ul,
.news-single__content ol {
	margin: 0 0 18px 22px;
	padding: 0;
}

.news-single__content li {
	margin-bottom: 10px;
}

.news-single__content img {
	max-width: 100%;
	height: auto;
	border-radius: 18px;
}

.news-single__bottom {
	max-width: 1120px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(178, 192, 224, 0.22);
}

.news-single__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.news-single__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 10px 22px rgba(96, 120, 167, 0.08);
	color: #556582;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.news-single__chip:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(96, 120, 167, 0.12);
	color: #3d5fb9;
}

.news-single__chip--soft {
	background: rgba(244, 247, 255, 0.82);
}

.news-single__related {
	margin-top: 80px;
	padding-top: 0;
	padding-bottom: 0;
}





.news-archive-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	padding-top: 14px;
	/*
	border-top: 1px solid rgba(183, 196, 226, 0.22);
	*/
}

.news-archive-card__meta-left,
.news-archive-card__meta-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.news-archive-card__meta-right {
	margin-left: auto;
}

.news-archive-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	padding: 0 14px 0 8px;
	border-radius: 999px;
	border: 1px solid rgba(178, 191, 221, 0.28);
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #6a7692;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
}

.news-archive-card__meta-item i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	font-size: 12px;
}

.news-archive-card__meta-item--date i {
	background: linear-gradient(180deg, #72a6ff 0%, #4f87f5 100%);
	box-shadow: 0 8px 16px rgba(79, 135, 245, 0.26);
	color: #ffffff;
}

.news-archive-card__meta-item--views i {
	background: rgba(83, 138, 255, 0.12);
	color: #5d86e9;
}





/* ==========================================================================
   TOOLS
   ========================================================================== */

.tool-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	overflow: hidden;
}

.tool-icon--letter {
	background: var(--tool-icon-bg, #4f87f5);
	color: #ffffff;
	font-weight: 800;
}

.tool-icon--image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tool-card .tool-icon {
	width: 64px;
	height: 64px;
	font-size: 28px;
	line-height: 1;
	flex: 0 0 64px;
}

.tool-card__icon.tool-icon--image {
	padding: 0 !important;
	background: none !important;
}



/* ==========================================================================
   TOOLS ARCHIVE
   ========================================================================== */

.tools-archive {
	position: relative;
	z-index: 1;
	padding-top: 50px;
	padding-bottom: 34px;
}

.tools-archive__hero {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 24px;
}

.tools-archive__hero-inner {
	margin: 0 auto;
	text-align: center;
}

.tools-archive__title {
	margin: 0;
	font-size: clamp(40px, 4vw, 64px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1a2540;
}

.tools-archive__title span {
	color: #ff430c;
}

.tools-archive__text {
	max-width: 860px;
	margin: 18px auto 0;
	font-size: 20px;
	line-height: 1.55;
	font-weight: 500;
	color: #66738f;
}

.tools-archive__search {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 980px;
	margin: 26px auto 0;
	padding: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgb(16 16 16 / 24%);
	box-shadow: 0 14px 34px rgba(96, 120, 167, 0.10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.tools-archive__search input[type="search"] {
	flex: 1 1 auto;
	height: 56px;
	padding: 0 22px;
	border: 0;
	outline: none;
	background: transparent;
	font-size: 18px;
	font-weight: 500;
	color: #2b3551;
}

.tools-archive__search input[type="search"]::placeholder {
	color: #98a4bf;
}

.tools-archive__search button {
	flex: 0 0 auto;
	min-width: 160px;
	height: 56px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #58a8ff 0%, #368eff 100%);
	box-shadow: 0 14px 28px rgba(54, 142, 255, 0.22);
	color: #ffffff;
	font-size: 19px;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tools-archive__search button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(54, 142, 255, 0.28);
}

.tools-archive__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 1120px;
	margin: 18px auto 0;
}

.tools-archive__tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border-radius: 999px;
	background: rgb(229 229 229 / 66%);
	border: 1px solid rgba(174, 189, 222, 0.22);
	box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
	color: #556582;
	text-decoration: none;
	font-size: 17px;
	line-height: 1;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tools-archive__tabs a:hover,
.tools-archive__tabs a.is-active {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(96, 120, 167, 0.12);
	color: #ffffff;
	background: rgb(255 67 12);
}

.tools-archive__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
	padding-top: 6px;
}

.tools-archive__controls-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.tools-archive__context-label,
.tools-archive__count-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 14px;
	background: rgb(238 238 238);
	box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
	color: #2d3855;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
}

.tools-archive__count-pill {
	font-size: 15px;
	color: #6c7894;
}

.tools-archive__controls-right form {
	margin: 0;
}

.tools-archive__controls-right select {
	height: 46px;
	padding: 0 44px 0 16px;
	border: 1px solid rgb(187 187 187 / 24%);
	border-radius: 14px;
	background-color: rgb(238 238 238);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%232d3855' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px 8px;
	box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
	color: #2d3855;
	font-size: 16px;
	font-weight: 600;
	outline: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.tools-archive__filters-details {
	max-width: 1120px;
	margin: 18px auto 0;
}

.tools-archive__filters-summary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 14px;
	background: rgb(238 238 238);
	box-shadow: 0 12px 26px rgba(96, 120, 167, 0.08);
	color: #2d3855;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.tools-archive__filters-summary::-webkit-details-marker {
	display: none;
}

.tools-archive__filters-summary::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #7f8cab;
	border-bottom: 1.5px solid #7f8cab;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.2s ease;
}

.tools-archive__filters-details[open] .tools-archive__filters-summary::after {
	transform: rotate(225deg) translateY(-1px);
}

.tools-archive__filters-counter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 999px;
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
}

.tools-archive__filters-panel {
	margin-top: 14px;
	padding: 22px 24px;
	border-radius: 22px;
	background: rgb(238 238 238);
	/*
	border: 1px solid rgba(181, 194, 226, 0.18);
	*/
	box-shadow: 0 18px 38px rgba(96, 120, 167, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	text-align: left;
}

.tools-archive__filter-group + .tools-archive__filter-group {
	margin-top: 18px;
}

.tools-archive__filter-group {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.tools-archive__filter-label {
	flex: 0 0 90px;
	padding-top: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #2d3855;
}

.tools-archive__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tools-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(178, 191, 221, 0.24);
	color: #5c6784;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tools-chip:hover,
.tools-chip.is-active {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(96, 120, 167, 0.10);
	background: #ff430c;
	color: #ffffff;
}

.tools-archive__clear {
	margin-top: 18px;
	text-align: right;
}

.tools-archive__clear a {
	color: #7d89a6;
	text-decoration: none;
	font-weight: 700;
}

.tools-archive__listing {
	position: relative;
	z-index: 1;
	padding-top: 18px;
	padding-bottom: 18px;
}

.tools-archive__grid {
	flex-wrap: wrap;
	row-gap: 22px;
	column-gap: 22px;
}

.tool-archive-card {
	flex: 0 0 calc(50% - 11px);
	max-width: calc(50% - 11px);
}

.tool-archive-card__link {
	display: block;
	height: 100%;
	padding: 24px;
	border-radius: 22px;
	background: rgb(238 238 238);
	border: 1px solid rgba(181, 194, 226, 0.18);
	box-shadow: 0 16px 34px rgba(96, 120, 167, 0.08);
	text-decoration: none;
}

.tool-archive-card__top {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.tool-archive-card__icon {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	font-size: 28px;
	line-height: 1;
}

.tool-archive-card__heading {
	flex: 1 1 auto;
}

.tool-archive-card__title {
	margin: 0;
	font-size: 24px;
	line-height: 1.1;
	font-weight: 800;
	color: #1a253d;
}

.tool-archive-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.tool-archive-card__badge,
.tool-archive-card__task,
.tool-single__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #ffffff;
	color: #6a7692;
	font-size: 14px;
	font-weight: 700;
}

.tool-single__hero-head .tool-single__pill {
	background-color:rgb(237 237 238);
}

.tool-archive-card__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
	color: #2d3855;
}

.tool-archive-card__excerpt {
	margin-top: 14px;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 500;
	color: #63708a;
}

.tool-archive-card__list,
.tool-archive-card__mini-list,
.tool-single__box ul {
	margin: 14px 0 0 18px;
	padding: 0;
}

.tool-archive-card__list li,
.tool-archive-card__mini-list li,
.tool-single__box li {
	margin-bottom: 8px;
	color: #4d5874;
}

.tool-archive-card__mini-title {
	margin-top: 14px;
	font-size: 16px;
	font-weight: 800;
	color: #2d3855;
}

.tool-archive-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 18px;
}

.tool-archive-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 12px;
	background: rgba(241, 245, 255, 0.92);
    color: #404040;
    font-size: 16px;
    font-weight: 600;
	transition:0.3s;
}

.tool-archive-card__button:hover {
	background: #ff430c;
    color: #ffffff;	
}

.tools-archive__pagination {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.tools-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	margin: 0 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #5d6a88;
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tools-archive__pagination .page-numbers.current,
.tools-archive__pagination .page-numbers:hover {
	transform: translateY(-2px);
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	color: #ffffff;
}

.tools-archive__empty {
	padding: 26px 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 14px 30px rgba(96, 120, 167, 0.08);
	text-align: center;
	font-size: 17px;
	font-weight: 500;
	color: #66738f;
}



/* SINGLE TOOL */

.tool-single {
	position: relative;
	z-index: 1;
	padding-top: 26px;
	padding-bottom: 24px;
}

.tool-single__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 600;
	color: #8490aa;
}

.tool-single__breadcrumbs a {
	color: #6a79a0;
	text-decoration: none;
}



.tool-single__hero-head {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.tool-single__icon {
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	font-size: 42px;
	line-height: 1;
}

.tool-single__title {
	margin: 0;
	font-size: clamp(40px, 4vw, 62px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1a253d;
}

.tool-single__subtitle {
	margin-top: 10px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 600;
	color: #394765;
}

.tool-single__pills,
.tool-single__inline-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.tool-single__pill--link {
	background: linear-gradient(180deg, #67a7ff 0%, #4787f4 100%);
	color: #ffffff;
	text-decoration: none;
}

.tool-single__intro {
	margin-top: 22px;
	font-size: 23px;
	line-height: 1.6;
	font-weight: 500;
	color: #63708a;
}



.tool-single__box h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1.12;
	font-weight: 800;
	color: #1a253d;
    margin-bottom: 15px;
}

.tool-single__box ul {
	margin-top: 16px;
}

.tool-single__list--cons li::marker {
	color: #ea6f6f;
}


.tool-single {
	position: relative;
	z-index: 1;
	padding-top: 26px;
	padding-bottom: 24px;
}

.tool-single__hero {
	padding-bottom: 10px;
}

.tool-single__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 600;
	color: #8490aa;
}

.tool-single__breadcrumbs a {
	color: #6a79a0;
	text-decoration: none;
}

.tool-single__hero-head {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 28px;
}

.tool-single__icon {
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	font-size: 42px;
	line-height: 1;
}

.tool-single__title {
	margin: 0;
	font-size: clamp(40px, 4vw, 62px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1a253d;
}

.tool-single__subtitle {
	margin-top: 10px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 600;
	color: #394765;
}

.tool-single__pills,
.tool-single__inline-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.tool-single__pill--link {
	background: linear-gradient(180deg, #67a7ff 0%, #4787f4 100%);
	color: #ffffff;
	text-decoration: none;
}

.tool-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	align-items: start;
}

.tool-single__main {
	min-width: 0;
}

.tool-single__side {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.tool-single__intro {
	font-size: 19px;
	line-height: 1.6;
	font-weight: 500;
	color: #47526d;
}

.tool-single__content {
	margin-top: 28px;
	font-size: 19px;
	line-height: 1.8;
	font-weight: 500;
	color: #47526d;
}

.tool-single__content p {
	margin: 0 0 18px;
}

.tool-single__box {
    padding: 30px;
    border-radius: 20px;
    background: rgb(237 237 238);
	/*
    border: 1px solid rgba(181, 194, 226, 0.18);
	*/
    box-shadow: 0 16px 34px rgba(96, 120, 167, 0.08);
    padding-top: 20px;
}


.tool-single__box ul {
	margin: 16px 0 0 18px;
	padding: 0;
}

.tool-single__box li {
	margin-bottom: 8px;
	color: #4d5874;
}

.tool-single__list--cons li::marker {
	color: #ea6f6f;
}

.tool-single__section {
	margin-top: 34px;
}

.tool-single__section h2 {
	margin: 0 0 16px;
	font-size: clamp(34px, 3vw, 48px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.tool-single__section-text {
	font-size: 19px;
	line-height: 1.8;
	font-weight: 500;
	color: #4d5874;
}

.tool-single__related-news {
	margin-top: 40px;
}

.tool-single__stat {
	margin-top: 12px;
	font-size: 34px;
	font-weight: 800;
	color: #2d3855;
}


.tool-single__content {
	font-size: 19px;
	line-height: 1.8;
	font-weight: 500;
	color: #47526d;
}

.tool-single__content p {
	margin: 0 0 18px;
}

.tool-single__section {
	margin-top: 34px;
}

.tool-single__section h2 {
	margin: 0 0 16px;
	font-size: clamp(34px, 3vw, 48px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.tool-single__section-text {
	font-size: 19px;
	line-height: 1.8;
	font-weight: 500;
	color: #4d5874;
}

.tool-single__related-news {
	margin-top: 40px;
}

.tool-single__stat {
	margin-top: 12px;
	font-size: 34px;
	font-weight: 800;
	color: #2d3855;
}


.tool-single__related-news .latest-news__grid > .news-card:only-child {
	flex: 1 1 100%;
	max-width: 100%;
	width: 100%;
}

.tool-single__related-news .latest-news__grid > .news-card:only-child .news-card__link {
	display: block;
	width: 100%;
}

.tool-single__related-news .latest-news__grid > .news-card:only-child .news-card__image {
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.tool-single__related-news .latest-news__grid > .news-card:only-child .news-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}









/* ==========================================================================
   VIBE CODING ARCHIVE / SINGLE
   ========================================================================== */

.vibe-archive .vibe-projects__grid {
	gap: 22px;
}

.vibe-archive .vibe-project-card {
	flex: 0 0 calc(33.333% - 15px);
	max-width: calc(33.333% - 15px);
}

.vibe-archive .tools-archive__pagination ul {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vibe-single__demo-box {
	text-align: center;
}

.vibe-single__launch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0 18px;
	border-radius: 12px;
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	box-shadow: 0 14px 28px rgba(63, 111, 255, 0.22);
	color: #ffffff;
	text-decoration: none;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vibe-single__launch:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(63, 111, 255, 0.28);
}

.demo-showcase--hub {
	padding-top: 30px;
}







/* ==========================================================================
   VIBE SINGLE / META
   ========================================================================== */

.vibe-project-card__stats {
	margin-top: 14px;
	padding-top: 0;
}

.vibe-project-card__stats .news-archive-card__meta-left {
	flex-wrap: wrap;
}

.vibe-project-card__stats .news-archive-card__meta-item {
	min-height: 34px;
	padding: 0 12px 0 8px;
	font-size: 13px;
}

.vibe-single__content-wrap {
	padding-top: 34px;
	padding-bottom: 30px;
}

.vibe-single__demo-link {
	text-decoration: none;
}

.vibe-single__layout {
	align-items: flex-start;
}

.vibe-single__content p:last-child {
	margin-bottom: 0;
}




.tool-single__pills.vibe-single__hero-pills .tool-single__pill {
    background-color: #e9e9e9;
    font-size: 14px;
    padding: 0 14px;
    min-height: 32px;
    margin-bottom: 15px;
}









/* ==========================================================================
   PROMPTS ARCHIVE / SINGLE
   ========================================================================== */

.prompt-archive .prompt-pack-card {
	flex: 0 0 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
}

.prompt-archive .prompt-pack-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.prompt-single__hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 18px;
}

.prompt-single__hero-pills .tool-single__pill {
	margin: 0;
}

.prompt-single__content-wrap {
	padding-top: 34px;
	padding-bottom: 34px;
}

.prompt-single__layout {
	align-items: flex-start;
}

.prompt-single__prompt-box {
	padding: 0px;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(92, 115, 161, 0.10);
}

.prompt-single__prompt-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.prompt-single__prompt-title {
	margin: 0;
	font-size: 30px;
	line-height: 1.12;
	font-weight: 800;
	color: #1a253d;
}

.prompt-single__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.prompt-single__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 999px;
	background: rgb(231 231 231);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #242424;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease;
}

.prompt-single__action:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.prompt-single__action--primary {
	background: linear-gradient(180deg, #5e88ff 0%, #3f6fff 100%);
	box-shadow: 0 14px 28px rgba(63, 111, 255, 0.22);
	color: #ffffff;
}

.prompt-single__action--primary:hover {
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(63, 111, 255, 0.28);
}

.prompt-single__action.is-saved {
	background: #dff4ee;
	color: #2b8c70;
	box-shadow: 0 10px 24px rgba(69, 141, 117, 0.10);
}

.prompt-single__prompt-text {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
    outline: 0;
    background: #ededee;
    resize: vertical;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    color: #1d2740;
    padding: 30px;
    border-radius: 7px;
}

.prompt-single__section {
    margin-top: 28px;
    padding: 30px;
    border-radius: 16px;
    background: #ededee;
    box-shadow: 0 4px 5px rgba(92, 115, 161, 0.30);
}

.prompt-single__section h2 {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 1.14;
	font-weight: 800;
	color: #1a253d;
}

.prompt-single__list {
	margin: 0;
	padding-left: 20px;
}

.prompt-single__list li + li {
	margin-top: 8px;
}

.prompt-single__example p:last-child,
.prompt-single__content p:last-child {
	margin-bottom: 0;
}

.prompt-single__content {
	margin-top: 28px;
}







/* ==========================================================================
   GUIDES ARCHIVE / SINGLE
   ========================================================================== */

.guide-archive .guide-card {
	flex: 0 0 calc(25% - 14px);
	max-width: calc(25% - 14px);
}

.guide-single__content-wrap {
	padding-top: 34px;
	padding-bottom: 34px;
}

.guide-single__layout {
	align-items: flex-start;
}

.guide-single__section {
	padding: 24px;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(92, 115, 161, 0.10);
}

.guide-single__section + .guide-single__section {
	margin-top: 28px;
}

.guide-single__section h2,
.guide-single__related h2 {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 1.14;
	font-weight: 800;
	color: #1a253d;
}

.guide-single__list {
	margin: 0;
	padding-left: 20px;
}

.guide-single__list li + li {
	margin-top: 8px;
}

.guide-single__content {
	margin-top: 28px;
}

.guide-single__related {
	margin-top: 28px;
}

.guide-single__related .prompt-packs__grid,
.guide-single__related .vibe-projects__grid {
	margin-top: 18px;
}

.guide-single__text p:last-child,
.guide-single__content p:last-child {
	margin-bottom: 0;
}








/* ==========================================================================
   GUIDE SINGLE RELATED BLOCKS
   ========================================================================== */

.guide-single__related {
	margin-top: 34px;
}

.guide-single__related .prompt-packs__grid,
.guide-single__related .vibe-projects__grid {
	margin-top: 18px;
	gap: 18px;
}

.guide-single__related .prompt-packs__grid > .prompt-pack-card,
.guide-single__related .vibe-projects__grid > .vibe-project-card {
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
}

.guide-single__related .prompt-packs__grid > .prompt-pack-card:only-child,
.guide-single__related .vibe-projects__grid > .vibe-project-card:only-child {
	flex: 0 0 100%;
	max-width: 100%;
	width: 100%;
}

.guide-single__related .prompt-packs__grid > .prompt-pack-card:only-child .prompt-pack-card__image,
.guide-single__related .vibe-projects__grid > .vibe-project-card:only-child .vibe-project-card__image {
	height: 200px;
	overflow: hidden;
}

.guide-single__related .prompt-packs__grid > .prompt-pack-card:only-child .prompt-pack-card__image img,
.guide-single__related .vibe-projects__grid > .vibe-project-card:only-child .vibe-project-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.guide-single__related--projects .vibe-project-card__image {
    aspect-ratio: 2.18 / 1;
}








.topic-links {
	margin-top: 18px;
}

.topic-links__label {
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #6b7894;
}

.topic-links__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.topic-links__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	color: #24314f;
	background: #f4f7fd;
	box-shadow: 0 10px 22px rgba(70, 96, 148, 0.08);
}

.topic-links__item.topic-hub-card--chatgpt {
	background: rgba(223, 244, 238, 0.92);
}

.topic-links__item.topic-hub-card--claude {
	background: rgba(238, 235, 255, 0.95);
}

.topic-links__item.topic-hub-card--cursor {
	background: rgba(222, 242, 255, 0.95);
}

.topic-links__item.topic-hub-card--deepseek {
	background: rgba(239, 233, 255, 0.95);
}

.topic-links__item.topic-hub-card--midjourney {
	background: rgba(224, 238, 255, 0.95);
}

.topic-links__item.topic-hub-card--gemini {
	background: rgba(255, 239, 214, 0.95);
}

.topic-related {
	margin-top: 42px;
	padding-top: 34px;
	border-top: 1px solid rgba(195, 208, 235, 0.5);
}

.topic-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.topic-related__title {
	margin: 0;
	font-size: 30px;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.topic-related__hub-link {
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	color: #ff430c;
}

.topic-related__sections {
	display: grid;
	gap: 34px;
}

.topic-related__section-title {
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1d2740;
}

.topic-hub-page {
	padding-bottom: 54px;
}

.topic-hub-page__hero {
	padding-top: 34px;
	padding-bottom: 18px;
}

.topic-hub-page__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.4;
	color: #75819a;
}

.topic-hub-page__breadcrumbs a {
	text-decoration: none;
	color: #5f6d8a;
}

.topic-hub-page__hero-inner {
	display: flex;
	gap: 22px;
	padding: 28px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,250,255,0.92) 100%);
	box-shadow: 0 18px 44px rgba(75, 100, 148, 0.12);
}

.topic-hub-page__hero-inner.topic-hub-card--chatgpt {
	background: linear-gradient(180deg, rgba(223, 244, 238, 0.98) 0%, rgba(240, 249, 246, 0.94) 100%);
}

.topic-hub-page__hero-inner.topic-hub-card--claude {
	background: linear-gradient(180deg, rgba(238, 235, 255, 0.98) 0%, rgba(246, 244, 255, 0.94) 100%);
}

.topic-hub-page__hero-inner.topic-hub-card--cursor {
	background: linear-gradient(180deg, rgba(222, 242, 255, 0.98) 0%, rgba(241, 248, 255, 0.94) 100%);
}

.topic-hub-page__hero-inner.topic-hub-card--deepseek {
	background: linear-gradient(180deg, rgba(239, 233, 255, 0.98) 0%, rgba(247, 243, 255, 0.94) 100%);
}

.topic-hub-page__hero-inner.topic-hub-card--midjourney {
	background: linear-gradient(180deg, rgba(224, 238, 255, 0.98) 0%, rgba(243, 248, 255, 0.94) 100%);
}

.topic-hub-page__hero-inner.topic-hub-card--gemini {
	background: linear-gradient(180deg, rgba(255, 239, 214, 0.98) 0%, rgba(255, 248, 237, 0.94) 100%);
}

.topic-hub-page__icon {
	width: 94px;
	height: 94px;
	flex: 0 0 94px;
	border-radius: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
	background: linear-gradient(180deg, #3e67db 0%, #23449f 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
}

.topic-hub-page__content {
	flex: 1 1 auto;
}

.topic-hub-page__title {
	margin: 0;
	font-size: clamp(32px, 3.1vw, 54px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #18233b;
}

.topic-hub-page__subtitle {
	margin-top: 10px;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
	color: #30415f;
}

.topic-hub-page__text {
	max-width: 920px;
	margin-top: 14px;
	font-size: 17px;
	line-height: 1.6;
	font-weight: 500;
	color: #556582;
}

.topic-hub-page__stats,
.topic-hub-page__tags,
.topic-hub-page__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.topic-hub-page__stats {
	margin-top: 20px;
}

.topic-hub-page__stats span,
.topic-hub-page__tags span,
.topic-hub-page__tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	color: #30415f;
	background: rgba(255,255,255,0.75);
	box-shadow: 0 10px 24px rgba(76, 96, 145, 0.09);
}

.topic-hub-page__tags {
	margin-top: 14px;
}

.topic-hub-page__featured,
.topic-hub-page__stream {
	padding-top: 18px;
}

.topic-hub-page__block + .topic-hub-page__block {
	margin-top: 34px;
}

.topic-hub-page__stream-head {
	margin-bottom: 16px;
}

.topic-hub-page__stream-title {
	margin: 0;
	font-size: 32px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a253d;
}

.topic-hub-page__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 26px;
}

.topic-hub-page__tabs a.is-active {
	color: #ffffff;
	background: linear-gradient(135deg, #ff642e 0%, #ff430c 100%);
}

.topic-hub-page__filters {
	display: flex;
	align-items: center;
	gap: 12px;
}

.topic-hub-page__search-form {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topic-hub-page__search-form input,
.topic-hub-page__filters select {
	height: 46px;
	padding: 0 16px;
	border-radius: 14px;
	border: 1px solid rgba(195, 208, 235, 0.7);
	background: #ffffff;
	font: inherit;
	color: #22304d;
}

.topic-hub-page__search-form input {
	min-width: 260px;
}

.topic-hub-page__search-form button {
	height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 14px;
	font: inherit;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(135deg, #ff642e 0%, #ff430c 100%);
	cursor: pointer;
}

.topic-hub-page__empty {
	padding: 28px;
	border-radius: 22px;
	background: #f6f8fd;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
	color: #5a6884;
}






.topic-hub-archive__hero {
	padding-bottom: 14px;
}

.topic-hub-archive__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6d7896;
}

.topic-hub-archive__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 1120px;
	margin: 18px auto 0;
}

.topic-hub-archive__stats span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgb(238 238 238 / 88%);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #556582;
}

.topic-hub-archive__sections {
	padding-top: 10px;
}

.topic-hub-archive__section + .topic-hub-archive__section {
	margin-top: 46px;
}

.topic-hub-archive__tools-grid {
	flex-wrap: wrap;
	gap: 18px;
}

.topic-hub-archive__tools-grid > .tool-card {
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
	min-width: 0;
}

.topic-hub-archive__listing {
	padding-top: 26px;
}

.topic-hub-archive__feed {
	flex-wrap: wrap;
	gap: 18px;
}

.topic-feed-card {
	flex: 0 0 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
	min-width: 0;
}

.topic-feed-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 22px 20px 18px;
	border-radius: 20px;
	background: rgb(238 238 238 / 84%);
	border: 1px solid rgba(176, 191, 225, 0.22);
	box-shadow: 0 14px 34px rgba(98, 119, 167, 0.10);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.topic-feed-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 38px rgba(98, 119, 167, 0.14);
	border-color: rgba(112, 141, 219, 0.24);
}

.topic-feed-card__top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.topic-feed-card__type,
.topic-feed-card__meta-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
}

.topic-feed-card__meta-pill {
	background: #eef3fb;
	color: #5e6f93;
}

.topic-feed-card__type--news {
	background: #eee7ff;
	color: #6d52b9;
}

.topic-feed-card__type--tool {
	background: #dff4ee;
	color: #2b8c70;
}

.topic-feed-card__type--prompt {
	background: #e9f2ff;
	color: #4b74c9;
}

.topic-feed-card__type--guide {
	background: #fff0e5;
	color: #c76d3a;
}

.topic-feed-card__type--project {
	background: #eef3fb;
	color: #4c5f8f;
}

.topic-feed-card__type--page {
	background: #efe9ff;
	color: #6b54b8;
}

.topic-feed-card__title {
	margin: 16px 0 0;
	font-size: 22px;
	line-height: 1.24;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1d2740;
	transition: color 0.2s ease;
}

.topic-feed-card__link:hover .topic-feed-card__title {
	color: #ff430c;
}

.topic-feed-card__excerpt {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.55;
	font-weight: 500;
	color: #66738f;
}

.topic-feed-card__bottom {
	margin-top: auto;
	padding-top: 18px;
}

.topic-feed-card__date {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	color: #8a96b2;
}




.tools-archive__title a {
	color: inherit;
	text-decoration: none;
}

.tools-archive__title a:hover {
	color: inherit;
}

/* ==========================================================
   TOPIC HUB — NEWS / PROMPTS FIXED COUNTS
   ========================================================== */

.topic-hub-news-grid > .news-card,
.topic-hub-prompt-grid > .prompt-pack-card {
	min-width: 0;
}

/* Новости: 4 */
.topic-hub-news-grid--4 > .news-card {
	flex: 0 0 calc(25% - 13.5px);
	max-width: calc(25% - 13.5px);
}

/* Новости: 3 */
.topic-hub-news-grid--3 > .news-card {
	flex: 0 0 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
}

/* Новости: 2 или 1 */
.topic-hub-news-grid--2 > .news-card,
.topic-hub-news-grid--1 > .news-card {
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
}

.topic-hub-news-grid--2 > .news-card .news-card__image,
.topic-hub-news-grid--1 > .news-card .news-card__image {
	aspect-ratio: auto;
	height: 185px;
}

.topic-hub-news-grid--2 > .news-card .news-card__image img,
.topic-hub-news-grid--1 > .news-card .news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Промпты: 3 */
.topic-hub-prompt-grid--3 > .prompt-pack-card {
	flex: 0 0 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
}

/* Промпты: 2 или 1 */
.topic-hub-prompt-grid--2 > .prompt-pack-card,
.topic-hub-prompt-grid--1 > .prompt-pack-card {
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
}

.topic-hub-prompt-grid--2 > .prompt-pack-card .prompt-pack-card__image,
.topic-hub-prompt-grid--1 > .prompt-pack-card .prompt-pack-card__image {
	aspect-ratio: auto;
	height: 185px;
}

.topic-hub-prompt-grid--2 > .prompt-pack-card .prompt-pack-card__image img,
.topic-hub-prompt-grid--1 > .prompt-pack-card .prompt-pack-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}






/* ==========================================================
   TOPIC HUB — PROJECTS FIXED COUNTS
   ========================================================== */

.topic-hub-project-grid > .vibe-project-card {
	min-width: 0;
}

/* 4 проекта */
.topic-hub-project-grid--4 > .vibe-project-card {
	flex: 0 0 calc(25% - 13.5px);
	max-width: calc(25% - 13.5px);
}

/* 3 проекта */
.topic-hub-project-grid--3 > .vibe-project-card {
	flex: 0 0 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
}

/* 2 или 1 проект */
.topic-hub-project-grid--2 > .vibe-project-card,
.topic-hub-project-grid--1 > .vibe-project-card {
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
}

/* чтобы одиночный/двойной проект не выглядел как растянутый баннер */
.topic-hub-project-grid--2 > .vibe-project-card .vibe-project-card__image,
.topic-hub-project-grid--1 > .vibe-project-card .vibe-project-card__image {
	aspect-ratio: auto;
	height: 220px;
}

.topic-hub-project-grid--2 > .vibe-project-card .vibe-project-card__image img,
.topic-hub-project-grid--1 > .vibe-project-card .vibe-project-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}









.topic-hubs__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.topic-hubs__grid > .topic-hub-card {
	min-width: 0;
}

/* 1, 2 или 4 хаба — не растягиваем на всю строку */
.topic-hubs__grid--1 > .topic-hub-card,
.topic-hubs__grid--2 > .topic-hub-card,
.topic-hubs__grid--4 > .topic-hub-card {
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
}

/* 3, 5, 6 хабов — нормальная трехколоночная сетка */
.topic-hubs__grid--3 > .topic-hub-card,
.topic-hubs__grid--5 > .topic-hub-card,
.topic-hubs__grid--6 > .topic-hub-card {
	flex: 0 0 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
}

.topic-hub-card--default .topic-hub-card__icon {
	background: linear-gradient(135deg, #3f67db 0%, #2647a3 100%);
	color: #ffffff;
}









.topic-hub-card--default .topic-hub-card__link {
	background: linear-gradient(180deg, rgba(241, 245, 255, 0.98) 0%, rgba(248, 250, 255, 0.96) 100%);
}

.topic-hub-card--custom-bg .topic-hub-card__link {
	background: linear-gradient(
		180deg,
		var(--hub-card-bg-1, rgba(241, 245, 255, 0.98)) 0%,
		var(--hub-card-bg-2, rgba(248, 250, 255, 0.96)) 100%
	);
}

.topic-hub-card__icon.is-image {
	padding: 0;
	overflow: hidden;
	background: #ffffff;
}

.topic-hub-card__icon.is-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.topic-hub-media-preview {
	margin: 10px 0 12px;
}

.topic-hub-media-preview img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(80, 100, 148, 0.12);
}









/* ==========================================================================
   STATIC PAGE / 404
   ========================================================================== */

.page-single {
	position: relative;
	z-index: 1;
	padding-top: 28px;
	padding-bottom: 20px;
}

.page-single__hero {
	padding-bottom: 18px;
}

.page-single__hero-grid {
	display: grid;
	gap: 28px;
	align-items: center;
}

.page-single__hero-grid--has-cover {
	grid-template-columns: minmax(0, 1fr) 380px;
}

.page-single__hero-grid--no-cover {
	grid-template-columns: minmax(0, 1fr);
}

.page-single__hero-main {
	max-width: 860px;
}

.page-single__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #5870b6;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.page-single__title {
	max-width: 980px;
	margin-top: 18px;
}

.page-single__lead {
	max-width: 820px;
}

.page-single__meta {
	margin-top: 20px;
}

.page-single__meta-item {
	text-decoration: none;
}

.page-single__meta-item--section i {
	background: rgba(255, 115, 74, 0.14);
	color: #ff5a27;
}

.page-single__cover {
	height: 320px;
	border-radius: 24px;
	overflow: hidden;
	background: #dfe8f7;
	box-shadow: 0 18px 40px rgba(102, 124, 173, 0.12);
}

.page-single__cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-single__content-wrap {
	padding-top: 18px;
	padding-bottom: 34px;
}

.page-single__layout {
    display: flex;
    gap: 28px;
}

.page-single__content {
	min-width: 0;
}

.page-single__content > *:first-child {
	margin-top: 0;
}

.page-single__content a {
	color: #4568d8;
}

.page-single__content blockquote {
	margin: 28px 0;
	padding: 24px 26px;
	border-left: 4px solid #ff430c;
	border-radius: 18px;
	background: #f4f7fd;
	box-shadow: 0 14px 30px rgba(96, 120, 167, 0.06);
	color: #394765;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 600;
}

.page-single__content pre {
	overflow: auto;
	margin: 26px 0;
	padding: 22px;
	border-radius: 18px;
	background: #1f2738;
	color: #f5f7fd;
	font-size: 15px;
	line-height: 1.7;
}

.page-single__content code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
}

.page-single__content p code,
.page-single__content li code {
	display: inline-block;
	padding: 2px 6px;
	border-radius: 6px;
	background: rgba(79, 111, 232, 0.08);
	color: #2d407d;
}

.page-single__content table {
	width: 100%;
	margin: 26px 0;
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(96, 120, 167, 0.08);
}

.page-single__content th,
.page-single__content td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid rgba(194, 205, 228, 0.45);
}

.page-single__content th {
	background: #f5f8ff;
	color: #2e3956;
	font-weight: 700;
}

.page-single__content tr:last-child td {
	border-bottom: 0;
}

.page-single__side {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.page-single__box {
	padding-top: 20px;
}

.page-single__box-note {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
	color: #7381a0;
}

.page-single__nav-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.page-single__nav-list li + li {
	margin-top: 10px;
}

.page-single__nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.7);
	color: #3e4b68;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-single__nav-link:hover {
	transform: translateY(-2px);
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(96, 120, 167, 0.12);
	color: #4561b7;
}

.page-single__nav-link.is-current {
	background: linear-gradient(180deg, #5d88ff 0%, #4171ff 100%);
	box-shadow: 0 14px 28px rgba(70, 114, 255, 0.18);
	color: #ffffff;
}

.page-not-found {
	position: relative;
	z-index: 1;
	padding-top: 32px;
	padding-bottom: 34px;
}

.page-not-found__card {
	max-width: 980px;
	margin: 0 auto;
	padding: 40px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(246, 249, 255, 0.96) 0%, rgba(238, 244, 255, 0.92) 100%);
	box-shadow: 0 24px 56px rgba(97, 121, 171, 0.12);
	text-align: center;
}

.page-not-found__code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 24px;
	border-radius: 999px;
	background: linear-gradient(180deg, #5f89ff 0%, #4271ff 100%);
	box-shadow: 0 16px 34px rgba(66, 113, 255, 0.24);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.page-not-found__title {
	margin: 22px 0 0;
	font-size: clamp(40px, 4.2vw, 64px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #1a253d;
}

.page-not-found__text {
	max-width: 760px;
	margin: 18px auto 0;
	font-size: 20px;
	line-height: 1.6;
	font-weight: 500;
	color: #64718d;
}

.page-not-found__search {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 760px;
	margin: 28px auto 0;
	padding: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(176, 191, 223, 0.34);
	box-shadow: 0 16px 34px rgba(96, 120, 167, 0.10);
}

.page-not-found__search input[type="search"] {
	flex: 1 1 auto;
	height: 56px;
	padding: 0 22px;
	border: 0;
	outline: none;
	background: transparent;
	font-size: 18px;
	font-weight: 500;
	color: #2b3551;
}

.page-not-found__search input[type="search"]::placeholder {
	color: #98a4bf;
}

.page-not-found__search button {
	flex: 0 0 auto;
	min-width: 150px;
	height: 56px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #ff6a34 0%, #ff430c 100%);
	box-shadow: 0 14px 28px rgba(255, 67, 12, 0.22);
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-not-found__search button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(255, 67, 12, 0.28);
}

.page-not-found__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

.page-not-found__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 24px rgba(96, 120, 167, 0.08);
	color: #556582;
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-not-found__action:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(96, 120, 167, 0.12);
	background: #ffffff;
	color: #4561b7;
}

.page-not-found__action--primary {
	background: linear-gradient(180deg, #5f89ff 0%, #4271ff 100%);
	box-shadow: 0 14px 28px rgba(66, 113, 255, 0.18);
	color: #ffffff;
}

.page-not-found__action--primary:hover {
	color: #ffffff;
	background: linear-gradient(180deg, #6c93ff 0%, #4b79ff 100%);
}

.page-not-found__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
	text-align: left;
}

.page-not-found__box {
	padding: 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 30px rgba(96, 120, 167, 0.08);
}

.page-not-found__box h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.18;
	font-weight: 800;
	color: #1a253d;
}

.page-not-found__list {
	margin: 16px 0 0;
	padding-left: 18px;
}

.page-not-found__list li + li {
	margin-top: 10px;
}

.page-not-found__list a {
	color: #1a253d;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 600;
}

.page-not-found__list a:hover {
	color: #ff430c;
}



.search-page__controls {
	justify-content: center;
}

.search-page__controls .tools-archive__controls-left {
	justify-content: center;
}








/* ==========================================================================
   SITE PRELOADER
   ========================================================================== */

.site-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background:
		radial-gradient(circle at 20% 20%, rgba(77, 107, 255, 0.16) 0%, rgba(77, 107, 255, 0) 34%),
		radial-gradient(circle at 78% 22%, rgba(255, 67, 12, 0.14) 0%, rgba(255, 67, 12, 0) 30%),
		linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(237, 243, 255, 0.98) 100%);
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

html.has-preloader-js .site-preloader {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

html.has-preloader-js .site-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-preloader__inner {
	position: relative;
	width: min(100%, 420px);
	padding: 34px 32px 30px;
	border: 1px solid rgba(126, 145, 190, 0.18);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 24px 60px rgba(52, 78, 126, 0.18);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	text-align: center;
}

.site-preloader__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(77, 107, 255, 0.10);
	color: #4d6bff;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-preloader__scene {
	position: relative;
	width: 126px;
	height: 126px;
	margin: 22px auto 0;
}

.site-preloader__core {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #4d6bff 0%, #7f91ff 52%, #ff430c 100%);
	box-shadow:
		0 0 0 10px rgba(77, 107, 255, 0.08),
		0 16px 38px rgba(77, 107, 255, 0.28);
	animation: site-preloader-core 1.8s ease-in-out infinite;
}

.site-preloader__core::before {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.46);
}

.site-preloader__ring {
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	border: 1.5px solid rgba(126, 145, 190, 0.28);
}

.site-preloader__ring--one {
	width: 126px;
	height: 126px;
	border-top-color: #4d6bff;
	border-right-color: rgba(77, 107, 255, 0.48);
	animation: site-preloader-spin 2.6s linear infinite;
}

.site-preloader__ring--two {
	width: 94px;
	height: 94px;
	border-right-color: #ff430c;
	border-bottom-color: rgba(255, 67, 12, 0.44);
	animation: site-preloader-spin-reverse 2s linear infinite;
}

.site-preloader__ring--three {
	width: 154px;
	height: 154px;
	border-left-color: rgba(77, 107, 255, 0.36);
	border-top-color: rgba(255, 67, 12, 0.34);
	opacity: 0.85;
	animation: site-preloader-spin 3.4s linear infinite;
}

.site-preloader__title {
	margin-top: 24px;
	font-size: 28px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1f2940;
}

.site-preloader__text {
	margin-top: 10px;
	color: #6f7d99;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
}

.site-preloader__track {
	position: relative;
	width: 190px;
	height: 6px;
	margin: 18px auto 0;
	border-radius: 999px;
	background: rgba(126, 145, 190, 0.16);
	overflow: hidden;
}

.site-preloader__track::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 -42%;
	width: 42%;
	border-radius: inherit;
	background: linear-gradient(90deg, #4d6bff 0%, #ff430c 100%);
	animation: site-preloader-track 1.4s ease-in-out infinite;
}

@keyframes site-preloader-spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes site-preloader-spin-reverse {
	from {
		transform: translate(-50%, -50%) rotate(360deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(0deg);
	}
}

@keyframes site-preloader-core {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.08);
	}
}

@keyframes site-preloader-track {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(340%);
	}
}