/* Reset and base styles */
body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Layout Containers */
header, footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 1.5em;
  text-align: center;
  border-bottom: 5px solid #d4af37; /* Gold accent */
}

main {
  padding: 2em;
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
}

/* Logo and headers */
.logo img {
  border-radius: 8px;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
}

h2 {
  font-size: 1.5em;
  font-style: italic;
  margin-bottom: 1em;
}

h3 {
  margin-top: 2em;
  font-size: 1.2em;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section styles */
section.intro {
  border-left: 6px solid #d4af37;
  padding-left: 1em;
  margin-bottom: 2em;
}

section.article-list ul {
  list-style-type: none;
  padding: 0;
}

section.article-list li {
  margin-bottom: 0.5em;
}

section.article-list a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

section.article-list a:hover {
  text-decoration: underline;
}

/* Video embed */
section.media iframe {
  display: block;
  margin: 1em auto;
  border: 1px solid #ccc;
}

/* Footer */
footer a {
  color: #f8f8f8;
  text-decoration: underline;
}

footer p {
  margin: 0.3em 0;
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header, footer {
    padding: 1em;
  }

  main {
    padding: 1em;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.2em;
  }
}
