/* ========================================
   AUTHOR BOX
======================================== */

.ti-author-box {
    margin-top: 32px;
    padding: 24px;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    background: #ffffff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.ti-author-box:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.ti-author-box * {
    box-sizing: border-box;
}

/* ========================================
   LAYOUT
======================================== */

.ti-author-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ========================================
   AVATAR
======================================== */

.ti-author-avatar {
    flex-shrink: 0;
}

.ti-author-avatar img {
    width: 72px;
    height: 72px;

    border: 2px solid #f3f4f6;
    border-radius: 50%;

    object-fit: cover;
}

/* ========================================
   CONTENT
======================================== */

.ti-author-content {
    flex: 1;
}

/* ========================================
   LABEL
======================================== */

.ti-author-label {
    display: block;

    margin-bottom: 6px;

    color: #6b7280;

    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   NAME
======================================== */

.ti-author-name {
    position: relative;

    margin: 0;

    color: #111827;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.ti-author-name::after {
    content: "";

    display: block;

    width: 42px;
    height: 3px;

    margin-top: 6px;

    border-radius: 2px;

    background: #facc15;
}

/* ========================================
   BIO
======================================== */

.ti-author-bio {
    margin: 12px 0 14px;

    color: #4b5563;

    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   LINK
======================================== */

.ti-author-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    color: #2563eb;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.2s ease;
}

.ti-author-link:hover {
    color: #1d4ed8;

    text-decoration: underline;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {

    .ti-author-box {
        padding: 20px;
    }

    .ti-author-inner {
        gap: 16px;
    }

    .ti-author-avatar img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 600px) {

    .ti-author-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ti-author-avatar {
        margin-bottom: 10px;
    }

    .ti-author-name {
        font-size: 18px;
    }

    .ti-author-bio {
        font-size: 13.5px;
    }
}