.top {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.bottom {
    display: flex;
    justify-content: flex-end;
}

ul {
    list-style-type: square;
}

li::marker {
    color: #ab0000;
}

ul li {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.4;
}

li {
    position: relative;
    padding-bottom: 15px;
    color: black;
}

li+li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #969696;
    position: absolute;
    top: -20px;
    left: 0;
    opacity: 0.3;
}

.summary {
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-size: 25px;
    margin-left: 10px;
    color:#B22222
}

.credit {
    font-size: 12px;
    color: #939393;
    font-weight: normal;
}

.play-summary-button {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    color: #d82430;
    border-radius: 3px;
    gap: 10px;
    width: 155px;
    height: 42px;
    justify-content: center;
    cursor: default;
    margin-top: -6px;
    cursor: pointer;
    transition: all .16s;
}

.play-summary-button:hover {
    opacity: .85;
}

.content {
    background: white;
    z-index: 2;
    position: relative;
    padding: 2px 15px 0px 25px;
    border-radius: 3px;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: calc(100% - 62px);
}

ul {
    padding-left: 0;
}

.icon {
    width: 23px;
    height: 23px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 24px;
}

.icon.play {
    background-image: url('/assets/ai-summery/media/play-icon.svg');
}

.icon.stop {
    background-image: url('/assets/ai-summery/media/stop-icon.svg');
}

#audioPlayer {
    display: none;
}

h3 {
    margin: 0;
    font-size: 25px;
}
h3 {
    font-family: "Gilroy Black", sans-serif;
    font-weight: 400;
}

@media (min-width: 991px)  {
    .news-frame {
        width: 620px;
        margin: 0 auto;
        height: 500px !important;
    }
}

/* Fall Back - Content */
.news-frame {
    height: 100%;
    background: #e3e3e3;
    position: relative;
    padding: 17px 20px 0;
}

.news-frame:before {
    top: 0;
    left: 0;
    right: 0;
    content: '';
    height: 93px;
    position: absolute;
    background: #D8242F;
    background-size: 100%;
}

.head-title {
    text-align: left;
    height: 29px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    font-family: "Gilroy Black", sans-serif;
}

.news-box {
    border: 2px dotted #ededed;
    border-radius: 11px;
    height: 145px;
    display: block;
    position: relative;
    overflow: hidden;
}

.news-box:after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 75%;
    content: "";
    transition: all .13s;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, rgba(0, 0, 0, .9)));
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .9) 90%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .9) 90%);
    position: absolute;
}

.news-box .image {
    width: 100%;
}

.news-box .image img {
    width: 154%;
    margin-left: -60px;
}

.news-box .title {
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #fff;
    z-index: 3;
    font-size: 16px;
    line-height: 20px;
    transition: all .13s;
    font-family: "Gilroy-Bold", sans-serif;
    position: absolute;
}

.mb10 {
    margin-bottom: 10px;
}
.row {
    margin-left: -10px;
    margin-right: -10px;
}

.row:after, .row:before {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.col-md-6 {
    width: 50%;
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
}