@media (min-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

.content-narrow {
     max-width: 960px;
}

/* In your style.css */
body {
    font-family: "Special Elite", sans-serif;
    line-height: 1.2; /* A bit more breathing room */
    font-size: 1.25em;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Raleway', serif;
    font-weight: 700;
    font-size: 1.35em;
}

input.form-control, .btn, select, select.form-select {
  font-size: 1em;
}

/* Featured logos section */
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;    /* center horizontally */
  align-items: center;        /* vertically align each row */
  gap: 1.5rem 2.5rem;         /* vertical / horizontal spacing */
  text-align: center;
  margin-top: 0.75rem;
}

.featured-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.featured-logos a:hover {
  transform: scale(1.05);
}

.featured-logos img {
  height: auto;
  width: auto;
  max-height: 56px;           /* was 36px — more presence */
  max-width: 220px;           /* allows wide logos breathing space */
  object-fit: contain;
}

.blog-post .cover-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* or 4 / 3, 3 / 2, whatever ratio you like */
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.blog-post .cover-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
