/* WELGV24 - Haberi Sesli Dinle */
.welg-speech-reader {
    width: 100%;
    margin: 14px 0 18px;
    padding: 14px 16px;
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 5px 18px rgba(15, 23, 42, .07);
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.welg-speech-reader[hidden] { display: none !important; }
.welg-speech-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.welg-speech-title-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}
.welg-speech-main-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #e30613 0%, #ff3b46 100%);
    box-shadow: 0 7px 17px rgba(227, 6, 19, .22);
    font-size: 18px;
}
.welg-speech-heading {
    display: block;
    color: #152033;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}
.welg-speech-status {
    display: block;
    max-width: 100%;
    margin-top: 3px;
    color: #758196;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.welg-speech-speed-wrap {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    color: #667085;
    font-size: 12px;
}
.welg-speech-speed {
    height: 34px;
    padding: 0 26px 0 9px;
    border: 1px solid #d7deea;
    border-radius: 8px;
    background-color: #fff;
    color: #253047;
    font-size: 13px;
    outline: none;
}
.welg-speech-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.welg-speech-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    gap: 7px;
    border: 1px solid #d9e0e9;
    border-radius: 9px;
    background: #fff;
    color: #263247;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
    -webkit-tap-highlight-color: transparent;
}
.welg-speech-button:hover {
    background: #f5f7fa;
    border-color: #c8d1de;
}
.welg-speech-button:active { transform: translateY(1px); }
.welg-speech-button:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}
.welg-speech-button.is-primary {
    border-color: #e30613;
    background: #e30613;
    color: #fff;
}
.welg-speech-button.is-primary:hover {
    border-color: #c9000c;
    background: #c9000c;
}
.welg-speech-button.is-stop {
    color: #b42318;
}
.welg-speech-progress {
    flex: 1 1 auto;
    min-width: 90px;
    text-align: right;
    color: #7a8699;
    font-size: 12px;
}
.welg-speech-reader.is-speaking .welg-speech-main-icon {
    animation: welgSpeechPulse 1.45s ease-in-out infinite;
}
@keyframes welgSpeechPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227,6,19,.24), 0 7px 17px rgba(227,6,19,.22); }
    50% { box-shadow: 0 0 0 9px rgba(227,6,19,0), 0 7px 17px rgba(227,6,19,.22); }
}
@media (max-width: 600px) {
    .welg-speech-reader {
        margin: 10px 0 14px;
        padding: 12px;
        border-radius: 10px;
    }
    .welg-speech-head {
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .welg-speech-main-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 16px;
    }
    .welg-speech-heading { font-size: 15px; }
    .welg-speech-speed-wrap > span { display: none; }
    .welg-speech-speed { height: 32px; }
    .welg-speech-controls {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 7px;
    }
    .welg-speech-button {
        min-width: 0;
        min-height: 40px;
        padding: 0 7px;
        font-size: 12px;
    }
    .welg-speech-progress {
        grid-column: 1 / -1;
        min-width: 0;
        padding-top: 2px;
        text-align: left;
    }
}
@media print {
    .welg-speech-reader { display: none !important; }
}

/* WELGV25 - Sesli dinleme kutusu haber metninin altında */
.welg-speech-after-article,
.welg-speech-content-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    clear: both;
    float: none;
    position: relative;
    box-sizing: border-box;
}
.welg-speech-after-article {
    margin: 0 0 14px;
}
.welg-speech-after-article::before,
.welg-speech-after-article::after,
.welg-speech-content-wrap::before,
.welg-speech-content-wrap::after {
    content: "";
    display: table;
    clear: both;
}
.welg-speech-after-article .welg-speech-reader,
.welg-speech-content-wrap .welg-speech-reader {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    clear: both !important;
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 1;
    overflow: hidden;
}
.welg-speech-content-wrap {
    margin-top: 0;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .welg-speech-after-article .welg-speech-reader,
    .welg-speech-content-wrap .welg-speech-reader {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }
}
