.hero-section {
    background: linear-gradient(135deg, #1A8917 0%, #4a9e4a 20%, #a3d9a5 60%, #e8f5e8 100%);
    color: #292929;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.trending-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.trending-title {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trending-icon {
    margin-right: 0.5rem;
    color: #ffd700;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.trending-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-right: 1rem;
    min-width: 3rem;
}

.trending-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.trending-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.trending-meta .author {
    font-weight: 500;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.trending-meta .date {
    margin: 0 0.5rem;
}

.article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 2rem 0;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.topic-tag {
    display: inline-block;
    background-color: #f2f2f2;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.topic-tag:hover {
    background-color: black;
    color: white;
}

.follow-suggestion {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.follow-suggestion:last-child {
    border-bottom: none;
}

.follow-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.follow-info {
    flex: 1;
}

.follow-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.follow-bio {
    font-size: 0.8rem;
    color: var(--text-light);
}

.follow-btn {
    background: none;
    border: 1px solid #1A8917;
    color: #1A8917;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.follow-btn:hover {
    background: #1A8917;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .article-content {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .article-image {
        width: 100%;
        height: 200px;
    }

    .trending-item {
        flex-direction: column;
    }

    .trending-number {
        margin-bottom: 0.5rem;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .article-title {
        font-size: 1.25rem;
    }

    .trending-section {
        padding: 1rem 0;
    }
}
