.blog-archive-banner-content .blog-archive-banner-title {
    margin-top: 110px;
}

/* Container */
.article-detail-container {
    max-width: var(--inner-container-width);
    margin: 72px auto 42px auto;
}

/* Title & Meta */
.article-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--main-green);
    line-height: 1.5;
}

.article-meta {
    background: #F0F0F0;
    color: #666666;
    font-size: 1rem;
    padding: 0.6em 1em;
    border-radius: 8px;
    margin-bottom: 1.5em;
    display: flex;
    gap: 60px;
    align-items: center;
}

.article-content {
	margin-bottom: 1.5em;
}

.article-meta-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.article-meta i {
    margin-right: 0.3em;
    color: #bdbdbd;
}

/* Section Headings */
.article-content h2,
.article-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main-green);
    margin-top: 2em;
    margin-bottom: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Body Text */
.article-content p {
    font-size: 1.08rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

/* Related Articles */
.related-articles-title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    color: var(--main-green);

}

.related-articles-separator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.related-articles-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Blog Archive Main Wrapper */
.blog-archive-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 0 0;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.blog-card {
    background: #20412a;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    box-shadow: 0 2px 16px #0001;
    transition: transform 0.14s;
	max-width: calc((100% - 4rem) / 3);
}

.blog-card:hover {
    transform: translateY(-4px) scale(1.03);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-image-placeholder {
    background: #e6e6e6;
    height: 200px;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content .upper-content {
    display: flex;
    gap: 18px;
    align-self: start;
    justify-content: space-between;
    width: 100%;
}

.blog-card-date {
    background: #A8CFB8;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    padding: 0;
    flex-shrink: 0;
    flex-grow: 0;
    height: fit-content;
    min-width: 55px;
}

.blog-card-day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    background-color: var(--main-white);
    border-radius: 5px 5px 0 0;
    border-bottom: 2px solid var(--main-green);
}

.blog-card-month {
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 3px 0;
    border-radius: 0 5px 5px 0;
}

.blog-card-title {
    color: var(--main-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.18s;
    display: block;
    line-height: 135%;
}

.blog-card-title:hover {
    color: var(--main-yellow);
}

.blog-card-excerpt {
    color: var(--main-white);
    font-size: 15px;
    margin-bottom: 18px;
    margin-top: 20px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}

.blog-card-excerpt p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.blog-card-learn-more {
    color: var(--main-yellow);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: color 0.18s;
}

.blog-card-arrow {
    font-size: 18px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 700px) {
    .article-detail-container {
        padding: 0 8px;
    }

    .article-images {
        flex-direction: column;
    }

    .article-images img {
        width: 100%;
    }

    .related-articles-list {
        flex-direction: column;
        gap: 1em;
        align-items: center;
    }
	.blog-card {
		max-width: unset;
	}
}