

/* Start:/local/css/blog.css?177014089313301*/
/* ===== BLOG PAGE STYLES ===== */
/* Префикс: blog_ */

:root {
  --blog_blue: #1962FF;
  --blog_blue_hover: #0d4fd6;
  --blog_text: #323439;
  --blog_text_muted: #7C859C;
  --blog_bg_light: #F4F6FB;
  --blog_bg_white: #FFFFFF;
  --blog_radius: 10px;
  --blog_radius_lg: 15px;
  --blog_shadow: 4px 4px 80px 0px rgba(17, 25, 45, 0.04);
  --blog_transition: 0.3s ease;
}

/* ===== BASE ===== */
.blog_container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO ===== */
.blog_hero {
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog_hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--blog_blue);
  border-radius: 50%;
  opacity: 0.03;
}

.blog_hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--blog_blue);
  border-radius: 50%;
  opacity: 0.03;
}

.blog_hero_title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.blog_hero_title span {
  color: var(--blog_blue);
}

.blog_hero_desc {
  font-size: 20px;
  line-height: 1.5;
  color: var(--blog_text_muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== CATEGORIES ===== */
.blog_categories {
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.blog_categories_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.blog_category_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--blog_bg_white);
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--blog_text_muted);
  cursor: pointer;
  transition: all var(--blog_transition);
  box-shadow: var(--blog_shadow);
}

.blog_category_btn:hover {
  border-color: var(--blog_blue);
  color: var(--blog_blue);
}

.blog_category_btn.active {
  background: var(--blog_blue);
  color: white;
  border-color: var(--blog_blue);
}

.blog_category_btn svg {
  width: 18px;
  height: 18px;
}

.blog_category_count {
  background: rgba(0,0,0,0.08);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 13px;
}

.blog_category_btn.active .blog_category_count {
  background: rgba(255,255,255,0.2);
}

/* ===== ARTICLES GRID ===== */
.blog_section {
  padding-bottom: 80px;
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== ARTICLE CARD ===== */
.blog_card {
  background: var(--blog_bg_white);
  border-radius: var(--blog_radius_lg);
  overflow: hidden;
  box-shadow: var(--blog_shadow);
  transition: transform var(--blog_transition), box-shadow var(--blog_transition);
  display: flex;
  flex-direction: column;
}

.blog_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.blog_card_image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--blog_transition);
}

.blog_card:hover .blog_card_image img {
  transform: scale(1.05);
}

.blog_card_category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blog_blue);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.blog_card_content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog_card_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--blog_text_muted);
}

.blog_card_meta_item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog_card_meta_item svg {
  width: 16px;
  height: 16px;
}

.blog_card_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px 0;
  color: var(--blog_text);
  transition: color var(--blog_transition);
}

.blog_card:hover .blog_card_title {
  color: var(--blog_blue);
}

.blog_card_title a {
  text-decoration: none;
  color: inherit;
}

.blog_card_excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: var(--blog_text_muted);
  margin-bottom: 20px;
  flex: 1;
}

.blog_card_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--blog_bg_light);
}

.blog_card_author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog_card_author_avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.blog_card_author_name {
  font-size: 14px;
  font-weight: 500;
  color: var(--blog_text);
}

.blog_card_link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--blog_blue);
  text-decoration: none;
  transition: gap var(--blog_transition);
}

.blog_card_link:hover {
  gap: 10px;
}

.blog_card_link svg {
  width: 18px;
  height: 18px;
}

/* ===== FEATURED CARD ===== */
.blog_featured {
  margin-bottom: 40px;
}

.blog_featured_card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blog_bg_white);
  border-radius: var(--blog_radius_lg);
  overflow: hidden;
  box-shadow: var(--blog_shadow);
  transition: transform var(--blog_transition), box-shadow var(--blog_transition);
}

.blog_featured_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.blog_featured_image {
  position: relative;
  min-height: 350px;
}

.blog_featured_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_featured_badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #FEAA2A 0%, #F59E0B 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog_featured_badge svg {
  width: 16px;
  height: 16px;
}

.blog_featured_content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog_featured_category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blog_bg_light);
  color: var(--blog_blue);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  width: fit-content;
}

.blog_featured_category svg {
  width: 16px;
  height: 16px;
}

.blog_featured_title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px 0;
  color: var(--blog_text);
}

