/* Full article page */

/* Semi-transparent bar under menu over hero image */
body.motorgt-single .site-header:not(.site-header--solid) {
  background: rgba(8, 16, 28, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-hero {
  position: relative;
  min-height: 320px;
  background: #102033 center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 0;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.55), rgba(8, 16, 28, 0.35) 60%, #fff 100%);
}

.article-page {
  padding: 28px 0 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 14px;
}

.article h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.article-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 24px;
  font-weight: 600;
}

.article-cover {
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 10px;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-caption {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
}

.article-quote {
  margin: 28px 0;
  padding: 22px 24px 22px 28px;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  border-radius: 0 12px 12px 0;
}

.article-quote p {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #155fa8;
  line-height: 1.45;
}

.article-quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.gallery {
  margin: 28px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.gallery__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0 18px;
}

.article-tags > span {
  font-weight: 700;
  margin-right: 4px;
}

.share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
}

.share span {
  font-weight: 700;
}

.share__btns {
  display: flex;
  gap: 8px;
}

.share__btns a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share__btns a:hover {
  background: var(--blue);
  color: #fff;
}

.side-news {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-news li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.side-news li:last-child {
  border-bottom: 0;
}

.side-news img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.side-news .badge {
  font-size: 11px;
}

.side-news .t {
  display: block;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  margin: 4px 0 4px;
}

.side-news .m {
  font-size: 12px;
  color: var(--muted);
}

.nl-box {
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: #132033 center / cover no-repeat;
  padding: 22px;
  position: relative;
}

.nl-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 30, 0.72);
}

.nl-box > * {
  position: relative;
  z-index: 1;
}

.nl-box h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.nl-box p {
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.nl-box input {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  margin-bottom: 10px;
}

.nl-box .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
