.hub-goal-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-goal-news-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.15rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #172033;
    text-decoration: none;
    transition: all 0.25s ease;
    align-items: center;
}

.hub-goal-news-card:hover {
    border-color: #9b1b22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    color: #172033;
}

.hub-goal-news-card img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f1f5f9;
}

.hub-goal-news-copy {
    flex: 1;
    min-width: 0;
}

.hub-goal-news-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0.25rem 0 0.4rem;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.hub-goal-news-card:hover .hub-goal-news-title {
    color: #9b1b22;
}

.hub-goal-news-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 0;
}

.sdg-posts-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.sdg-posts-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #1e293b;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sdg-posts-page-btn:hover:not(:disabled) {
    border-color: #9b1b22;
    color: #9b1b22;
    background: #fff5f5;
}

.sdg-posts-page-btn.active {
    border-color: #9b1b22;
    background: #9b1b22;
    color: #ffffff;
}

.sdg-posts-page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    background: #f8fafc;
}

.sdg-posts-state {
    padding: 3rem 1.5rem;
    color: #64748b;
    text-align: center;
}

@media (max-width: 575px) {
    .hub-goal-news-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .hub-goal-news-card img {
        width: 100%;
        height: 180px;
    }
}

