/* ================================
   СТИЛИ ДЛЯ СТРАНИЦЫ УСЛУГ (ИСПРАВЛЕНИЯ)
   ================================ */

/* Сетка услуг */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

/* Карточка услуги */
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 4px solid var(--accent-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(108, 78, 42, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  line-height: 1;
}

.service-card h3 {
  color: var(--accent-dark);
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0 0 1.5rem 0;
  padding: 0.5rem;
  background: var(--accent-glow);
  border-radius: 8px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-features li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--accent-lighter);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-description {
  background: var(--accent-glow);
  padding: 1.2rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-left: 3px solid var(--accent-light);
}

.service-description p {
  margin: 0;
}

.service-duration,
.service-requirements,
.service-validity {
  background: rgba(247, 243, 236, 0.7);
  padding: 0.8rem;
  border-radius: 8px;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  text-align: center;
  border: 1px dashed var(--accent-lighter);
}

.service-duration strong,
.service-requirements strong,
.service-validity strong {
  color: var(--accent-dark);
}

.service-actions {
  margin-top: auto;
  padding-top: 1.5rem;
}

.service-actions .btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-actions .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 78, 42, 0.3);
}

/* ================================
   ИСПРАВЛЕНИЯ ДЛЯ СЕКЦИИ FAQ
   ================================ */

.faq-section {
  margin: 4rem 0;
  width: 100%;
}

