@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	font-family: 'Montserrat', sans-serif;
	background-color: rgba(4, 18, 32, 0.28);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: none;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Тонкая нижняя линия-разделитель: 1px градиент с холодным cyan/ice-blue
   акцентом и мягким свечением. Не толще, не агрессивная, не перебивает
   красные элементы сайта. */
.header::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg,
		rgba(120, 210, 255, 0) 0%,
		rgba(140, 220, 255, 0.55) 50%,
		rgba(120, 210, 255, 0) 100%);
	box-shadow: 0 0 8px rgba(140, 220, 255, 0.38);
	pointer-events: none;
	z-index: 1;
}

/* Периодический «блик» по нижней линии. Узкий световой акцент, который
   проходит слева направо примерно раз в 4.5 секунды. Длительность
   активного прохода ~2.0с, пауза ~2.3с. Чисто CSS, без JS. */
.header::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 22%;
	height: 1px;
	background: linear-gradient(90deg,
		rgba(200, 240, 255, 0) 0%,
		rgba(225, 245, 255, 1) 50%,
		rgba(200, 240, 255, 0) 100%);
	filter: blur(0.5px);
	box-shadow: 0 0 12px rgba(180, 230, 255, 0.7), 0 0 4px rgba(225, 245, 255, 0.55);
	pointer-events: none;
	z-index: 2;
	transform: translateX(-110%);
	opacity: 0;
	animation: header-divider-shimmer 4.5s ease-in-out infinite;
}

