/* Blog Archive Main Wrapper */
.blog-archive-main {
    max-width: var(--inner-container-width);
    margin: 0 auto;
    padding: 72px 0 52px 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;
}

.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: flex-start;
    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: flex-start;
    justify-content: flex-start;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.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;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 48px 0;
}

.blog-pagination .page-numbers {
    background: #fff;
    color: #20412a;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.16s, color 0.16s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #20412a;
    color: #fff;
}

.blog-pagination .page-numbers.dots {
    background: none;
    color: #20412a;
    pointer-events: none;
}

/* Mobile Style */
@media (max-width: 767px) {
    .blog-archive-grid {
        gap: 32px;
    }

    .blog-archive-main {
        max-width: 100%;
        padding: 60px 14px 60px 14px;
    }
}