/* ========== ИНФОРМАЦИЯ ПОД ВИДЕО ========== */

.video-info-block {
    margin-top: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.video-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

/* ===== АВТОР ===== */
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--wood);
    border: 2px solid var(--border);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: var(--wood);
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-stats {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== ЛАЙКИ/ДИЗЛАЙКИ ===== */
.like-dislike-block {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 40px;
    overflow: hidden;
}

.like-button,
.dislike-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.like-button:hover,
.dislike-button:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.like-button.liked {
    color: var(--accent);
}

.dislike-button.disliked {
    color: var(--accent);
}

.like-button svg,
.dislike-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== ССЫЛКИ НА ПРОФИЛЬ ===== */
.author-avatar-link {
    text-decoration: none;
    display: block;
}

.author-name-link {
    text-decoration: none;
    color: inherit;
}

.author-name-link:hover {
    color: inherit;
}