.blog-banner {
    background: #508f95;
    padding: 40px 0;
    margin-bottom: 0;
}

.blog-banner h2 {
    color: #fff;
    margin: 0 0 8px;
}

.blog-banner .page-title-link {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.blog-banner .page-title-link li {
    color: rgba(255, 255, 255, 0.75);
}

.blog-banner .page-title-link li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.blog-banner .page-title-link li a:hover {
    color: #fff;
}

.blog-banner .page-title-link li+li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.blog-item {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 24px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.blog-item-image {
    flex: 0 0 220px;
    width: 220px;
    min-height: 160px;
    padding: 0;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
}

.blog-item-image .blog-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(135deg, #508f95 0%, #3a6b70 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-item-image .blog-placeholder i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.blog-item-content {
    flex: 1 1 auto;
    padding: 20px 24px;
    min-width: 0;
}

@media (max-width: 575px) {
    .blog-item {
        flex-direction: column;
    }

    .blog-item-image {
        flex: none;
        width: 100%;
        height: 180px;
        min-height: 180px;
    }

    .blog-item-image img {
        height: 180px;
        min-height: 180px;
    }

    .blog-item-image .blog-placeholder {
        height: 180px;
        min-height: 180px;
    }
}

.blog-item-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
}

.blog-item-content h3 a {
    color: #222;
    text-decoration: none;
}

.blog-item-content h3 a:hover {
    color: #508f95;
    text-decoration: underline;
}

.blog-item-meta {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 10px;
}

.blog-item-meta .blog-author {
    margin-right: 12px;
}

.blog-item-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-read-more {
    color: #508f95;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.blog-read-more:hover {
    color: #3a6b70;
    text-decoration: underline;
}

.blog-read-more i {
    font-size: 18px;
    vertical-align: middle;
}

#blog-loading {
    text-align: center;
    padding: 60px 0;
    color: #777;
}

#blog-loading .spinner-border {
    width: 2.5rem;
    height: 2.5rem;
    color: #508f95;
}

#blog-error {
    display: none;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

#blog-error i {
    font-size: 48px;
    color: #ccc;
    display: block;
    margin-bottom: 16px;
}

#blog-load-more-wrap {
    margin: 10px 0 30px;
    text-align: center;
}

#blog-load-more {
    background-color: #508f95;
    border-color: #508f95;
    color: #fff;
    padding: 10px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

#blog-load-more:hover {
    background-color: #3a6b70;
}

#blog-load-more:disabled {
    opacity: 0.65;
    cursor: default;
}

#blog-all-loaded {
    color: #999;
    font-size: 0.9rem;
    display: none;
}