@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-header {
  background-color: #E3120B;
  color: white;
  padding: 1rem 0;
  border-bottom: none;
}
.page-header .site-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  padding: 0 1.5rem;
}
.page-header .site-title a {
  color: white;
  text-decoration: none;
}

.site-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #E1E4E8;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.site-nav ul li {
  margin: 0;
}
.site-nav ul li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav ul li a:hover {
  border-bottom-color: #E3120B;
}

.main-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.main-content:has(.article-layout) {
  max-width: 1200px;
  padding: 2rem;
}

.page-wide {
  max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #4d4d4d;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

article > p:first-of-type::first-letter {
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.1em 0 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: #E3120B;
  text-decoration: none;
  border-bottom: 1px solid #E3120B;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

blockquote {
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 4px solid #E3120B;
  font-style: italic;
  color: #4d4d4d;
}
blockquote p {
  font-size: 1.2rem;
}

.article-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: minmax(0, 680px) 320px;
    gap: 4.5rem;
  }
}

.economist-article {
  max-width: 100%;
  min-width: 0;
}

.article-header {
  margin-bottom: 3rem;
}
.article-header .article-breadcrumb {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #E3120B;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.article-header .article-breadcrumb .category-link {
  color: #E3120B;
  text-decoration: none;
  text-transform: capitalize;
}
.article-header .article-breadcrumb .category-link:hover {
  text-decoration: underline;
}
.article-header .article-breadcrumb .separator {
  color: #767676;
  margin: 0 0.5rem;
  font-weight: 400;
}
.article-header .article-breadcrumb .subtitle-preview {
  color: #1a1a1a;
  font-weight: 400;
  text-transform: none;
}
.article-header .article-title {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 2rem 0;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.article-header .article-subtitle {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #4d4d4d;
  line-height: 1.45;
  margin: 0 0 3rem 0;
}

.article-meta {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  color: #767676;
  margin: 0 0 3rem 0;
}
.article-meta .meta-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.article-meta time {
  font-weight: 400;
}
.article-meta .separator {
  color: #767676;
  margin: 0 0.4em;
}
.article-meta .location {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.article-meta .read-time {
  font-weight: 400;
}

.article-image {
  margin: 0 0 3rem 0;
}
.article-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-image figcaption {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  color: #767676;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  color: #1a1a1a;
}
.article-content > p:first-of-type::first-letter {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  float: left;
  margin: 0.05em 0.1em 0 0;
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  color: #1a1a1a;
}
.article-content p {
  margin: 0 0 2rem 0;
}
.article-content h2 {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  line-height: 1.3;
}
.article-content h3 {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}
.article-content img {
  max-width: 100%;
  height: auto;
  margin: 3rem 0;
  display: block;
}
.article-content figure {
  margin: 3rem 0;
}
.article-content figure img {
  margin: 0;
}
.article-content figure figcaption {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: #767676;
  margin-top: 1rem;
  font-style: italic;
}
.article-content a {
  color: #E3120B;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.article-content a:hover {
  border-bottom-color: #E3120B;
}

.explore-more {
  border-top: 1px solid #E1E4E8;
  padding-top: 2rem;
  margin-top: 3rem;
}
.explore-more h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
}
.explore-more .topic-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.explore-more .topic-tags .topic-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #F8F8F8;
  border: 1px solid #E1E4E8;
  border-radius: 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.explore-more .topic-tags .topic-tag:hover {
  background-color: rgb(235.25, 235.25, 235.25);
}

.ai-disclosure {
  background-color: #F8F8F8;
  border-left: 3px solid #E3120B;
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}
.ai-disclosure p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #4d4d4d;
}
.ai-disclosure p strong {
  color: #1a1a1a;
}

.related-posts {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E1E4E8;
}
.related-posts h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
}
.related-posts .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .related-posts .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-posts .related-card {
  border: 1px solid #E1E4E8;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.related-posts .related-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.related-posts .related-card .related-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.related-posts .related-card .related-content {
  padding: 1.5rem;
}
.related-posts .related-card .related-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}
.related-posts .related-card .related-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.related-posts .related-card .related-title a:hover {
  color: #E3120B;
}
.related-posts .related-card .related-excerpt {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 0.9rem;
  color: #4d4d4d;
  line-height: 1.6;
  margin: 0;
}

.related-sidebar {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .related-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
  }
}
.related-sidebar h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E1E4E8;
}
.related-sidebar .related-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.related-sidebar .related-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #E1E4E8;
}
.related-sidebar .related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.related-sidebar .related-item .related-category {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: lowercase;
  color: #767676;
  display: block;
  margin-bottom: 0.5rem;
}
.related-sidebar .related-item .related-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}
.related-sidebar .related-item .related-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.related-sidebar .related-item .related-title a:hover {
  color: #E3120B;
}
.related-sidebar .related-item .related-excerpt {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 0.85rem;
  color: #4d4d4d;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}
.related-sidebar .related-item .related-meta {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  color: #767676;
}
.related-sidebar .related-item .related-meta .separator {
  margin: 0 0.3em;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E1E4E8;
}
.article-footer .back-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #E3120B;
  text-decoration: none;
}
.article-footer .back-link:hover {
  text-decoration: underline;
}

