/* контейнер */
.page-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}
.breadcrumbs {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}
.breadcrumbs a {
  color: #0073e6;
  text-decoration: none;
}
.breadcrumbs span {
  color: #333;
}

/* заголовок */
.article-title {
  font-size: 1.8rem;
  color: #0073e6;
  font-weight: 700;
  margin-bottom: 8px;
}

/* дата */
.article-date {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

/* картинка */
.article-gallery {
  display: flex;
  gap: 16px;       
  margin-bottom: 24px;
}

.article-gallery .article-image {
  flex: 1;
}

.article-gallery .article-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* стили лайтбокса */


.article-gallery .article-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.28s cubic-bezier(.4,1.5,.5,1), box-shadow 0.28s;
  will-change: transform;
}
.article-gallery .article-image:hover img {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(0,115,230,0.17);
  z-index: 2;
}



/* текст статьи */
.article-content {
  line-height: 1.6;
  color: #333;
}
.article-content p {
  margin-bottom: 16px;
}
.article-author {
  font-weight: 600;
  margin-top: 32px;
}

/* кнопка назад */
.btn-back {
  display: inline-flex;
  align-items: center;
  margin: 32px 0;
  padding: 10px 16px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.2s;
}
.btn-back:hover {
  background: #005bb5;
}
.btn-back::before {
  content: "←";
  margin-right: 8px;
}



/* адаптив */
@media (max-width: 600px) {
  .article-title { font-size: 1.5rem; }
  .article-image img { margin-bottom: 16px; }
}
