.mt-container {
  max-width: 1100px;
  margin: auto;
  font-family: Georgia, serif;
  color: #111;
}

.mt-header {
  text-align: center;
  padding: 20px 0;
}

.mt-logo {
  font-size: 48px;
  margin: 0;
  letter-spacing: 2px;
}

.mt-tagline {
  font-size: 16px;
  margin-top: 5px;
  font-style: italic;
}

/* NAV */
.mt-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.mt-nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: bold;
}

/* BREAKING BAR */
.mt-breaking {
  background: #c60000;
  color: white;
  padding: 8px;
  margin-top: 10px;
  font-weight: bold;
}

.mt-breaking-title {
  margin-right: 10px;
}

/* FEATURED */
.mt-featured img {
  width: 100%;
  margin-top: 20px;
}

.mt-featured h2 {
  font-size: 32px;
  margin: 15px 0 5px;
}

/* SECONDARY STORIES */
.mt-secondaries {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.mt-secondary-story img {
  width: 100%;
}

/* NEIGHBORHOODS */
.mt-section-title {
  margin-top: 40px;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.mt-neighborhoods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.mt-nb {
  background: #222 url('https://via.placeholder.com/400x200') center/cover no-repeat;
  height: 100px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

/* SPORTS */
.mt-sports {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.mt-sport-item img {
  width: 100%;
}

/* NEWS ROW */
.mt-news-row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.mt-news-col {
  width: 32%;
}

.mt-news-col ul {
  padding-left: 18px;
}

.mt-weather {
  width: 32%;
  background: #e8f0ff;
  padding: 15px;
  border-radius: 6px;
}

/* CLASSIFIEDS */
.mt-classifieds {
  margin-top: 40px;
  text-align: center;
}

.mt-classifieds button {
  margin: 5px;
  padding: 10px 20px;
  border: 1px solid #222;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* FOOTER */
.mt-footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 2px solid #000;
}
/* ARTICLE PAGE LAYOUT */
.mt-article-page {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.3fr);
  column-gap: 40px;
  margin-top: 20px;
}

/* Make layout single-column on small screens */
@media (max-width: 900px) {
  .mt-article-page {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumb */
.mt-breadcrumb {
  grid-column: 1 / -1;
  font-size: 13px;
  margin: 15px 0 5px;
}

.mt-breadcrumb a {
  color: #555;
  text-decoration: none;
}

/* Article styles */
.mt-article {
  grid-column: 1 / 2;
}

.mt-article-header {
  margin-bottom: 15px;
}

.mt-article-section {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a00000;
}

.mt-article-title {
  font-size: 32px;
  margin: 5px 0 5px;
}

.mt-article-meta {
  font-size: 13px;
  color: #666;
}

.mt-article-figure img {
  width: 100%;
  margin: 15px 0 5px;
}

.mt-article-figure figcaption {
  font-size: 13px;
  color: #777;
  border-left: 3px solid #ccc;
  padding-left: 8px;
}

.mt-article-body {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 20px;
}

.mt-article-body h2 {
  margin-top: 25px;
  font-size: 22px;
}

/* Pull quote */
.mt-pullquote {
  border-left: 4px solid #000;
  padding-left: 15px;
  margin: 25px 0;
  font-style: italic;
  font-size: 20px;
}

/* Author box */
.mt-author-box {
  border-top: 1px solid #ddd;
  margin-top: 35px;
  padding-top: 15px;
  font-size: 14px;
}

/* Sidebar */
.mt-article-sidebar {
  grid-column: 2 / 3;
  font-size: 14px;
}

.mt-article-sidebar h3 {
  font-size: 16px;
  margin-top: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
}

.mt-article-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.mt-article-sidebar li {
  margin-bottom: 6px;
}

.mt-article-sidebar a {
  text-decoration: none;
  color: #222;
}

.mt-article-sidebar a:hover {
  text-decoration: underline;
}
/* BREAKING NEWS SCROLLING TEXT */
.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 25px;
}

.scroll-text {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 15s linear infinite;
  font-size: 16px;
  line-height: 25px;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* NAV FIXES */
.mt-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;        /* allow items to wrap if they run out of space */
  column-gap: 25px;       /* horizontal spacing between links */
  row-gap: 8px;           /* vertical spacing if they wrap to two lines */
  padding: 15px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.mt-nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: bold;
  margin: 0 2px;          /* tiny buffer so they never visually touch */
}
#top-banner img {
    max-width: 200px; /* or whatever size */
    height: auto;
}
/* MAIN ARTICLE BODY */
.single-post .entry-content,
.single .entry-content {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;        /* bump this up or down to taste */
  line-height: 1.7;
  max-width: 720px;       /* narrower reading column */
  margin: 0 auto 3rem auto;
}

/* ARTICLE TITLE (H1) */
.single-post .entry-title,
.single .entry-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 720px;
  margin: 1.5rem auto 1rem;
}

/* OPTIONAL: SLIGHTLY BIGGER INTRO PARAGRAPH */
.single-post .entry-content p:first-of-type {
  font-size: 19px;
  font-weight: 500;
}

/* OPTIONAL: MORE BREATHING ROOM BETWEEN PARAGRAPHS */
.single-post .entry-content p {
  margin-bottom: 1.1em;
}

