/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 29 2025 | 15:24:43 */
/* Author Signature Box Styles */
.author-signature {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0; /* zmieniono z 12px */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    width: 100%;
    max-width: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #dee2e6;
    box-sizing: border-box;
}
.author-avatar {
    flex-shrink: 0;
}
.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* pozostawione, bo dotyczy zdjęcia, nie trzeba zmieniać jeśli chcesz zachować okrągły avatar */
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.author-info {
    flex: 1;
    min-width: 0;
}
.author-name {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}
.author-link {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}
.author-link:hover {
    color: #3498db;
    text-decoration: underline;
}
.author-title {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}
.author-description {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}
.author-social {
    display: flex;
    gap: 15px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 0; /* zmieniono z 8px */
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    color: #495057;
    border-color: #adb5bd;
    background-color: #f8f9fa;
    transform: translateY(-1px);
}
.social-link svg {
    width: 18px;
    height: 18px;
}
.linkedin-link:hover {
    color: #0077b5;
    border-color: #0077b5;
}
.email-link:hover {
    color: #0077b5;
    border-color: #0077b5;
}
.phone-link:hover {
    color: #0077b5;
    border-color: #0077b5;
}
/* Responsive Design */
@media (max-width: 768px) {
    .author-signature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
        margin: 15px 0;
    }

    .author-social {
        justify-content: center;
    }

    .avatar-image {
        width: 80px;
        height: 80px;
    }

    .author-name {
        font-size: 1.3rem;
    }

    .author-description {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .author-signature {
        padding: 20px 15px;
    }

    .author-social {
        justify-content: center;
    }

    .avatar-image {
        width: 70px;
        height: 70px;
    }

    .author-name {
        font-size: 1.2rem;
    }

    .author-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}
