/* css styles */
:root {
  --bs-body-color: #3b3b3b;
  --primary-color: #667eea;
  --secondary-color: #764ba2;
}

body {
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

figure>figcaption {
  text-align: center;
  font-style: italic;
  margin-top: 0;
}

.blockquote {
    color: #838b92;
}

.fai-imager {
  float:right;
  margin:1rem;
}

/* Hero banner styling */
.hero-banner h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Enhanced typography */
h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Links styling */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Card-like styling for content sections */
.content-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Blog listing enhancements */
.quarto-listing-table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer section styling */
.footer-section {
  border-top: 3px solid var(--primary-color);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-banner {
    padding: 2rem 1rem !important;
  }
  
  .hero-banner h1 {
    font-size: 2rem;
  }
}