/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-page {
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse at top left, rgba(130, 206, 222, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(25, 155, 223, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  min-height: 100vh;
}

.blog-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Header --- */
.blog-page__header {
  text-align: center;
  margin-bottom: 70px;
}

.blog-page__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.blog-page__label-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #199BDF, #82CEDE);
}

.blog-page__label-text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #199BDF;
  text-transform: uppercase;
}

.blog-page__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #2B3D49 0%, #4C7587 50%, #82CEDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.blog-page__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #5a6b77;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Grid --- */
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* --- Card --- */
.blog-page__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(43, 61, 73, 0.06),
    0 8px 24px rgba(43, 61, 73, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-page__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 12px rgba(43, 61, 73, 0.1),
    0 20px 40px rgba(43, 61, 73, 0.15);
}

/* Media */
.blog-page__card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-page__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-page__card:hover .blog-page__card-media img {
  transform: scale(1.08);
}

.blog-page__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(43, 61, 73, 0) 0%,
    rgba(43, 61, 73, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-page__card:hover .blog-page__card-overlay {
  opacity: 1;
}

.blog-page__card-read {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 12px 24px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.blog-page__card:hover .blog-page__card-read {
  transform: translateY(0);
}

/* Body */
.blog-page__card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta */
.blog-page__card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f5;
}

.blog-page__card-date,
.blog-page__card-views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8a9aa6;
  letter-spacing: 0.5px;
}

.blog-page__card-date svg,
.blog-page__card-views svg {
  flex-shrink: 0;
  color: #199BDF;
}

/* Title */
.blog-page__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  color: #2B3D49;
  margin: 0 0 14px;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-page__card:hover .blog-page__card-title {
  color: #199BDF;
}

.blog-page__card-title a {
  color: inherit;
  text-decoration: none;
}

/* Text */
.blog-page__card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #5a6b77;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Link */
.blog-page__card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #199BDF;
  text-decoration: none;
  padding: 12px 0;
  border-top: 1px solid #eef2f5;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-page__card-link:hover {
  color: #2B3D49;
  gap: 14px;
}

.blog-page__card-link-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 16px;
}

.blog-page__card-link:hover .blog-page__card-link-arrow {
  transform: translateX(4px);
}

/* --- Pagination --- */
.blog-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.blog-page__pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2B3D49;
  background: #ffffff;
  border: 2px solid #e5ebee;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-page__pagination-btn:hover {
  background: #199BDF;
  border-color: #199BDF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 155, 223, 0.3);
}

.blog-page__pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-page__pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #5a6b77;
  background: #ffffff;
  border: 2px solid #e5ebee;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-page__pagination-page:hover {
  background: #f5f7f9;
  border-color: #199BDF;
  color: #199BDF;
}

.blog-page__pagination-page._active {
  background: linear-gradient(135deg, #199BDF 0%, #82CEDE 100%);
  border-color: #199BDF;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(25, 155, 223, 0.3);
}

.blog-page__pagination-dots {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #8a9aa6;
  padding: 0 4px;
}

/* --- Empty state --- */
.blog-page__empty {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px dashed #e5ebee;
}

.blog-page__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(25, 155, 223, 0.1) 0%, rgba(130, 206, 222, 0.1) 100%);
  border-radius: 50%;
  color: #199BDF;
  margin-bottom: 24px;
}

.blog-page__empty-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #2B3D49;
  margin: 0 0 12px;
}

.blog-page__empty-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #5a6b77;
  margin: 0 0 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.blog-page__empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #2B3D49 0%, #4C7587 100%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(43, 61, 73, 0.25);
}

.blog-page__empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 155, 223, 0.4);
}

.blog-page__empty-btn-arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.blog-page__empty-btn:hover .blog-page__empty-btn-arrow {
  transform: translateX(4px);
}
/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.article {
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse at top left, rgba(130, 206, 222, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(25, 155, 223, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  min-height: 100vh;
}

.article__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Breadcrumbs --- */
.article__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #8a9aa6;
}

.article__breadcrumbs-link {
  color: #5a6b77;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article__breadcrumbs-link:hover {
  color: #199BDF;
}

.article__breadcrumbs-sep {
  color: #c3cdd4;
  font-size: 12px;
}

.article__breadcrumbs-current {
  color: #199BDF;
  font-weight: 600;
}

/* --- Header --- */
.article__header {
  margin-bottom: 50px;
  text-align: center;
}

.article__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.article__label-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #199BDF, #82CEDE);
}

.article__label-text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #199BDF;
  text-transform: uppercase;
}

.article__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #2B3D49 0%, #4C7587 50%, #82CEDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 30px;
}

.article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #eef2f5;
}

.article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5a6b77;
  letter-spacing: 0.3px;
}

.article__meta-item svg {
  flex-shrink: 0;
  color: #199BDF;
}

