.article-reader {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.125rem;
    border: 1px solid #e6e8ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.article-reader__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.article-reader__header strong {
    display: block;
    color: #111c35;
    font-size: 1rem;
}

.article-reader__status {
    display: block;
    margin-top: 0.2rem;
    color: #6d7484;
    font-size: 0.8rem;
}

.article-reader__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.article-reader__button,
.article-reader__speed select {
    min-height: 38px;
    border: 1px solid #e0e4ed;
    border-radius: 10px;
    background: #fff;
    color: #25304a;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;
}

.article-reader__button {
    padding: 0 0.85rem;
    cursor: pointer;
}

.article-reader__button:hover:not(:disabled) {
    border-color: #a80065;
    color: #a80065;
}

.article-reader__button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.article-reader__button--primary {
    border-color: #a80065;
    background: #a80065;
    color: #fff;
}

.article-reader__button--primary:hover:not(:disabled) {
    background: #890052;
    color: #fff;
}

.article-reader__speed {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #6d7484;
    font-size: 0.78rem;
}

.article-reader__speed select {
    padding: 0 0.55rem;
}

@media (max-width: 760px) {
    .article-reader__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-reader__controls {
        justify-content: flex-start;
        width: 100%;
    }
}