.blog_featured_title a {
  text-decoration: none;
  color: inherit;
  transition: color var(--blog_transition);
}

.blog_featured_title a:hover {
  color: var(--blog_blue);
}

.blog_featured_excerpt {
  font-size: 17px;
  line-height: 1.6;
  color: var(--blog_text_muted);
  margin-bottom: 24px;
}

.blog_featured_meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: var(--blog_text_muted);
}

.blog_featured_meta_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog_featured_meta_item svg {
  width: 18px;
  height: 18px;
  color: var(--blog_blue);
}

/* ===== PAGINATION ===== */
.blog_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.blog_pagination_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--blog_bg_white);
  border: none;
  border-radius: var(--blog_radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--blog_text_muted);
  cursor: pointer;
  transition: all var(--blog_transition);
  box-shadow: var(--blog_shadow);
}

.blog_pagination_btn:hover {
  background: var(--blog_blue);
  color: white;
}

.blog_pagination_btn.active {
  background: var(--blog_blue);
  color: white;
}

.blog_pagination_btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog_pagination_btn svg {
  width: 20px;
  height: 20px;
}

/* ===== NEWSLETTER ===== */
.blog_newsletter {
  background: linear-gradient(135deg, var(--blog_blue) 0%, #0d4fd6 100%);
  border-radius: var(--blog_radius_lg);
  padding: 60px;
  margin-top: 60px;
  margin-bottom: 40px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.blog_newsletter::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  opacity: 0.05;
}

.blog_newsletter_content h3, .blog_newsletter_content p, .blog_newsletter_icon {
  color: #fff;
}

.blog_newsletter_icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.blog_newsletter_icon svg {
  width: 32px;
  height: 32px;
}

.blog_newsletter_title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.blog_newsletter_text {
  font-size: 18px;
  opacity: 0.9;
}

.blog_newsletter_form {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.blog_newsletter_input {
  flex: 1;
  height: 56px;
  background: white;
  border: none;
  border-radius: var(--blog_radius);
  padding: 0 20px;
  font-family: inherit;
  font-size: 16px;
  color: var(--blog_text);
}

.blog_newsletter_input::placeholder {
  color: var(--blog_text_muted);
}

.blog_newsletter_btn {
  height: 56px;
  padding: 0 32px;
  background: var(--blog_text);
  color: white;
  border: none;
  border-radius: var(--blog_radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--blog_transition);
  white-space: nowrap;
}

.blog_newsletter_btn:hover {
  background: #1a1c20;
}

/* ===== FOOTER ===== */
.blog_footer {
  background: var(--blog_text);
  color: white;
  padding: 50px 0 30px;
}

.blog_footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.blog_footer_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

.blog_logo_icon {
  width: 40px;
  height: 40px;
  background: var(--blog_blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.blog_footer_contacts {
  display: flex;
  gap: 30px;
}

.blog_footer_contact {
  text-align: right;
}

.blog_footer_contact_label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.blog_footer_contact a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: color var(--blog_transition);
}

.blog_footer_contact a:hover {
  color: var(--blog_blue);
}

.blog_footer_copy {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog_featured_card {
    grid-template-columns: 1fr;
  }

  .blog_featured_image {
    min-height: 250px;
  }

  .blog_featured_content {
    padding: 35px;
  }

  .blog_newsletter {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .blog_hero {
    padding: 40px 0 30px;
  }

  .blog_hero_title {
    font-size: 36px;
  }

  .blog_hero_desc {
    font-size: 17px;
  }

  .blog_grid {
    grid-template-columns: 1fr;
  }

  .blog_categories_list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .blog_category_btn {
    flex-shrink: 0;
  }

  .blog_featured_title {
    font-size: 24px;
  }

  .blog_newsletter {
    padding: 30px;
  }

  .blog_newsletter_title {
    font-size: 24px;
  }

  .blog_newsletter_form {
    flex-direction: column;
  }

  .blog_newsletter_btn {
    width: 100%;
  }

  .blog_pagination_btn {
    width: 42px;
    height: 42px;
  }

  .blog_footer_inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .blog_footer_contacts {
    flex-direction: column;
    gap: 16px;
  }

  .blog_footer_contact {
    text-align: center;
  }

  .blog_footer_copy {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* End */
/* /local/css/blog.css?177014089313301 */