.faq-section .intro-block {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Центрирование блока FAQ */
.faq-block {
  max-width: 100%; /* Занимает всю ширину контейнера */
  margin: 2rem 0; /* Убрали auto */
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Стили для FAQ */
.faq-item {
  border: 1px solid var(--accent-lighter);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: var(--accent-glow);
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-dark);
  text-align: left;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.faq-question:hover {
  background: var(--accent-lighter);
  padding-left: 1.5rem;
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-size: 1.1rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  width: 100%;
}

.faq-answer > div {
  padding: 1.25rem;
  border-top: 1px solid var(--accent-lighter);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.faq-question[aria-expanded="true"] + .faq-answer > div {
  opacity: 1;
  transform: translateY(0);
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(to bottom, var(--accent), var(--accent-light));
  border-radius: 4px 0 0 4px;
  transition: width 0.3s ease;
}

.faq-question[aria-expanded="true"]::before {
  width: 5px;
}

.faq-answer ol,
.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}

.faq-answer strong {
  color: var(--accent-dark);
}

/* ================================
   ИСПРАВЛЕНИЯ ДЛЯ СЕКЦИИ КОНТАКТОВ
   ================================ */

.contact-section .intro-block {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.contact-section .cta-block {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-price {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
    padding-right: 3rem;
    width: 100%;
  }
  
  .faq-question::after {
    right: 1rem;
  }
  
  .faq-answer > div {
    padding: 1rem;
    width: 100%;
  }
  
  .faq-section {
    padding: 0;
    margin: 2rem 0;
  }
  
  .faq-block {
    padding: 0;
    margin: 1rem 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.2rem;
    width: 100%;
    max-width: 100%;
  }
  
  .service-icon {
    font-size: 2rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-price {
    font-size: 1.4rem;
  }
  
  .service-features li {
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
    padding-right: 2.5rem;
    width: 100%;
  }
  
  .faq-section {
    padding: 0;
  }
}

/* ================================
   ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ ЦЕНТРИРОВАНИЯ
   ================================ */

/* Убедимся, что все контейнеры занимают полную ширину */
.services-section.container,
.faq-section.container,
.contact-section.container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Исправим padding у контейнера, чтобы контент не прижимался к краям */
.services-section .container,
.faq-section .container,
.contact-section .container {
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Для intro-block внутри секций */
.services-section .intro-block,
.faq-section .intro-block,
.contact-section .intro-block {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

/* Центрирование текста в FAQ intro-block */
.faq-section .intro-block {
  text-align: center;
}

/* Исправим кнопки CTA, чтобы они были по центру */
.cta-buttons {
  justify-content: center !important;
  margin-left: auto;
  margin-right: auto;
}

/* Убедимся, что все элементы занимают полную ширину контейнера */
.faq-section .container > *,
.contact-section .container > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* ================================
   ИСПРАВЛЕНИЕ МЕТОК СТАТЕЙ - НОВЫЙ ПОДХОД
   ================================ */

/* Контейнер для метки и даты в одном ряду */
.article-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

/* Метка категории (теперь внутри потока документа) */
.article-meta-top .article-category {
  position: relative;
  top: auto;
  left: auto;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Дата в том же ряду */
.article-meta-top time {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* Удаляем старую метку из карточки */
.article-card > .article-category {
  display: none;
}

/* Обновляем позиционирование изображения */
.article-card {
  position: relative;
  overflow: hidden;
}

/* Убираем верхний отступ у заголовка, так как метка теперь в потоке */
.article-content h2 {
  margin-top: 0;
  padding-top: 0;
}

/* Обновляем article-meta (теперь только время чтения) */
.article-meta {
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.article-meta .read-time {
  margin-left: auto;
}

/* ================================
   АДАПТИВНОСТЬ ДЛЯ НОВОЙ СТРУКТУРЫ
   ================================ */

@media (max-width: 900px) {
  .article-meta-top .article-category {
    font-size: 0.75rem;
    padding: 5px 10px;
    max-width: 65%;
  }
  
  .article-meta-top time {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  /* Сетка статей на планшетах */
  .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
  }
  
  .article-meta-top {
    margin-bottom: 0.75rem;
  }
  
  .article-meta-top .article-category {
    font-size: 0.7rem;
    padding: 4px 8px;
    max-width: 60%;
  }
  
  .article-meta-top time {
    font-size: 0.75rem;
  }
  
  .article-image {
    height: 180px;
  }
  
  .article-content h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .article-excerpt p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  /* Мобильные устройства */
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .article-meta-top {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .article-meta-top .article-category {
    font-size: 0.7rem;
    padding: 5px 10px;
    max-width: 100%;
    order: 1;
  }
  
  .article-meta-top time {
    font-size: 0.75rem;
    order: 2;
    margin-left: auto;
  }
  
  .article-image {
    height: 160px;
  }
  
  .article-content {
    padding: 1.25rem;
  }
  
  .article-content h2 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0.25rem 0 0.75rem 0;
  }
  
  .article-excerpt p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Кнопки фильтрации на мобильных */
  .page-nav.filter-nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }
  
  .page-nav.filter-nav .btn-outline {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  /* Маленькие мобильные устройства */
  .article-meta-top .article-category {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
  
  .article-meta-top time {
    font-size: 0.7rem;
  }
  
  .article-image {
    height: 150px;
  }
  
  .article-content {
    padding: 1rem;
  }
  
  .article-content h2 {
    font-size: 1.1rem;
  }
  
  .article-excerpt p {
    font-size: 0.85rem;
  }
  
  .article-tags li {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  /* Счетчик статей */
  .filter-counter {
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
  }
}

/* ================================
   АЛЬТЕРНАТИВНЫЙ ВАРИАНТ (если не хотите менять HTML)
   ================================ */

/* Если нельзя изменить HTML, используйте этот CSS: */
.article-card {
  display: flex;
  flex-direction: column;
}

.article-card > .article-category {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin: 15px 15px 0 15px;
  align-self: flex-start;
  z-index: 2;
}

.article-image {
  margin-top: -25px; /* Сдвигаем изображение вверх, чтобы перекрыть метку */
  position: relative;
  z-index: 1;
}

.article-content {
  margin-top: -10px; /* Сдвигаем контент вверх */
  position: relative;
  z-index: 3;
  background: var(--card);
}

@media (max-width: 768px) {
  .article-card > .article-category {
    margin: 12px 12px 0 12px;
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  .article-image {
    margin-top: -20px;
  }
  
  .article-content {
    margin-top: -5px;
  }
}

@media (max-width: 480px) {
  .article-card > .article-category {
    margin: 10px 10px 0 10px;
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  
  .article-image {
    margin-top: -15px;
  }
}/* ================================
   ИСПРАВЛЕНИЕ МЕТОК СТАТЕЙ - НОВЫЙ ПОДХОД
   ================================ */

/* Контейнер для метки и даты в одном ряду */
.article-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

/* Метка категории (теперь внутри потока документа) */
.article-meta-top .article-category {
  position: relative;
  top: auto;
  left: auto;
  font-size: 0.9rem; /* Увеличено с 0.8rem */
  padding: 6px 12px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* СТИЛИ ДЛЯ СТАРЫХ МЕТОК (если HTML не изменялся) */
.article-card > .article-category {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin: 0 0 10px 0 !important;
  font-size: 0.9rem !important;
  padding: 6px 12px !important;
  border-radius: 12px !important;
  background: var(--accent) !important;
  color: white !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  display: inline-block !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  z-index: 2 !important;
}

/* Дата в том же ряду */
.article-meta-top time {
  color: var(--muted);
  font-size: 0.9rem; /* Увеличено с 0.85rem */
  font-weight: 500;
  flex-shrink: 0;
}

/* Обновляем позиционирование изображения */
.article-card {
  position: relative;
  overflow: hidden;
}

/* Убираем верхний отступ у заголовка, так как метка теперь в потоке */
.article-content h2 {
  margin-top: 0;
  padding-top: 0;
  font-size: 1.4rem; /* Увеличено для десктопа */
  line-height: 1.4;
}

/* Обновляем article-meta (теперь только время чтения) */
.article-meta {
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.article-meta .read-time {
  margin-left: auto;
  font-size: 0.9rem; /* Увеличено */
  padding: 3px 10px;
}

/* ================================
   АДАПТИВНОСТЬ ДЛЯ НОВОЙ СТРУКТУРЫ
   ================================ */

@media (max-width: 900px) {
  .article-meta-top .article-category {
    font-size: 0.85rem; /* Увеличено с 0.75rem */
    padding: 5px 10px;
    max-width: 65%;
  }
  
  .article-card > .article-category {
    font-size: 0.85rem !important;
    padding: 5px 10px !important;
  }
  
  .article-meta-top time {
    font-size: 0.85rem; /* Увеличено с 0.8rem */
  }
  
  .article-content h2 {
    font-size: 1.3rem; /* Увеличено */
  }
}

@media (max-width: 768px) {
  /* Сетка статей на планшетах */
  .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
  }
  
  .article-meta-top {
    margin-bottom: 0.75rem;
  }
  
  .article-meta-top .article-category {
    font-size: 0.8rem; /* Увеличено с 0.7rem */
    padding: 5px 10px; /* Увеличено с 4px 8px */
    max-width: 60%;
  }
  
  .article-card > .article-category {
    font-size: 0.8rem !important;
    padding: 5px 10px !important;
    margin-bottom: 8px !important;
  }
  
  .article-meta-top time {
    font-size: 0.8rem; /* Увеличено с 0.75rem */
  }
  
  .article-image {
    height: 180px;
  }
  
  .article-content h2 {
    font-size: 1.25rem; /* Увеличено с 1.2rem */
    line-height: 1.35; /* Увеличено с 1.3 */
    margin-bottom: 0.75rem;
  }
  
  .article-excerpt p {
    font-size: 1rem; /* Увеличено с 0.95rem */
    line-height: 1.5;
  }
  
  .article-meta .read-time {
    font-size: 0.85rem; /* Увеличено */
    padding: 4px 9px;
  }
}

@media (max-width: 640px) {
  /* Мобильные устройства */
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .article-meta-top {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .article-meta-top .article-category {
    font-size: 0.8rem; /* Увеличено с 0.7rem */
    padding: 6px 12px; /* Увеличено с 5px 10px */
    max-width: 100%;
    order: 1;
  }
  
  .article-card > .article-category {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    margin-bottom: 6px !important;
  }
  
  .article-meta-top time {
    font-size: 0.85rem; /* Увеличено с 0.75rem */
    order: 2;
    margin-left: auto;
  }
  
  .article-image {
    height: 160px;
  }
  
  .article-content {
    padding: 1.25rem;
  }
  
  .article-content h2 {
    font-size: 1.2rem; /* Увеличено с 1.15rem */
    line-height: 1.35; /* Увеличено с 1.3 */
    margin: 0.25rem 0 0.75rem 0;
  }
  
  .article-excerpt p {
    font-size: 0.95rem; /* Увеличено с 0.9rem */
    line-height: 1.5;
  }
  
  /* Увеличение шрифта для всего текста в статье */
  .article-content {
    font-size: 16px; /* Базовый размер шрифта для мобильных */
  }
  
  /* Кнопки фильтрации на мобильных */
  .page-nav.filter-nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }
  
  .page-nav.filter-nav .btn-outline {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.95rem; /* Увеличено */
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  /* Маленькие мобильные устройства */
  .article-meta-top .article-category {
    font-size: 0.75rem; /* Увеличено с 0.65rem */
    padding: 5px 10px; /* Увеличено с 4px 8px */
  }
  
  .article-card > .article-category {
    font-size: 0.75rem !important;
    padding: 5px 10px !important;
    margin-bottom: 5px !important;
  }
  
  .article-meta-top time {
    font-size: 0.8rem; /* Увеличено с 0.7rem */
  }
  
  .article-image {
    height: 150px;
  }
  
  .article-content {
    padding: 1rem;
    font-size: 15px; /* Базовый размер шрифта для маленьких экранов */
  }
  
  .article-content h2 {
    font-size: 1.15rem; /* Увеличено с 1.1rem */
    line-height: 1.3;
  }
  
  .article-excerpt p {
    font-size: 0.9rem; /* Увеличено с 0.85rem */
    line-height: 1.5;
  }
  
  .article-tags li {
    font-size: 0.75rem; /* Увеличено с 0.7rem */
    padding: 4px 8px; /* Увеличено с 3px 6px */
  }
  
  .article-meta .read-time {
    font-size: 0.8rem;
    padding: 3px 8px;
  }
  
  /* Счетчик статей */
  .filter-counter {
    font-size: 0.9rem; /* Увеличено с 0.85rem */
    margin: 0.5rem 0 1rem;
  }
  
  /* Кнопки фильтрации на маленьких экранах */
  .page-nav.filter-nav .btn-outline {
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
  }
}

/* ================================
   ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ ДЛЯ ЧИТАЕМОСТИ
   ================================ */

/* Увеличиваем межстрочный интервал для лучшей читаемости на мобильных */
@media (max-width: 768px) {
  .article-content p,
  .article-excerpt p,
  .article-tags li,
  .article-meta {
    line-height: 1.6; /* Увеличено для лучшей читаемости */
  }
  
  /* Увеличиваем отступы между элементами */
  .article-card {
    margin-bottom: 2rem;
  }
  
  /* Увеличиваем padding для кнопок */
  .article-footer .btn {
    padding: 0.85rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Еще больше увеличиваем межстрочный интервал для маленьких экранов */
  .article-content p,
  .article-excerpt p {
    line-height: 1.7;
  }
  
  /* Увеличиваем отступы между абзацами */
  .article-excerpt p {
    margin-bottom: 0.75rem;
  }
  
  /* Увеличиваем кнопки */
  .article-footer .btn {
    padding: 0.9rem;
    font-size: 1rem;
  }
}