/* ========================================
   POST META
======================================== */

.ti-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;

    padding: 10px 0;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;

    font-size: 16px;
}

/* ========================================
   META LEFT
======================================== */

.ti-meta-left {
    display: flex;
    flex-direction: column;

    line-height: 1.6;
}

/* ========================================
   AUTHOR
======================================== */

.ti-post-author-name {
    color: #333;

    font-size: 14px;
}

.ti-post-author-name a {
    color: #0073aa;

    text-decoration: none;
}

.ti-post-author-name a:hover {
    text-decoration: underline;
}

/* ========================================
   FOLLOW ICONS
======================================== */

.ti-follow-icons {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;
}

.ti-follow-label {
    margin-right: 8px;

    font-weight: bold;
}

.ti-follow-icons .ti-icon {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.ti-follow-icons .ti-icon:hover {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE
======================================== */

@media screen and (max-width: 600px) {

    .ti-post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .ti-follow-icons {
        margin-top: 10px;
    }
}