/* --- Featured image --- */
.article__featured {
  margin: 0 0 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(43, 61, 73, 0.1),
    0 20px 50px rgba(43, 61, 73, 0.15);
  position: relative;
}

.article__featured::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border: 2px solid rgba(25, 155, 223, 0.15);
  border-radius: 20px;
  z-index: -1;
  pointer-events: none;
}

.article__featured img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* --- Body --- */
.article__body {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 70px;
  box-shadow:
    0 2px 8px rgba(43, 61, 73, 0.06),
    0 8px 24px rgba(43, 61, 73, 0.08);
  margin-bottom: 60px;
}

/* --- Content (текст статьи) --- */
.article__content {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #2B3D49;
}

.article__content p {
  margin: 0 0 20px;
}

.article__content p:first-child::first-letter {
  font-size: 52px;
  font-weight: 900;
  float: left;
  line-height: 1;
  margin: 4px 12px 0 0;
  padding: 8px 14px;
  background: linear-gradient(135deg, #199BDF 0%, #82CEDE 100%);
  color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(25, 155, 223, 0.3);
}

.article__content h2,
.article__content h3,
.article__content h4 {
  font-weight: 800;
  color: #2B3D49;
  margin: 35px 0 18px;
  line-height: 1.3;
  position: relative;
  padding-left: 20px;
}

.article__content h2 {
  font-size: 28px;
}

.article__content h3 {
  font-size: 22px;
}

.article__content h4 {
  font-size: 18px;
}

.article__content h2::before,
.article__content h3::before,
.article__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #199BDF, #82CEDE);
  border-radius: 3px;
}

.article__content strong,
.article__content b {
  color: #199BDF;
  font-weight: 700;
}

.article__content em,
.article__content i {
  color: #4C7587;
  font-style: italic;
}

.article__content a {
  color: #199BDF;
  text-decoration: none;
  border-bottom: 1px dashed rgba(25, 155, 223, 0.4);
  transition: all 0.3s ease;
}

.article__content a:hover {
  color: #0d7ab3;
  border-bottom-color: #0d7ab3;
}

.article__content ul,
.article__content ol {
  margin: 20px 0;
  padding-left: 28px;
}

.article__content li {
  margin-bottom: 10px;
  position: relative;
}

.article__content ul li::marker {
  color: #199BDF;
}

.article__content blockquote {
  margin: 30px 0;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(25, 155, 223, 0.05) 0%, rgba(130, 206, 222, 0.05) 100%);
  border-left: 4px solid #199BDF;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #2B3D49;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
}

