
 .post-author {
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     gap: 24px;
     padding: 28px;

     border: 1px solid rgba(0, 255, 136, 0.2);
     border-radius: 20px;
     margin: 40px 0;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

/* Фоновий паттерн */
.post-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
    border-radius: 20px;
}


/* Фото слева */
.author-photo-wrapper {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2),
    0 0 0 2px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.post-author:hover .author-photo {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 12px 36px rgba(0, 255, 136, 0.3),
    0 0 0 2px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.author-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(0, 255, 136, 0.3);
    border: 4px solid rgba(0, 255, 136, 0.3);
}

/* Содержимое справа */
.author-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.author-name {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.post-author:hover .author-name {
    transform: scale(1.02);
}

.author-bio {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.25);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
    border-color: rgba(0, 255, 136, 0.6);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.social-link:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .post-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
        margin: 30px 0;
    }

    .author-photo-wrapper {
        flex-shrink: 0;
    }

    .author-photo,
    .author-photo-placeholder {
        width: 90px;
        height: 90px;
    }

    .author-content {
        text-align: center;
        align-items: center;
    }

    .author-name {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .author-bio {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .author-socials {
        justify-content: center;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .post-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
        margin: 24px 0;
        border-radius: 16px;
    }

    .author-content {
        text-align: center;
    }

    .author-photo,
    .author-photo-placeholder {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .author-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .author-bio {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .author-socials {
        justify-content: center;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
