.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    background-color: #ffffff;
}

.article-trend-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2f2f2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.article-trend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.article-card-media {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f7f9fc;
}


.article-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tag-edu { color: #008080; }
.tag-local { color: #00a896; }
.tag-coach { color: #2a9d8f; }
.tag-behavior { color: #e76f51; }

.article-card-main {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.article-time-meta {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}


.article-headline {
    font-size: 1.35rem;
    color: #1a365d;
    margin: 0 0 14px 0;
    line-height: 1.4;
    font-weight: 700;
}


.article-short-excerpt {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.article-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f8f9fa;
    margin-top: auto;
}

.article-profile-group {
    display: flex;
    align-items: center;
}


.article-avatar-circle {
    width: 34px;
    height: 34px;
    background-color: #ff4d4d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.article-profile-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
}

.article-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ff4d4d;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.article-cta-pill:hover {
    background-color: #e03e3e;
}