.article__content blockquote::before {
  content: """;
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: Georgia, serif;
  font-size: 72px;
  color: #199BDF;
  opacity: 0.3;
  line-height: 1;
}

.article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 4px 16px rgba(43, 61, 73, 0.1);
}

.article__content code {
  background: #f5f7f9;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 15px;
  color: #199BDF;
}

.article__content pre {
  background: #2B3D49;
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 25px 0;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
}

.article__content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5ebee, transparent);
  margin: 40px 0;
}

/* --- Divider --- */
.article__divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}

.article__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5ebee, transparent);
}

.article__divider-icon {
  color: #199BDF;
  font-size: 18px;
}

/* --- Share --- */
.article__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 28px;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #eef2f5;
}

.article__share-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2B3D49;
  letter-spacing: 0.3px;
}

.article__share-buttons {
  display: flex;
  gap: 12px;
}

.article__share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(43, 61, 73, 0.08);
}

.article__share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(25, 155, 223, 0.3);
}

.article__share-btn--tg:hover {
  background: linear-gradient(135deg, #199BDF 0%, #82CEDE 100%);
}

.article__share-btn--wa:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.article__share-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.article__share-btn:hover img {
  filter: brightness(0) invert(1);
}

/* --- Related articles --- */
.article__related {
  margin-bottom: 60px;
}

.article__related-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2B3D49;
  text-align: center;
  margin: 0 0 40px;
  position: relative;
  padding-bottom: 20px;
}

.article__related-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #199BDF, #82CEDE);
  border-radius: 2px;
}

.article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article__related-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 2px 8px rgba(43, 61, 73, 0.06),
    0 8px 20px rgba(43, 61, 73, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.article__related-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 12px rgba(43, 61, 73, 0.1),
    0 16px 36px rgba(43, 61, 73, 0.15);
}

.article__related-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.article__related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article__related-card:hover .article__related-card-img img {
  transform: scale(1.08);
}

.article__related-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article__related-card-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #199BDF;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.article__related-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #2B3D49;
  margin: 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article__related-card:hover .article__related-card-title {
  color: #199BDF;
}

/* --- Back button --- */
.article__back {
  text-align: center;
}

.article__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2B3D49;
  background: #ffffff;
  border: 2px solid #e5ebee;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(43, 61, 73, 0.06);
}

.article__back-btn:hover {
  background: linear-gradient(135deg, #199BDF 0%, #82CEDE 100%);
  border-color: #199BDF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 155, 223, 0.3);
}

.article__back-btn svg {
  transition: transform 0.3s ease;
}

.article__back-btn:hover svg {
  transform: translateX(-4px);
}

/* ============================================================
   ARTICLE — АДАПТИВ
   ============================================================ */

@media (max-width: 1100px) {
  .article__container {
    padding: 0 30px;
  }

  .article__body {
    padding: 50px;
  }
}

@media (max-width: 995px) {
  .article__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Третья карточка — по центру */
  .article__related-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .article {
    padding: 110px 0 60px;
  }

  .article__container {
    padding: 0 20px;
  }

  .article__breadcrumbs {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .article__header {
    margin-bottom: 35px;
  }

  .article__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .article__meta {
    gap: 16px;
    padding-top: 20px;
  }

  .article__meta-item {
    font-size: 12px;
  }

  .article__featured {
    margin-bottom: 35px;
  }

  .article__body {
    padding: 30px 24px;
    margin-bottom: 40px;
  }

  .article__content {
    font-size: 16px;
  }

  .article__content p:first-child::first-letter {
    font-size: 42px;
    padding: 6px 10px;
  }

  .article__content h2 {
    font-size: 24px;
  }

  .article__content h3 {
    font-size: 20px;
  }

  .article__content h4 {
    font-size: 17px;
  }

  .article__content blockquote {
    padding: 20px 22px;
    font-size: 16px;
  }

  .article__share {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .article__related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article__related-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .article__related-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .article {
    padding: 100px 0 50px;
  }

  .article__container {
    padding: 0 16px;
  }

  .article__breadcrumbs {
    margin-bottom: 24px;
  }

  .article__title {
    font-size: 26px;
  }

  .article__meta {
    flex-direction: column;
    gap: 12px;
  }

  .article__body {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .article__content {
    font-size: 15px;
    line-height: 1.7;
  }

  .article__content p:first-child::first-letter {
    font-size: 36px;
    margin: 2px 8px 0 0;
    padding: 4px 8px;
  }

  .article__content h2 {
    font-size: 22px;
    margin: 28px 0 14px;
  }

  .article__content h3 {
    font-size: 18px;
  }

  .article__content h4 {
    font-size: 16px;
  }

  .article__content blockquote {
    padding: 18px 18px 18px 22px;
    font-size: 15px;
    margin: 24px 0;
  }

  .article__content blockquote::before {
    font-size: 56px;
    top: -8px;
    left: 10px;
  }

  .article__divider {
    margin: 35px 0;
  }

  .article__share {
    padding: 18px;
  }

  .article__share-label {
    font-size: 13px;
  }

  .article__share-btn {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .article__related-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .article__related-card-body {
    padding: 16px;
  }

  .article__related-card-title {
    font-size: 15px;
  }

  .article__back-btn {
    padding: 14px 28px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}
/* ============================================================
   BLOG PAGE — АДАПТИВ
   ============================================================ */

@media (max-width: 1100px) {
  .blog-page__container {
    padding: 0 30px;
  }

  .blog-page__grid {
    gap: 24px;
  }

  .blog-page__card-body {
    padding: 24px;
  }
}

@media (max-width: 995px) {
  .blog-page {
    padding: 120px 0 80px;
  }

  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-page__card-title {
    font-size: 18px;
    min-height: 50px;
  }

  .blog-page__pagination {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .blog-page {
    padding: 110px 0 60px;
  }

  .blog-page__container {
    padding: 0 20px;
  }

  .blog-page__header {
    margin-bottom: 50px;
  }

  .blog-page__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .blog-page__card-body {
    padding: 22px;
  }

  .blog-page__card-title {
    font-size: 18px;
    min-height: auto;
  }

  .blog-page__pagination-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .blog-page__pagination-page {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-page {
    padding: 100px 0 50px;
  }

  .blog-page__container {
    padding: 0 16px;
  }

  .blog-page__header {
    margin-bottom: 40px;
  }

  .blog-page__subtitle {
    font-size: 15px;
  }

  .blog-page__card-body {
    padding: 20px 18px;
  }

  .blog-page__card-meta {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .blog-page__card-date,
  .blog-page__card-views {
    font-size: 11px;
  }

  .blog-page__card-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .blog-page__card-text {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .blog-page__card-link {
    font-size: 12px;
  }

  .blog-page__pagination {
    gap: 12px;
  }

  .blog-page__pagination-btn span {
    display: none;
  }

  .blog-page__pagination-pages {
    gap: 6px;
  }

  .blog-page__pagination-page {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .blog-page__empty {
    padding: 60px 20px;
  }

  .blog-page__empty-icon {
    width: 80px;
    height: 80px;
  }

  .blog-page__empty-icon svg {
    width: 48px;
    height: 48px;
  }

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

  .blog-page__empty-text {
    font-size: 14px;
  }

  .blog-page__empty-btn {
    padding: 14px 28px;
    font-size: 13px;
  }
}