@charset "utf-8";

/* =========================================================
   Authors Posts Widget Styles
   ========================================================= */

#apw-authors {
    font-family: inherit;
    line-height: 1.4;
}

#apw-authors a {
    color: #6FA5DB;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s ease;
}

#apw-authors a:hover {
    color: #4c8dc9;
    text-decoration: underline;
}

/* Author Row */
#apw-authors .apw-closed,
#apw-authors .apw-opened {
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
    clear: both;
}

/* Author Name Link */
#apw-authors a.apw-parent {
    display: inline-block;
    padding-left: 20px;
    line-height: 22px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: left center;
    font-weight: 600;
    color: #333;
}

/* Avatar */
#apw-authors div > img {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    object-fit: cover;
    float: right;
    margin-left: 6px;
}

/* Author Post Count */
#apw-authors a.apw-parent span {
    color: #989898;
    font-weight: 400;
    font-size: 13px;
    margin-left: 3px;
}

/* Expand/Collapse Icons */
#apw-authors .apw-closed a.apw-parent {
    background-image: url("../images/black-plus.png");
}

#apw-authors .apw-opened a.apw-parent {
    background-image: url("../images/black-minus.png");
}

/* Post List */
#apw-authors ul {
    list-style: none;
    margin: 6px 0 0 20px;
    padding: 0;
}

#apw-authors ul li {
    margin-bottom: 6px;
}

#apw-authors ul li a {
    color: #555;
    font-size: 14px;
}

#apw-authors ul li a:hover {
    color: #000;
}

#apw-authors ul li p {
    margin: 4px 0 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
}

/* Toggle States */
#apw-authors .apw-opened ul {
    display: block;
}

#apw-authors .apw-closed ul {
    display: none;
}