.post-card {
  background-color: #ffffff;
  border: 1px solid #E1E4E8;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 0;
}
.post-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.post-card .card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.post-card .card-content {
  padding: 1rem;
}
.post-card .card-category {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E3120B;
  margin-bottom: 1rem;
}
.post-card .card-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}
.post-card .card-title a {
  color: #1a1a1a;
  border: none;
}
.post-card .card-title a:hover {
  color: #E3120B;
}
.post-card .card-excerpt {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 0.9rem;
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.post-card .card-meta {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: #767676;
  display: flex;
  gap: 1rem;
}
.post-card .card-meta .meta-item:not(:last-child)::after {
  content: "|";
  margin-left: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-post {
  background: #ffffff;
  border-left: 4px solid #E3120B;
  padding: 3rem;
  margin: 3rem 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.featured-post .featured-label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E3120B;
  margin-bottom: 1rem;
}
.featured-post h3 {
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
.featured-post h3 a {
  color: #1a1a1a;
  border: none;
}
.featured-post h3 a:hover {
  color: #E3120B;
}
.featured-post .post-excerpt {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.featured-post .post-meta {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: #4d4d4d;
  margin: 1rem 0;
}
.featured-post .read-more {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #a00900;
  text-decoration: underline;
}
.featured-post .read-more:hover {
  color: #E3120B;
  text-decoration: none;
}
.featured-post .read-more::after {
  content: " →";
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}
.tag-list .tag {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  background-color: #F8F8F8;
  color: #4d4d4d;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #E1E4E8;
  transition: all 0.2s ease;
}
.tag-list .tag:hover {
  background-color: #E3120B;
  color: white;
  border-color: #E3120B;
}

.site-footer {
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 1.5rem;
  margin-top: 3rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.site-footer a {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
.site-footer a:hover {
  border-color: white;
}
.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}
.site-footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: white;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 1rem;
}
.site-footer .copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .copyright p {
  color: rgba(255, 255, 255, 0.9);
}

code {
  font-family: "Monaco", "Menlo", "Courier New", monospace;
  font-size: 0.9em;
  background-color: #F8F8F8;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  color: #1a1a1a;
}

pre {
  background-color: #F8F8F8;
  border: 1px solid #E1E4E8;
  border-radius: 6px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}
pre code {
  background: none;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}
table th {
  background-color: #F8F8F8;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #E1E4E8;
}
table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E1E4E8;
}
table tr:hover {
  background-color: rgba(248, 248, 248, 0.5);
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .main-content {
    padding: 1.5rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .site-nav ul {
    flex-direction: column;
  }
  .site-nav ul li a {
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .site-nav ul li a:hover {
    border-left-color: #E3120B;
  }
  article > p:first-of-type::first-letter {
    font-size: 3rem;
  }
}
.text-center {
  text-align: center;
}

.text-muted {
  color: #4d4d4d;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topic-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.topic-header {
  margin-bottom: 3rem;
  text-align: center;
}

.topic-title {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.topic-description {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  color: #4d4d4d;
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.topic-card:hover {
  transform: translateY(-2px);
}

.topic-card-image {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F8F8F8;
}
.topic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.topic-card-image:hover img {
  transform: scale(1.05);
}

.topic-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.topic-card-image-placeholder .placeholder-content {
  color: #ccc;
}

.topic-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.topic-category {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #E3120B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.topic-card-title {
  margin: 0;
  flex: 0 0 auto;
}
.topic-card-title a {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease;
  display: block;
}
.topic-card-title a:hover {
  color: #E3120B;
}

.topic-card-excerpt {
  font-family: "Merriweather", "Georgia", "Times New Roman", serif;
  font-size: 0.938rem;
  color: #4d4d4d;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
}

.topic-card-meta {
  display: flex;
  gap: 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.813rem;
  color: #767676;
  margin-top: auto;
  padding-top: 1rem;
}

.topic-meta-item:not(:last-child)::after {
  content: "•";
  margin-left: 1.5rem;
}

@media (max-width: 1024px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .topic-page {
    padding: 2rem 1.5rem;
  }
  .topic-title {
    font-size: 2rem;
  }
  .topic-description {
    font-size: 1rem;
  }
  .topic-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .topic-card-image {
    height: 180px;
  }
  .topic-card-title a {
    font-size: 1.125rem;
  }
  .topic-card-excerpt {
    font-size: 0.875rem;
  }
}

/*# sourceMappingURL=styles.css.map */