/**
 * @file
 * London Theme — single blog post styling.
 *
 * Brand-neutral, readable article layout used by node--blog-post.html.twig
 * inside page--blog-post.html.twig. The surrounding brand header/footer
 * provide brand identity; this keeps the reading experience clean and
 * consistent across all three brands.
 */

.london-blog-single {
  display: block;
  padding: 56px 20px 80px;
  background: #fff;
}

.london-blog-single__messages {
  max-width: 760px;
  margin: 0 auto 24px;
}

.london-post {
  max-width: 760px;
  margin: 0 auto;
  color: #1f2430;
  font-family: inherit;
  line-height: 1.7;
}

/* ---- Header ---- */
.london-post__head {
  margin-bottom: 28px;
}

.london-post__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #6b7280;
  margin-bottom: 22px;
  transition: color .15s ease;
}
.london-post__back:hover { color: #111827; }

.london-post__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b4530a;
  background: #fdf1e7;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.london-post__title {
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #11161f;
}

.london-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: #6b7280;
}
.london-post__meta span { position: relative; }
.london-post__meta .london-post__by::before {
  content: "·";
  margin-right: 18px;
  color: #cbd2dc;
}

/* ---- Featured image ---- */
.london-post__media {
  margin: 0 0 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(17, 22, 31, .45);
}
.london-post__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Body copy ---- */
.london-post__body {
  font-size: 18px;
  color: #2b313c;
}
.london-post__body > * { margin: 0 0 22px; }
.london-post__body h2 {
  font-size: 28px;
  font-weight: 750;
  line-height: 1.25;
  margin: 40px 0 14px;
  color: #11161f;
}
.london-post__body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #11161f;
}
.london-post__body a {
  color: #b4530a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.london-post__body ul,
.london-post__body ol { padding-left: 1.4em; }
.london-post__body li { margin-bottom: 8px; }
.london-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.london-post__body blockquote {
  margin: 28px 0;
  padding: 6px 22px;
  border-left: 4px solid #e6ae76;
  color: #495162;
  font-style: italic;
}

/* ---- Footer ---- */
.london-post__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eceff3;
}

/* Brand accent tweaks (use each brand's own palette where it reads well). */
.london-blog-single--arc .london-post__cat { color: #1d4ed8; background: #eef3ff; }
.london-blog-single--arc .london-post__body a,
.london-blog-single--arc .london-post__back:hover { color: #1d4ed8; }

.london-blog-single--svc .london-post__cat { color: #5a7d3c; background: #eef4e6; }
.london-blog-single--svc .london-post__body a { color: #8a5a2b; }
