.deixav5-reader {
    width: 100%;
    min-height: 56px;
    margin: 0 0 18px;
    padding: 8px 10px;
    border: 1px solid #e7ece8;
    border-radius: 5px;
    background: #fff;
    color: #1f1f1f;
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(170px, 0.8fr) minmax(240px, 1.2fr);
    gap: 12px;
    align-items: center;
}

.deixav5-reader,
.deixav5-reader * {
    box-sizing: border-box;
}

.deixav5-reader-main,
.deixav5-reader-controls {
    display: flex;
    align-items: center;
}

.deixav5-reader-main {
    gap: 9px;
    min-width: 0;
}

.deixav5-reader-controls {
    gap: 8px;
    margin-top: 0;
    min-width: 0;
}

.deixav5-reader-play,
.deixav5-reader-restart,
.deixav5-reader-speed {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.deixav5-reader-play {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a7f45;
    color: #fff;
    font-size: 12px;
    box-shadow: none;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.deixav5-reader-play:hover,
.deixav5-reader-play:focus {
    background: #116b37;
    transform: translateY(-1px);
}

.deixav5-reader-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.deixav5-reader-kicker {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0;
}

.deixav5-reader-status {
    font-size: 10px;
    line-height: 1.25;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deixav5-reader-restart,
.deixav5-reader-speed {
    min-width: 28px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f8f5;
    color: #1a7f45;
    font-size: 10px;
    font-weight: 800;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.deixav5-reader-restart:hover,
.deixav5-reader-restart:focus,
.deixav5-reader-speed:hover,
.deixav5-reader-speed:focus {
    background: #1a7f45;
    color: #fff;
}

.deixav5-reader-progress {
    position: relative;
    flex: 1 1 auto;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #e3eee7;
}

.deixav5-reader-progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    border-radius: inherit;
    background: #1a7f45;
    transition: width 0.2s linear;
}

.deixav5-reader-time {
    min-width: 34px;
    text-align: right;
    font-size: 10px;
    font-weight: 700;
    color: #555;
}

.deixav5-reader.is-reading .deixav5-reader-play {
    background: #116b37;
}

.deixav5-reader.is-unavailable {
    opacity: 0.72;
}

.deixav5-reader.is-unavailable button {
    cursor: not-allowed;
}

@media (max-width: 1025px) {
    .deixav5-reader {
        grid-template-columns: 1fr;
        gap: 11px;
    }
}

@media (min-width: 1026px) {
    body.single #theme-content .row,
    body.page:not(.home) #theme-content .row {
        align-items: flex-start;
    }

    body.single #theme-content .row .secondary-sidebar,
    body.page:not(.home) #theme-content .row .secondary-sidebar,
    body.single #theme-content .row .secondary-sidebar aside,
    body.page:not(.home) #theme-content .row .secondary-sidebar aside {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    body.single #theme-content .row .secondary-sidebar .widget:first-child,
    body.page:not(.home) #theme-content .row .secondary-sidebar .widget:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 560px) {
    .deixav5-reader {
        min-height: 0;
        padding: 10px;
    }

    .deixav5-reader-controls {
        flex-wrap: wrap;
    }

    .deixav5-reader-progress {
        flex-basis: calc(100% - 92px);
    }

    .deixav5-reader-status {
        white-space: normal;
    }
}
