.history-page {
    padding: 40px 0;
}

.history-article {
    width: 100%;
    max-width: 100%;
    line-height: 1.7;
    color: var(--fg);
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.article-hero-image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.article-content {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-image {
    margin: 2rem 0 1rem 0;
    width: 100%;
}

.article-image p {
    margin-bottom: 0;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}


@media (min-width: 768px) {
    .history-article {
        padding: 0;
    }
    
    .article-hero-image img {
        max-height: 500px;
        border-radius: 0;
    }
}

.banner-source {
  position: absolute;
  left: 20px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  z-index: 2;
  transition: color 0.2s ease;
}

.banner-source:hover {
  color: #fff;
}