

.stream-table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 40px;
}

.stream-table tr {
  background: #f0f8ff;
    position: relative;
    display: block;
    flex: 1 1 45%;
    max-width: calc(50% - 10px);
    margin: 0 0 10px !important;
    padding: 0;
    /*height: 80%;*/
  
   background-size: cover;
    border: 1px solid #F1F1F1;
    border-radius: 20px;
    transition: all .3s;
    overflow: hidden;
}

.stream-table tr:hover{
    transform: translatey(-5px);
   background: #ddeeff;
    border: 1px solid rgba(20, 20, 20, 0.05);
    box-shadow: 12px 24px 27px rgba(0, 0, 0, 0.09), 3px 6px 15px rgba(0, 0, 0, 0.1), 3px 3px 6px rgba(0, 122, 163, 0.07);

}

.stream-table tr td {
    position: relative;
    display: block !important;
    padding: 0 !important;
    height: 100% !important;
    z-index: 100;
    transition: all .3s;
}
.stream-table tr td:hover {
    background: transparent!important;
}

.stream-table tr td a {
    display: block !important;
    padding: 10px !important;
    min-height: 170px;
    width: 100%;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
}
.stream-table tr a .stream-title {
    display: block;
    margin-bottom: 10px !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2 !important;
    color: #202020;
   /*
    text-align: left !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    hyphens: manual !important;
    word-break: keep-all !important;
    white-space: normal !important;
    width: 55% !important;
    max-width: 220px !important;
    padding-right: 5px !important;
    box-sizing: border-box !important;*/
}

.stream-table tr a .stream-title .t-second {
    color: #000000;
}

.stream-table tr:hover a .stream-title .t-one {
    color: #ffffff;
}

.stream-table tr:hover a .stream-title .t-second {
    color: #44FFB5;
}

.stream-table tr a div {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #2C5242;
}

.stream-table tr:hover a div {
    color: #E7B33B;
}

.stream-table tr a div b {
   position: relative;
  margin-bottom: 8px !important;
    color: #202020;
    font-weight: 300;
    font-size: 12px;
    font-family: "Source Serif 4", "Georgia", serif !important;  
    display: block !important;
    width: 100% !important;
    line-height: 1.2 !important;
}

.stream-table tr:hover a div b {
    color: #E7B33B;
}


.stream-table tr:hover a div b::before {
    filter: invert(89%) sepia(27%) saturate(1048%) hue-rotate(84deg) brightness(103%) contrast(101%);
}


@media (max-width: 760px) {
    .stream-table tr {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .stream-table tr a {
        min-height: inherit !important;
    }
}

  



