/* Hero Section Styles - List Layout */
.forum-hero-section {
    margin-bottom: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Kartlar arası boşluk artırıldı */
}

/* Modern List Item */
a.hero-list-item {
    display: flex;
    align-items: center;
    padding: 1.2rem; /* İç boşluk artırıldı */
    background: var(--bg-card); /* Kart rengi */
    border-radius: 8px;
    border: 1px solid var(--border-color); /* Kenarlık eklendi */
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* Hafif gölge eklendi */
}

a.hero-list-item:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-blue); /* Hover'da kenarlık rengi */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* Hover'da gölge artışı */
}

/* Avatar Column */
.hero-avatar-col {
    flex-shrink: 0;
    margin-right: 1.2rem;
}

.hero-big-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Content Column */
.hero-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent overflow */
    justify-content: center;
}

.hero-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

a.hero-list-item:hover .hero-item-title {
    color: var(--accent-blue);
}

.hero-item-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.2;
}

.hero-user-name {
    font-weight: 600;
    color: var(--text-primary);
}

.hero-meta-sep {
    color: var(--border-color);
    font-size: 0.7rem;
}

.hero-time {
    color: var(--text-muted);
}

.hero-cat-name {
    background: rgba(88, 101, 242, 0.1);
    color: var(--accent-blue);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Stats Column */
.hero-stats-col {
    margin-left: 1rem;
    flex-shrink: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-stat-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-stat-item i {
    font-size: 0.9rem;
    opacity: 0.7;
}

a.hero-list-item:hover .hero-stat-item {
    color: var(--text-primary);
}

a.hero-list-item:hover .hero-stat-item i {
    opacity: 1;
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    a.hero-list-item {
        flex-wrap: wrap;
    }
    
    .hero-content-col {
        width: calc(100% - 70px); /* Avatar width + margin */
    }
    
    .hero-stats-col {
        display: none; /* Hide stats on mobile for cleaner look */
    }
}
