/* ============================================================
   LeicesterToday — Shared Stylesheet
   One file. Every article loads this. Nothing else.
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   SITE NAV
   ============================================================ */
.lt-nav {
  background: #1A1A2E;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.lt-nav__logo {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.lt-nav__logo span { color: #E8C84A; }
.lt-nav__links { display: flex; gap: 20px; flex-wrap: wrap; }
.lt-nav__links a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.lt-nav__links a:hover { color: #E8C84A; }

/* ============================================================
   CATEGORY TOP BANNER
   Usage: <div class="lt-banner lt-banner--sport">Sport · ...</div>
   ============================================================ */
.lt-banner {
  padding: 7px 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}
.lt-banner--news     { background: #1D6FA4; }
.lt-banner--sport    { background: #2E7D32; }
.lt-banner--food     { background: #D85A30; }
.lt-banner--events   { background: #0F6E56; }
.lt-banner--community{ background: #5F5E5A; }
.lt-banner--council  { background: #3C3489; }

/* Pulse dot for live/upcoming banners */
.lt-banner__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8C84A;
  margin-right: 8px;
  animation: lt-pulse 2s infinite;
  vertical-align: middle;
}
@keyframes lt-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ============================================================
   ARTICLE WRAPPER
   ============================================================ */
.lt-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ============================================================
   CATEGORY TAGS
   Usage: <span class="lt-tag lt-tag--sport">Sport</span>
   ============================================================ */
.lt-tag {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 18px;
  margin-right: 6px;
  color: #fff;
}
.lt-tag--news      { background: #1D6FA4; }
.lt-tag--sport     { background: #2E7D32; }
.lt-tag--food      { background: #D85A30; }
.lt-tag--events    { background: #0F6E56; }
.lt-tag--community { background: #5F5E5A; }
.lt-tag--council   { background: #3C3489; }
.lt-tag--breaking  { background: #C0392B; }
.lt-tag--gold      { background: #E8C84A; color: #1A1A2E; }
.lt-tag--free      { background: #C0392B; }
.lt-tag--updated   { background: #2E7D32; }

/* ============================================================
   ARTICLE TYPOGRAPHY
   ============================================================ */
.lt-article h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #1A1A2E;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}
.lt-article h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 52px 0 14px;
  line-height: 1.22;
}
.lt-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 36px 0 10px;
  line-height: 1.3;
}
.lt-article p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: #1A1A2E;
}

/* Standfirst / intro paragraph */
.lt-standfirst {
  font-size: 19px;
  color: #3a3a50;
  line-height: 1.55;
  margin-bottom: 24px;
  font-style: italic;
  padding-left: 18px;
  border-left-width: 4px;
  border-left-style: solid;
}
.lt-standfirst--news      { border-left-color: #1D6FA4; }
.lt-standfirst--sport     { border-left-color: #C0392B; }
.lt-standfirst--food      { border-left-color: #D85A30; }
.lt-standfirst--events    { border-left-color: #0F6E56; }
.lt-standfirst--community { border-left-color: #E8C84A; }
.lt-standfirst--council   { border-left-color: #3C3489; }

/* Article meta line */
.lt-meta {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #6B6B6B;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D3D1C7;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}
.lt-meta strong { color: #1A1A2E; }

/* Drop cap */
.lt-dropcap::first-letter {
  float: left;
  font-size: 68px;
  line-height: 0.78;
  padding-right: 10px;
  padding-top: 6px;
  font-weight: 700;
  font-family: Georgia, serif;
}
.lt-dropcap--news      ::first-letter,
.lt-dropcap--news::first-letter      { color: #1D6FA4; }
.lt-dropcap--sport::first-letter     { color: #2E7D32; }
.lt-dropcap--food::first-letter      { color: #D85A30; }
.lt-dropcap--events::first-letter    { color: #0F6E56; }
.lt-dropcap--community::first-letter { color: #E8C44A; }

/* Section rule */
.lt-rule {
  border: none;
  border-top-width: 2px;
  border-top-style: solid;
  width: 60px;
  margin: 52px 0;
}
.lt-rule--news      { border-top-color: #1D6FA4; }
.lt-rule--sport     { border-top-color: #2E7D32; }
.lt-rule--food      { border-top-color: #D85A30; }
.lt-rule--events    { border-top-color: #0F6E56; }
.lt-rule--community { border-top-color: #E8C84A; }
.lt-rule--gold      { border-top-color: #E8C84A; }

/* ============================================================
   PULL QUOTE / BLOCKQUOTE
   ============================================================ */
.lt-article blockquote {
  background: #fff;
  border-left-width: 5px;
  border-left-style: solid;
  border-left-color: #E8C84A;
  padding: 22px 26px;
  margin: 36px 0;
  border-radius: 0 8px 8px 0;
}
.lt-article blockquote p {
  font-size: 21px;
  font-style: italic;
  color: #1A1A2E;
  line-height: 1.5;
  margin: 0;
}
.lt-article blockquote cite {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #6B6B6B;
  margin-top: 10px;
  font-style: normal;
}

/* ============================================================
   INFO / DARK BOX  (facts, tips, key details on dark bg)
   ============================================================ */
.lt-darkbox {
  background: #1A1A2E;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 36px 0;
}
.lt-darkbox__label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8C84A;
  margin-bottom: 14px;
}
.lt-darkbox ul, .lt-darkbox ol {
  list-style: none;
  padding: 0;
}
.lt-darkbox ul li, .lt-darkbox ol li {
  font-family: Georgia, serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  line-height: 1.6;
}
.lt-darkbox ul li:last-child,
.lt-darkbox ol li:last-child { border-bottom: none; }
.lt-darkbox ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #E8C84A;
  font-size: 14px;
  top: 9px;
}
.lt-darkbox ul li strong { color: #E8C84A; }

/* 2-column info grid inside dark box */
.lt-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.lt-info-cell__label {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.lt-info-cell__value {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.lt-info-cell__value--highlight { color: #E8C84A; }

/* ============================================================
   LIGHT TIP / ADVICE BOX
   ============================================================ */
.lt-tipbox {
  border-left-width: 4px;
  border-left-style: solid;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.lt-tipbox--events   { background: #E1F5EE; border-left-color: #0F6E56; }
.lt-tipbox--food     { background: #FFF0EA; border-left-color: #D85A30; }
.lt-tipbox--sport    { background: #EAF3DE; border-left-color: #2E7D32; }
.lt-tipbox--news     { background: #E6F1FB; border-left-color: #1D6FA4; }
.lt-tipbox--warning  { background: #FCEBEB; border-left-color: #C0392B; }
.lt-tipbox--gold     { background: #FFF9E6; border-left-color: #E8C84A; }

.lt-tipbox__label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lt-tipbox--events  .lt-tipbox__label { color: #085041; }
.lt-tipbox--food    .lt-tipbox__label { color: #712B13; }
.lt-tipbox--sport   .lt-tipbox__label { color: #27500A; }
.lt-tipbox--news    .lt-tipbox__label { color: #0C447C; }
.lt-tipbox--warning .lt-tipbox__label { color: #C0392B; }
.lt-tipbox--gold    .lt-tipbox__label { color: #633806; }

.lt-tipbox ul { list-style: none; padding: 0; }
.lt-tipbox ul li {
  font-family: Georgia, serif;
  font-size: 15.5px;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  line-height: 1.6;
}
.lt-tipbox ul li:last-child { border-bottom: none; }
.lt-tipbox ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.lt-tipbox--events  ul li,
.lt-tipbox--events  ul li::before { color: #085041; }
.lt-tipbox--food    ul li,
.lt-tipbox--food    ul li::before { color: #712B13; }
.lt-tipbox--sport   ul li,
.lt-tipbox--sport   ul li::before { color: #27500A; }
.lt-tipbox--news    ul li,
.lt-tipbox--news    ul li::before { color: #0C447C; }
.lt-tipbox--warning ul li         { color: #1A1A2E; }
.lt-tipbox--warning ul li::before { color: #C0392B; content: "!"; }
.lt-tipbox--gold    ul li,
.lt-tipbox--gold    ul li::before { color: #633806; }

/* ============================================================
   STAT ROW  (3 dark metric cards)
   ============================================================ */
.lt-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0;
}
.lt-stat-card {
  background: #1A1A2E;
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
}
.lt-stat-card__number {
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E8C84A;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.lt-stat-card__label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ============================================================
   WHITE CARD  (restaurant cards, venue cards, general content)
   ============================================================ */
.lt-card {
  background: #fff;
  border: 1px solid #D3D1C7;
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0;
}
.lt-card__header {
  background: #1A1A2E;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.lt-card__title {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #E8C84A;
  line-height: 1.2;
}
.lt-card__subtitle {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.lt-card__badge {
  background: #E8C84A;
  color: #1A1A2E;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.lt-card__body {
  padding: 20px;
}
.lt-card__body p {
  font-size: 16.5px;
  margin-bottom: 14px;
}

/* Best-for strip at bottom of a card */
.lt-card__bestfor {
  background: #FFF9E6;
  border-left: 3px solid #E8C84A;
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  margin-top: 14px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #1A1A2E;
}
.lt-card__bestfor strong { color: #633806; }

/* Pill tags at bottom of card */
.lt-pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.lt-pill {
  background: #F5F3EE;
  border: 1px solid #D3D1C7;
  color: #444441;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
}

/* ============================================================
   TABLE (comparison, league table, fixture list)
   ============================================================ */
.lt-table-wrap {
  background: #fff;
  border: 1px solid #D3D1C7;
  border-radius: 10px;
  overflow: hidden;
  margin: 36px 0;
}
.lt-table-wrap__header {
  padding: 10px 16px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.lt-table-wrap__header--news     { background: #1A1A2E; color: #E8C84A; }
.lt-table-wrap__header--sport    { background: #2E7D32; }
.lt-table-wrap__header--food     { background: #D85A30; }
.lt-table-wrap__header--events   { background: #0F6E56; }
.lt-table-wrap__header--dark     { background: #1A1A2E; color: #E8C84A; }

.lt-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 13px;
}
.lt-table-wrap th {
  background: #F5F3EE;
  color: #6B6B6B;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 14px;
  text-align: left;
}
.lt-table-wrap td {
  padding: 10px 14px;
  border-top: 1px solid #F0EDE7;
  color: #1A1A2E;
  vertical-align: top;
  line-height: 1.5;
}
.lt-table-wrap td:first-child { font-weight: 600; }
.lt-table-wrap tr:hover td { background: #FAFAF8; }
.lt-table-wrap .lt-tr--highlight td { background: #FFF9E6; font-weight: 700; }
.lt-table-wrap .lt-tr--danger td   { background: #fff5f5; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.lt-toc {
  background: #fff;
  border: 1px solid #D3D1C7;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 0 0 40px;
}
.lt-toc__title {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5F5E5A;
  margin-bottom: 12px;
}
.lt-toc ol {
  padding-left: 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #1A1A2E;
  line-height: 2.1;
}
.lt-toc ol li a {
  color: #1A1A2E;
  text-decoration: none;
  border-bottom: 1px solid #D3D1C7;
}
.lt-toc ol li a:hover { border-color: #E8C84A; }

/* ============================================================
   ARTICLE FOOTER & TAGS
   ============================================================ */
.lt-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #D3D1C7;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #6B6B6B;
}
.lt-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.lt-footer__tag {
  background: #fff;
  border: 1px solid #D3D1C7;
  color: #1A1A2E;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.lt-footer__tag:hover { border-color: #E8C84A; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .lt-article h1   { font-size: 26px; }
  .lt-article h2   { font-size: 22px; }
  .lt-article p    { font-size: 16.5px; }
  .lt-standfirst   { font-size: 16.5px; }
  .lt-article blockquote p { font-size: 18px; }
  .lt-stat-row     { grid-template-columns: 1fr 1fr; }
  .lt-info-grid    { grid-template-columns: 1fr; }
  .lt-card__header { flex-direction: column; gap: 8px; }
  .lt-nav__links   { gap: 12px; }
}