/* ==========================================================================
   MAPS TOWING — SINGLE ARTICLE
   ========================================================================== */

/* Hero */
.art-hero {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.art-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.04) 100%);
}

.art-hero__crumbs {
  position: absolute;
  top: 112px;
  left: 0;
  right: 0;
  padding-left: var(--side-pad);
}

.art-hero__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px var(--side-pad) 52px;
  background: linear-gradient(0deg, #000 28.839%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.art-hero__title {
  max-width: 1200px;
  font-size: 72px;
  font-weight: 700;
  line-height: 78px;
  color: var(--graphite-50);
  text-shadow: 0 4px 32px rgba(255, 56, 0, 0.12), 0 4px 40px rgba(0, 0, 0, 0.32);
}

.art-hero__title span {
  color: var(--primary-2);
}

.art-hero__date {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.16px;
  color: #b2b2b2;
}

/* Layout */
.article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 0 var(--side-pad) 72px;
}

.article__side {
  position: sticky;
  top: 24px;
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 72px;
}

.article__main {
  flex: 0 1 934px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 72px;
}

/* CTA card */
.cta-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.cta-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--graphite-900);
}

.cta-card__sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-700);
}

.cta-card__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Related services */
.svc-related {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-related__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--graphite-900);
}

.svc-related__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-mini {
  display: flex;
  align-items: stretch;
  height: 120px;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.svc-mini:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.svc-mini__img {
  position: relative;
  flex: none;
  width: 120px;
}

.svc-mini__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-mini__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.32) 100%);
}

.svc-mini__line {
  position: relative;
  flex: none;
  width: 2px;
}

.svc-mini__line img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(90deg);
}

.svc-mini__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 16px 12px;
}

.svc-mini__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--graphite-950);
}

.svc-mini__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 19px;
  color: var(--graphite-450);
}

/* Article body */
.art-sec {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.art-sec__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--graphite-900);
}

.art-sec__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-700);
}

.article__main :where(ul, ol) {
  margin: 0;
  padding-left: 24px;
}

.art-sec__body :where(ul, ol) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article__main :where(ul, ol) :where(ul, ol) {
  margin-top: 4px;
  padding-left: 20px;
}

.article__main li {
  padding-left: 4px;
}

/* Share */
.art-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.art-share__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-900);
}

.art-share__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.art-share__link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.art-share__link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.art-share__link img {
  width: 100%;
  height: 100%;
}

/* Related articles */
.related {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad) 144px;
}

.related > .sec-head {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.related > .sec-head .sec-head__text {
  max-width: 650px;
}

.related > .sec-head > .btn {
  flex: 0 0 auto;
  width: auto;
}

@media (max-width: 1023.98px) {
  .art-hero__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.19) 41%);
  }

  .art-hero__crumbs {
    top: 96px;
    padding-left: var(--side-pad-mobile);
    padding-right: var(--side-pad-mobile);
  }

  .art-hero__band {
    gap: 16px;
    padding: 60px var(--side-pad-mobile) 40px;
  }

  .art-hero__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 50px;
  }

  .article {
    flex-direction: column;
    gap: 32px;
    padding: 0 var(--side-pad-mobile) 72px;
  }

  .article__main {
    order: 1;
    width: 100%;
    padding-top: 72px;
  }

  .article__main :where(ul, ol) {
    padding-left: 24px;
    padding-right: 2px;
  }

  .article__main :where(ul, ol) :where(ul, ol) {
    padding-left: 20px;
  }

  .article__main li {
    overflow-wrap: anywhere;
  }

  .article__side {
    order: 2;
    position: static;
    flex: none;
    width: 100%;
    gap: 32px;
    padding-top: 0;
  }

  .cta-card__title {
    font-size: 18px;
    line-height: 22px;
  }

  .cta-card__sub {
    font-size: 14px;
    line-height: 19px;
  }

  .cta-card__btns .btn {
    height: 48px;
    padding: 12px 20px;
  }

  .cta-card__btns .icn {
    width: 18px;
    height: 18px;
  }

  .svc-related__title {
    font-size: 18px;
    line-height: 22px;
  }

  .art-sec__title {
    font-size: 20px;
    line-height: 24px;
  }

  .related {
    gap: 24px;
    padding: 72px var(--side-pad-mobile) 144px;
  }

  .related > .sec-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