@keyframes header-divider-shimmer {
	0%   { transform: translateX(-110%); opacity: 0; }
	4%   { opacity: 1; }
	44%  { transform: translateX(500%); opacity: 1; }
	50%  { opacity: 0; }
	100% { transform: translateX(500%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.header::before {
		animation: none;
		display: none;
	}
}

.header--scrolled {
	background-color: rgba(4, 18, 32, 0.70);
	backdrop-filter: blur(22px) saturate(160%);
	-webkit-backdrop-filter: blur(22px) saturate(160%);
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px;
	flex-wrap: nowrap;
}

.logo img {
	width: 312px;
	height: 56.4px;
}

.nav-menu ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	justify-content: space-evenly;
	gap: 15px;
}

.nav-menu li {
	position: relative;
	white-space: nowrap;
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	padding: 10px;
}

.nav-menu li:hover::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.burger-menu {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.burger-menu img {
	width: 29px;
	height: 25px;
	margin-right: 20px;
}

.contact-info {
	display: flex;
	align-items: center;
	margin-right: 14px;
}

.phone-number {
	color: #fff;
	font-size: 17px;
	margin-left: 8px;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	top: -2px;
	display: flex;
	align-items: center;
}

.phone-number .phone-icon {
	margin-right: 5px;
	width: 25px;
	height: 25px;
	transition: all 0.3s ease;
}

.phone-number:hover .phone-icon {
	filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(700%) hue-rotate(-10deg) brightness(105%) contrast(92%);
}

.phone-number:hover {
	color: rgba(255, 13, 30, 0.7);
}

/* Liquid-glass плашка соцсетей: лёгкая, прозрачная, не «отдельный блок».
   Тонкая светлая граница + backdrop-blur вместо плотной заливки. */
.social-icons-container {
	height: 44px;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0 10px;
	position: relative;
	z-index: 10;
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.10);
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
	.social-icons-container:hover {
		background-color: rgba(255, 255, 255, 0.10);
		border-color: rgba(255, 255, 255, 0.22);
		box-shadow:
			0 2px 8px rgba(140, 220, 255, 0.18),
			inset 0 1px 0 rgba(255, 255, 255, 0.14);
	}
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.25s ease, transform 0.25s ease;
	padding: 5px;
	border-radius: 50%;
}

@media (hover: hover) {
	.social-icons a:hover {
		background-color: rgba(255, 255, 255, 0.10);
		transform: translateY(-1px);
	}
}

.social-icons a img {
	width: 27px;
	height: 27px;
}

.social-icons a[href*="vk.com"]:hover img {
	filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

.social-icons a[href*="t.me"]:hover img {
	filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}

.social-icons a[href*="wa.me"]:hover img {
	filter: brightness(0) saturate(100%) invert(51%) sepia(75%) saturate(800%) hue-rotate(85deg) brightness(100%) contrast(92%);
}

/* Медиа-запросы */
@media (max-width: 1200px) {
	.nav-menu a {
		font-size: 16px;
	}

	.logo img {
		width: calc(312px * 0.8);
		height: calc(56.4px * 0.8);
	}

	.social-icons-container {
		height: calc(48px * 0.8);
		padding: 0 8px;
	}

	.social-icons {
		gap: 5px;
	}

	.social-icons a img {
		width: 20px;
		height: 20px;
	}

	.phone-number {
		font-size: 14.45px;
	}
}

@media (max-width: 992px) {
	.nav-menu a {
		font-size: 12px;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.social-icons-container {
		height: calc(48px * 0.6);
		padding: 0 6px;
	}

	.social-icons {
		gap: 3px;
	}

	.social-icons a img {
		width: 18px;
		height: 18px;
	}

	.phone-number {
		font-size: 12.75px;
	}
}

@media (max-width: 768px) {
	.header-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: center;
		padding: 20px 16px;
	}

	.nav-menu {
		display: none;
	}

.nav-menu.open {
	display: block;
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	background-color: rgba(6, 68, 105, 0.9);
	/* Полупрозрачный фон */
	padding: 15px;
	/* Компактный отступ */
	z-index: 10000;
}

.nav-menu.open ul {
	flex-direction: column;
	/* Вертикальное построение меню */
	margin: 0;
	padding: 0;
}

.nav-menu.open li {
	margin: 10px 0;
	/* Отступ между пунктами меню */
	text-align: center;
}

.nav-menu.open a {
	font-size: 80%;
	/* Уменьшение шрифта на 20% */
	padding: 8px;
	/* Компактное поле для пунктов */
	color: #fff;
	text-decoration: none;
}

	.burger-menu {
		display: block;
		padding: 0;
	}

	.contact-info {
		display: none;
	}

	.social-icons-container {
		display: none;
	}

	.logo {
		flex: 1;
		text-align: left;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.nav-menu a {
		font-size: 16px;
	}

	.burger-menu {
		margin-left: 7px;
	}
}

@media (max-width: 576px) {
	.nav-menu a {
		font-size: 16px;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.social-icons-container {
		height: calc(48px * 0.4);
		padding: 0 4px;
	}

	.social-icons {
		gap: 3px;
	}

	.social-icons a img {
		width: 16px;
		height: 16px;
	}

	.phone-number {
		font-size: 10.2px;
	}

	.burger-menu {
		margin-left: 7px;
	}
}

/* header.css */
.menu-item.activelink.mask-next::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu-item.activelink.active2::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 5%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
footer {
  background-color: #171A1A;
  padding: 40px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  height: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 320px) repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo {
  width: 320px;
  height: 40px;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-company-details {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.footer-company-details a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-company-details a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

.footer-sections {
  display: contents;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.red-line {
  width: 30px;
  height: 3px;
  background-color: #FF0D1E;
  margin: 0 0 16px 0;
}

.footer-company-info,
.footer-info,
.footer-socials {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-company-info a,
.footer-info a,
.footer-socials a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-company-info a:hover,
.footer-info a:hover,
.footer-socials a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social-icon-container {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(255, 13, 30, 0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.footer-social-icon-container:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 13, 30, 0.8);
}

.footer-social-icon-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer-social-icons img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* Изменение цвета иконок при наведении */
.footer-social-icon-container:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}

/* Специфичные цвета для ВКонтакте */
.footer-social-icon-container:hover a[href*="vk.com"] img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

/* Специфичные цвета для Telegram */
.footer-social-icon-container:hover a[href*="t.me"] img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}


.footer-social-icon-container:hover a[href*="wa.me"] img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(75%) saturate(800%) hue-rotate(85deg) brightness(100%) contrast(92%);
}


.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-bottom a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
  .footer-top {
    gap: 50px;
  }
}

/* Desktop medium: 1024-1199px */
@media (max-width: 1199px) {
  .footer-top {
    gap: 32px;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
  }
}

/* Tablet large: 900-1023px */
@media (max-width: 1023px) {
  footer {
    padding: 30px 20px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
  }
  
  .footer-company-details {
    font-size: 15px;
    margin-left: 0;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
  }
}

/* Кнопка для скролла наверх */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: scale(1.1);
}

/* Tablet: 768-899px */
@media (max-width: 899px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
    align-items: center;
  }
  
  .footer-company-details {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
  
  .footer-section {
    align-items: center;
    text-align: center;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    align-items: center;
    text-align: center;
  }
  
  .red-line {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
}

/* Mobile large: 480-767px */
@media (max-width: 767px) {
  footer {
    padding: 30px 15px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-section {
    align-items: center;
    grid-column: 1;
  }
  
  .footer-section {
    width: 100%;
    max-width: 400px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo {
    width: 240px;
    height: 30px;
  }

  .footer-company-details {
    font-size: 15px;
    text-align: center;
    align-items: center;
    margin-left: 0;
  }

  .footer-section-title {
    font-size: 17px;
    text-align: center;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
    text-align: center;
    align-items: center;
  }

  .red-line {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Mobile medium: 375-479px */
@media (max-width: 479px) {
  footer {
    padding: 25px 15px;
  }
  
  .footer-top {
    gap: 28px;
  }
  
  .footer-logo {
    width: 200px;
    height: 25px;
  }

  .footer-company-details {
    font-size: 14px;
  }

  .footer-section-title {
    font-size: 16px;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 14px;
  }
  
  .footer-section {
    max-width: 100%;
  }
}

/* Mobile small: 320-374px */
@media (max-width: 374px) {
  footer {
    padding: 20px 10px;
  }
  
  .footer-top {
    gap: 24px;
  }
  
  .footer-logo {
    width: 180px;
    height: 22px;
  }

  .footer-company-details {
    font-size: 13px;
  }

  .footer-section-title {
    font-size: 15px;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 13px;
  }
  
  .footer-social-icon-container {
    width: 36px;
    height: 36px;
  }
  
  .footer-social-icons img {
    width: 18px;
    height: 18px;
  }
}

.footer-item.footerselect-next {
  color: #FF0D1E;
  text-decoration: underline;
}

/* ============================================
   BLOG PAGE - MODERN REDESIGN
   Стиль по аналогии с eniseielektrokom
   ============================================ */

/* Page Wrapper */
.blog-page-modern {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #0a0a0a;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: url('/image-fone.svg') no-repeat center center/cover;
  background-size: cover;
}

.blog-page-modern .fixed-schema {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/shema.svg') no-repeat center center;
  background-size: cover;
  z-index: 0;
  opacity: 0.6;
  animation: blogPulse 10s infinite;
}

@keyframes blogPulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.2; }
  100% { opacity: 0.6; }
}

/* Content Wrapper */
.blog-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

/* Breadcrumbs */
.blog-breadcrumbs {
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.blog-breadcrumbs a {
  color: #FF0D1E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-breadcrumbs a:hover {
  text-decoration: underline;
}

/* Title */
.blog-page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 13, 30, 0.5);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Blog Card Link */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Blog Card */
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid rgba(255, 13, 30, 0.3);
  background: linear-gradient(145deg, rgba(20, 22, 25, 0.9), rgba(32, 35, 40, 0.85));
  box-shadow: 0 0 20px rgba(255, 13, 30, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  min-height: 420px;
}

.blog-card-link:hover .blog-card {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255, 13, 30, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
  border-color: #FF0D1E;
}

/* Card Image */
.blog-card-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #1a1a1a;
  height: 220px;
  flex-shrink: 0;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(30%);
}

.blog-card-link:hover .blog-card-media img {
  transform: scale(1.05);
  filter: grayscale(0);
}

/* Card Title */
.blog-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-title {
  color: #FF0D1E;
}

/* Card Description */
.blog-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta Row */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-icon {
  font-size: 14px;
}

.blog-meta-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Read More Link */
.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #FF0D1E;
  transition: gap 0.3s ease;
}

.blog-card-link:hover .blog-card-read {
  gap: 12px;
}

/* Load More Button */
.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.blog-load-more-btn {
  padding: 14px 32px;
  border-radius: 12px;
  border: 2px solid #FF0D1E;
  background: rgba(255, 13, 30, 0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 13, 30, 0.3);
}

.blog-load-more-btn:hover {
  background: rgba(255, 13, 30, 0.25);
  box-shadow: 0 0 30px rgba(255, 13, 30, 0.5);
  transform: translateY(-2px);
}

/* Empty State */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

/* CTA Section */
.blog-cta-section {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px;
  background: linear-gradient(145deg, rgba(255, 13, 30, 0.1), rgba(20, 22, 25, 0.9));
  border: 1px solid rgba(255, 13, 30, 0.3);
  border-radius: 20px;
  text-align: center;
}

.blog-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.blog-cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
}

.blog-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF0D1E, #E60B1A);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 13, 30, 0.4);
}

.blog-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 13, 30, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-content-wrapper {
    padding: 100px 16px 40px;
  }

  .blog-page-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .blog-card {
    min-height: auto;
    padding: 20px;
  }

  .blog-card-media {
    height: 180px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .blog-cta-section {
    padding: 28px 20px;
  }

  .blog-cta-title {
    font-size: 20px;
  }
}

