/* Code block styles */
.language-ruby, .highlighter-rouge, .highlight {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

pre.highlight, .highlight pre { 
  background-color: #f8f8f8; 
  border: 1px solid #ddd; 
  border-radius: 4px; 
  padding: 1rem; 
  margin-bottom: 0;
  overflow-x: auto; 
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix code block width issue */
.post-content .highlight pre code {
  display: block;
  width: 100%;
  padding-right: 0;
  white-space: pre;
  word-wrap: normal;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
}
.highlight .c { color: #998; font-style: italic; } /* Comment */
.highlight .k { color: #333; font-weight: bold; } /* Keyword */
.highlight .o { color: #555; } /* Operator */
.highlight .cm { color: #998; font-style: italic; } /* Comment.Multiline */
.highlight .cp { color: #999; font-weight: bold; } /* Comment.Preproc */
.highlight .c1 { color: #998; font-style: italic; } /* Comment.Single */
.highlight .cs { color: #999; font-weight: bold; font-style: italic; } /* Comment.Special */
.highlight .gd { color: #000; background-color: #fdd; } /* Generic.Deleted */
.highlight .gd .x { color: #000; background-color: #faa; } /* Generic.Deleted.Specific */
.highlight .ge { font-style: italic; } /* Generic.Emph */
.highlight .gr { color: #a00; } /* Generic.Error */
.highlight .gh { color: #999; } /* Generic.Heading */
.highlight .gi { color: #000; background-color: #dfd; } /* Generic.Inserted */
.highlight .gi .x { color: #000; background-color: #afa; } /* Generic.Inserted.Specific */
.highlight .go { color: #888; } /* Generic.Output */
.highlight .gp { color: #555; } /* Generic.Prompt */
.highlight .gs { font-weight: bold; } /* Generic.Strong */
.highlight .gu { color: #aaa; } /* Generic.Subheading */
.highlight .gt { color: #a00; } /* Generic.Traceback */
.highlight .kc { color: #099; } /* Keyword.Constant */
.highlight .kd { color: #099; } /* Keyword.Declaration */
.highlight .kp { color: #099; } /* Keyword.Pseudo */
.highlight .kr { color: #099; } /* Keyword.Reserved */
.highlight .kt { color: #458; } /* Keyword.Type */
.highlight .m { color: #099; } /* Literal.Number */
.highlight .s { color: #d14; } /* Literal.String */
.highlight .na { color: #008080; } /* Name.Attribute */
.highlight .nb { color: #0086B3; } /* Name.Builtin */
.highlight .nc { color: #458; font-weight: bold; } /* Name.Class */
.highlight .no { color: #008080; } /* Name.Constant */
.highlight .ni { color: #800080; } /* Name.Entity */
.highlight .ne { color: #900; font-weight: bold; } /* Name.Exception */
.highlight .nf { color: #900; font-weight: bold; } /* Name.Function */
.highlight .nn { color: #555; } /* Name.Namespace */
.highlight .nt { color: #000080; } /* Name.Tag */
.highlight .nv { color: #008080; } /* Name.Variable */
.highlight .ow { font-weight: bold; } /* Operator.Word */
.highlight .w { color: #bbb; } /* Text.Whitespace */
.highlight .mf { color: #099; } /* Literal.Number.Float */
.highlight .mh { color: #099; } /* Literal.Number.Hex */
.highlight .mi { color: #099; } /* Literal.Number.Integer */
.highlight .mo { color: #099; } /* Literal.Number.Oct */
.highlight .sb { color: #d14; } /* Literal.String.Backtick */
.highlight .sc { color: #d14; } /* Literal.String.Char */
.highlight .sd { color: #d14; } /* Literal.String.Doc */
.highlight .s2 { color: #d14; } /* Literal.String.Double */
.highlight .se { color: #d14; } /* Literal.String.Escape */
.highlight .sh { color: #d14; } /* Literal.String.Heredoc */
.highlight .si { color: #d14; } /* Literal.String.Interpol */
.highlight .sx { color: #d14; } /* Literal.String.Other */
.highlight .sr { color: #009926; } /* Literal.String.Regex */
.highlight .s1 { color: #d14; } /* Literal.String.Single */
.highlight .ss { color: #990073; } /* Literal.String.Symbol */
.highlight .bp { color: #999; } /* Name.Builtin.Pseudo */
.highlight .vc { color: #008080; } /* Name.Variable.Class */
.highlight .vg { color: #008080; } /* Name.Variable.Global */
.highlight .vi { color: #008080; } /* Name.Variable.Instance */
.highlight .il { color: #099; } /* Literal.Number.Integer.Long */

/* Base styles */
:root {
  --primary-bg: #f5f5f5;
  --accent-green: #9ed9a7;
  --accent-yellow: #fff176;
  --accent-purple: #d1c4e9;
  --text: #333;
  --text-light: #666;
  --border: #e0e0e0;
  
  /* These are used by the appearance, books, and projects pages */
  --accent-color: #90caf9;
  --tag-color: #9ed9a7;
  --tag-color-ideation: #b39ddb;
  --tag-color-inprogress: #90caf9;
  --tag-color-completed: #a5d6a7;
  --tag-color-funding: #ffcc80;
  --tag-color-planning: #ce93d8;
  --tag-color-hold: #ef9a9a;
  --text-color: #333;
  --border-color: #e0e0e0;
  --light-gray: #f5f5f5;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--primary-bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header and navigation */
.header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 60px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem;
  background-color: #222;
  color: white;
  margin-right: auto;
}

.nav {
  display: flex;
}

.nav-item {
  padding: 0 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}

.nav-item:hover, .nav-item.active {
  border-bottom-color: var(--text);
}

.search-button {
  margin-left: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Hero section */
.hero {
  background-color: #f8dc6c;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 2rem;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text {
  margin-bottom: 1.5rem;
}

.hero-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-title-link:hover {
  color: var(--brand-color, #a00000);
  text-decoration: none;
}

.hero-button {
  display: inline-block;
  background-color: #f8dc6c;
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
  transition: background-color 0.2s, transform 0.2s;
}

.hero-button:hover {
  background-color: #f0d350;
  transform: translateY(-2px);
}

.hero-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-image-1 {
  width: 60%;
  top: 10%;
  left: 20%;
  z-index: 3;
}

.hero-image-2 {
  width: 40%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-image-3 {
  width: 30%;
  bottom: 10%;
  right: 10%;
  z-index: 2;
}

/* Section styles */
.section {
  padding: 4rem 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
}

/* Book grid */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.book-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.book-tag {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.book-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.book-content {
  padding: 1.5rem;
}

.book-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Featured section */
.featured {
  background-color: #f8dc6c;
  padding: 4rem 0;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-content {
  padding: 2rem;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
}

.featured-title {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.featured-text {
  margin-bottom: 1.5rem;
}

.featured-image {
  width: 100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Blog posts */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.post-card {
  display: block;
  background-color: white;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.post-tag {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.post-title a:hover {
  color: var(--brand-color, #a00000);
}

.post-card-link {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.post-read-more {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--text);
  transition: color 0.2s;
}

.post-read-more:hover {
  color: var(--brand-color, #a00000);
}

/* Community section */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.community-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.community-image {
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.community-content {
  padding: 1.5rem;
}

.community-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.community-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Events section */
.events-list {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.event-date {
  background-color: var(--accent-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.event-month {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.event-description {
  font-size: 0.9rem;
}

/* Page header */
.page-header {
  background-color: #f8dc6c;
  padding: 4rem 0;
}

.page-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-description {
  max-width: 600px;
  font-size: 1.1rem;
}

/* Blog layout */
.blog-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

/* Featured post */
.featured-post {
  margin-bottom: 3rem;
}

.featured-post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.featured-post-tag {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.featured-post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.featured-post-date {
  margin-right: 1rem;
}

.featured-post-excerpt {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.featured-post-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--text);
}

.featured-post-link:hover {
  text-decoration: underline;
}

/* Blog posts */
.blog-posts {
  display: grid;
  gap: 2.5rem;
}

.post {
  /* Removed grid layout properties */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
}

.post-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.post-tag {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.post-date {
  margin-right: 1rem;
}

.post-excerpt {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.post-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.post-link:hover {
  text-decoration: underline;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-section {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sidebar-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.categories-list {
  list-style: none;
}

.categories-item {
  margin-bottom: 0.5rem;
}

.categories-link {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.categories-link:hover {
  color: var(--accent-green);
}

.categories-count {
  background-color: var(--accent-green);
  color: white;
  font-size: 0.8rem;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
}

.popular-posts {
  list-style: none;
}

.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-post-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.popular-post-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
}

.newsletter-button {
  background-color: var(--text);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.newsletter-button:hover {
  background-color: #000;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0.25rem;
  border-radius: 50%;
  font-weight: 500;
  transition: background-color 0.2s;
}

.pagination-item:hover {
  background-color: var(--border);
}

.pagination-item.active {
  background-color: var(--text);
  color: white;
}

/* Post single */
.post-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.post-header-container {
  max-width: 700px;
  margin: 0 auto;
}

.post-categories {
  margin-bottom: 1rem;
}

.post-tags {
  margin: 1rem 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.post-category {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  margin: 0 0.25rem 0.5rem;
}

/* Attribution styling */
.post-attribution {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin: 1rem 0 1.5rem;
  display: block;
  line-height: 1.5;
}

.post-content-wrapper {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.7;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure proper display of code blocks */
.post-content div.highlight,
.post-content div.language-ruby,
.post-content div.highlighter-rouge {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  background-color: rgba(0,0,0,0.05);
}

.post-content pre code {
  padding: 0;
  background: none;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content img {
  max-width: 100%;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.post-content pre {
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
}

.post-content blockquote {
  border-left: 4px solid var(--accent-green);
  padding-left: 1rem;
  margin-left: 0;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: #222;
  color: white;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1rem;
  border-top: 1px solid #444;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-container, .featured-container {
    grid-template-columns: 1fr;
  }
  
  .hero-images {
    display: none;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  /* Removed grid columns change for post since we no longer use grid */
  
  .post-image {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .event-card {
    grid-template-columns: 80px 1fr;
  }
  
  .featured-post-image {
    height: 300px;
  }
  
  .featured-post-title {
    font-size: 1.8rem;
  }
}
