:root {
  --bg-color: #f3f6f9;
  --card-bg: #ffffff;
  --text-primary: #0f172a; /* dark slate/navy */
  --text-secondary: #475569; /* medium slate */
  --link-color: #1e3a8a; /* corporate blue/navy */
  --link-hover: #b91c1c; /* TVS red */
  --border-color: #e2e8f0;
  --accent-color: #b91c1c; /* red accent */
  
  --font-serif: "Merriweather", "Georgia", "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.8;
  padding: 40px 20px;
}

/* Main Container - Centered Single Column */
.main-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Article Styling */
article {
  background-color: var(--card-bg);
  padding: 50px 60px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.article-category {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 12px;
}

h1.article-title {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

/* Image immediately below H1 */
.hero-image-wrapper {
  margin: 0 -60px 35px -60px; /* pull image to edges of the card */
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}

.image-caption {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  padding: 12px 60px;
  background-color: #f8fafc;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* Content Typography & Justify Alignment */
.article-content {
  font-family: var(--font-serif);
  color: #1e293b;
  font-size: 19px;
  line-height: 1.85;
}

.article-content p {
  margin-bottom: 25px;
  text-align: justify;
  text-justify: inter-word;
}

.article-content h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  margin: 45px 0 20px 0;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.article-content h3 {
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 700;
  margin: 30px 0 15px 0;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

/* Styled anchors with redirections */
.blog-redirect-link {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.blog-redirect-link:hover {
  color: var(--link-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }

  article {
    padding: 30px 20px;
    border-radius: 6px;
  }
  
  h1.article-title {
    font-size: 28px;
  }
  
  .hero-image-wrapper {
    margin: 0 -20px 25px -20px;
  }
  
  .image-caption {
    padding: 10px 20px;
  }
}
