/* ============================================================
   THE SCOTTISH CROWN
   ARTICLE PAGE STYLESHEET
   Shared article content styling for press releases and long-form pages
============================================================ */

body {
  margin: 0;
  font-family: "Garamond", "Segoe UI", serif;
  background-color: #f5f5f5;
  color: #111;
  line-height: 1.7;
}

/* ==================== GLOBAL ==================== */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #002147;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #c9a646;
  text-decoration: underline;
}

/* ==================== ARTICLE LAYOUT ==================== */
.article-shell {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px 40px;
}

.article-main {
  max-width: 960px;
  margin: 0 auto;
}

.article-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 32px;
}

/* ==================== ARTICLE HEADER ==================== */
.article-header {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e1e1e1;
}

.article-kicker {
  display: inline-block;
  font-size: 0.92em;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c9a646;
  margin-bottom: 12px;
}

.article-title {
  font-size: 2.2em;
  line-height: 1.2;
  color: #002147;
  margin: 0 0 16px;
}

.article-subtitle {
  font-size: 1.15em;
  color: #444;
  margin: 0 0 20px;
  font-style: italic;
}

.article-meta {
  font-size: 0.95em;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.article-meta span {
  display: inline-block;
}

/* ==================== ARTICLE BODY ==================== */
.article-body {
  font-size: 1.08em;
  color: #1a1a1a;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  color: #002147;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-body h1 {
  font-size: 2em;
}

.article-body h2 {
  font-size: 1.6em;
  border-left: 4px solid #c9a646;
  padding-left: 12px;
}

.article-body h3 {
  font-size: 1.3em;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body strong {
  color: #002147;
}

.article-body hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 35px 0;
}

/* ==================== CITATIONS ==================== */
.cite,
.article-citation {
  font-size: 0.92em;
  color: #666;
  margin-top: 10px;
  padding-left: 14px;
  border-left: 3px solid #c9a646;
}

.source-list {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e3e3e3;
}

.source-list h3 {
  color: #002147;
  margin-top: 0;
}

.source-list ul {
  margin: 15px 0 0 20px;
}

/* ==================== BLOCKQUOTES ==================== */
blockquote {
  border-left: 4px solid #c9a646;
  padding: 18px 20px;
  margin: 24px 0;
  color: #222;
  background: #f8f6ef;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* ==================== FEATURED MEDIA ==================== */
.article-feature-image {
  margin: 0 0 30px;
}

.article-feature-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.article-feature-caption {
  font-size: 0.9em;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

/* ==================== PULL QUOTES / CALLOUTS ==================== */
.article-callout {
  background: #002147;
  color: #fff;
  padding: 22px;
  border-left: 4px solid #c9a646;
  border-radius: 6px;
  margin: 28px 0;
}

.article-callout h3,
.article-callout h4 {
  color: #c9a646;
  margin-top: 0;
}

.article-callout a {
  color: #fff;
  text-decoration: underline;
}

.article-callout a:hover {
  color: #c9a646;
}

/* ==================== TABLES ==================== */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
}

.article-body th,
.article-body td {
  border: 1px solid #ddd;
  padding: 12px 14px;
  text-align: left;
}

.article-body th {
  background: #002147;
  color: #fff;
}

/* ==================== SHARE BUTTONS ==================== */
.share-buttons {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e3e3e3;
  text-align: center;
}

.share-buttons h3 {
  color: #002147;
  margin-bottom: 15px;
}

.share-buttons a {
  display: inline-block;
  margin: 6px 8px;
  padding: 10px 16px;
  border: 1px solid #c9a646;
  border-radius: 4px;
  color: #002147;
  background: #fff;
  font-size: 0.98em;
  font-weight: bold;
  text-decoration: none;
}

.share-buttons a:hover {
  background: #c9a646;
  color: #002147;
  text-decoration: none;
}

/* ==================== ARTICLE FOOTER NOTES ==================== */
.article-footer-note {
  margin-top: 30px;
  font-size: 0.95em;
  color: #666;
  text-align: center;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .article-shell {
    margin: 25px auto;
    padding: 0 14px 30px;
  }

  .article-card {
    padding: 26px 20px;
  }

  .article-title {
    font-size: 1.65em;
  }

  .article-subtitle {
    font-size: 1.02em;
  }

  .article-body {
    font-size: 1em;
  }

  .article-meta {
    flex-direction: column;
    gap: 6px;
  }

  .share-buttons a {
    display: block;
    margin: 8px 0;
  }
}