.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 2rem; align-items: start; }
.article-main { position: relative; padding: clamp(1.6rem, 4vw, 3.25rem); border: 1px solid var(--ref-line); border-radius: 16px; background: #fff; box-shadow: var(--ref-shadow); }
.article-dropcap { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 1.5rem; border-radius: 18px 6px 18px 18px; color: #fff; background: var(--ref-red); font-size: 1.7rem; }
.article-body { margin: 0; color: #4e535b; font-size: 1.03rem; line-height: 2.25; white-space: pre-line; }
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--ref-line); }
.article-tags span { padding: .42rem .75rem; border-radius: 999px; color: var(--ref-red); background: rgba(236, 50, 55, .07); font-size: .78rem; }
.article-aside { position: sticky; top: 105px; padding: 1.5rem; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #303136, #17181b); }
.article-aside h2 { margin: 1rem 0; font-weight: 800; }
.article-aside p { margin: .45rem 0; color: rgba(255, 255, 255, .62); }
.share-row { display: flex; gap: .5rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .1); }
.share-row a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; color: #fff; background: rgba(255, 255, 255, .08); }
.comments-container { max-width: 920px; }
.empty-state { display: flex; align-items: center; gap: .85rem; padding: 1.25rem 1.4rem; border: 1px dashed rgba(236, 50, 55, .3); border-radius: 12px; color: var(--ref-muted); background: rgba(255, 255, 255, .8); }
.empty-state i { color: var(--ref-red); font-size: 1.4rem; }
.service-detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border: 1px solid var(--ref-line); border-radius: 18px; background: #fff; box-shadow: var(--ref-shadow); }
.service-detail-copy, .service-detail-highlights { padding: clamp(2rem, 5vw, 4rem); }
.service-detail-copy { align-self: center; }
.service-detail-copy h2, .service-detail-highlights h2 { margin: 1rem 0; font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 800; }
.service-detail-copy p { margin-bottom: 1.5rem; color: var(--ref-muted); line-height: 2.1; }
.service-detail-highlights { background: var(--ref-soft); }
@media (max-width: 991.98px) { .article-layout, .service-detail-grid { grid-template-columns: 1fr; } .article-aside { position: static; } }

/* Real photography detail views */
.article-hero-image {
  height: clamp(280px, 43vw, 510px);
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: 20px 7px 20px 20px;
  background: #e8ecef;
  box-shadow: var(--ref-shadow);
}
.article-hero-image img,
.service-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-image {
  height: clamp(220px, 27vw, 330px);
  margin-bottom: 1.75rem;
  border-radius: 15px 5px 15px 15px;
  background: #e8ecef;
}