/* 
  Custom styles for Hugo Cloud CMS 
  These directly override the default Ananke CSS styles
*/

/* Example: Changing the base typography to a modern sans-serif font */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
}

/* Example: Change hyperlink colors */
a {
  color: #0070f3;
  transition: color 0.2s ease;
}

a:hover {
  color: #0056b3;
}

/* Example: Adding a subtle rounded border to images in articles */
article img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
