/**
 * Blocksy Child - Byline Styles
 * تأثيرات بصرية جميلة للترويسة
 */

/* ===== الحاوية الرئيسية ===== */
.blocksy-child-byline {
    margin-bottom: 2rem;
    padding: 0;
}

/* ===== التخطيط الرئيسي ===== */
.blocksy-child-byline-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.blocksy-child-byline-meta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.8;
}

.blocksy-child-byline-meta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(102, 126, 234, 0.2);
}

/* ===== قسم المعلومات (الناشر + المحرر) ===== */
.blocksy-child-byline-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blocksy-child-byline-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.blocksy-child-byline-row:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.15);
    transform: translateX(-4px);
}

.blocksy-child-byline-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 4px;
    text-align: center;
}

.blocksy-child-byline-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
}

/* ===== قسم الكاتب ===== */
.blocksy-child-byline-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.blocksy-child-byline-author:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-color: rgba(102, 126, 234, 0.2);
    transform: scale(1.02);
}

/* ===== صورة الكاتب ===== */
.blocksy-child-byline-avatar {
    position: relative;
    width: 90px;
    height: 90px;
}

.blocksy-child-byline-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blocksy-child-byline-author:hover .blocksy-child-byline-avatar::before {
    opacity: 1;
}

.blocksy-child-byline-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blocksy-child-byline-author:hover .blocksy-child-byline-avatar img {
    transform: scale(1.05);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.08);
}

/* ===== اسم الكاتب ===== */
.blocksy-child-byline-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.blocksy-child-byline-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.blocksy-child-byline-author:hover .blocksy-child-byline-name::after {
    width: 60%;
}

/* ===== تأثيرات الرسبونسيف ===== */
@media (max-width: 768px) {
    .blocksy-child-byline-meta {
        flex-direction: column-reverse;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }

    .blocksy-child-byline-info {
        width: 100%;
    }

    .blocksy-child-byline-row {
        padding: 0.6rem 0.8rem;
    }

    .blocksy-child-byline-label {
        min-width: 45px;
        font-size: 0.7rem;
    }

    .blocksy-child-byline-value {
        font-size: 0.85rem;
    }

    .blocksy-child-byline-avatar {
        width: 80px;
        height: 80px;
    }

    .blocksy-child-byline-avatar img {
        width: 80px;
        height: 80px;
    }

    .blocksy-child-byline-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blocksy-child-byline-meta {
        padding: 1rem;
        border-radius: 12px;
    }

    .blocksy-child-byline-row {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .blocksy-child-byline-avatar {
        width: 70px;
        height: 70px;
    }

    .blocksy-child-byline-avatar img {
        width: 70px;
        height: 70px;
    }
}

/* ===== تأثيرات الوضع الداكن ===== */
@media (prefers-color-scheme: dark) {
    .blocksy-child-byline-meta {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .blocksy-child-byline-meta::before {
        opacity: 0.6;
    }

    .blocksy-child-byline-row {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .blocksy-child-byline-row:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .blocksy-child-byline-value {
        color: #e2e8f0;
    }

    .blocksy-child-byline-author {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        border-color: rgba(102, 126, 234, 0.15);
    }

    .blocksy-child-byline-avatar img {
        border-color: #1a1a2e;
    }

    .blocksy-child-byline-name {
        color: #e2e8f0;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.08);
    }
}

/* ===== تأثيرات الطباعة ===== */
@media print {
    .blocksy-child-byline-meta {
        box-shadow: none;
        border: 1px solid #ddd;
        background: #fff;
    }

    .blocksy-child-byline-meta::before {
        display: none;
    }

    .blocksy-child-byline-avatar img {
        box-shadow: none;
    }
}

/* ===== تحريك الظهور ===== */
@keyframes blocksy-byline-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blocksy-child-byline {
    animation: blocksy-byline-fade-in 0.6s ease-out;
}
