 /*сейчас в эфире*/

.watch-now-item {
    display: flex;
    gap: 15px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e6edf2;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: .2s ease;
	padding-bottom:50px;
}

.watch-now-item:hover {
    transform: translateY(-2px);
}

/* LOGO */
.watch-now-item__logo {
    width: 110px;
    min-width: 110px;
    height: 110px;
    border-radius: 0;
    overflow: hidden;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-now-item__logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

/* MAIN */
.watch-now-item__main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* TOP */
.watch-now-item__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.watch-now-item__title {
    font-size: 18px;
    font-family: Bold, sans-serif;
    color: #1c548b;
    text-decoration: none;
}

.watch-now-item__country {
    font-size: 13px;
    color: #888;
    margin-top: 3px;
}

/* BUTTON */
.watch-now-item__top .watch-btn {
    background: #1480d9;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-family: Bold, sans-serif;
}

.watch-now-item__top .watch-btn:hover {
    background: #0f6fcf;
}

/* EPG */
.watch-now-item__epg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.watch-now-item__col {
    background: #f4f7fa;
    border-radius: 6px;
    padding: 10px;
}

.watch-now-item__col--now {
    background: #eef6ff;
}

/* LABEL */
.watch-now-item__label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

/* TIME */
.watch-now-item__time {
    font-size: 13px;
    color: #1480d9;
    font-family: SemiBold, sans-serif;
    margin-top: 4px;
}

/* NAME */
.watch-now-item__name {
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.3;
    color: #111;
}

/* PROGRESS */
.watch-now-item__progress {
    height: 4px;
    background: #dfe6ed;
    border-radius: 999px;
    margin-top: 6px;
    overflow: hidden;
}

.watch-now-item__progress span {
    display: block;
    height: 100%;
    background: #1480d9;
}

/* MOBILE */
@media (max-width: 768px) {
    .watch-now-item {
        flex-direction: column;
    }

    .watch-now-item__logo {
        width: 100%;
        height: 150px;
    }

    .watch-now-item__epg {
        grid-template-columns: 1fr;
    }
}





.watch-now-head {
    margin-bottom: 20px;
	margin-top: 20px;
}

.watch-now-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin: 0;
    position: relative;
    display: inline-block;
}

/* синяя линия */
.watch-now-title::after {
    content: '';
    display: block;
    width: 120px; /* длина линии */
    height: 4px;
    background: #1480d9;
    border-radius: 2px;
    margin-top: 8px;
}
 





/* FILTERS WRAP */
.watch-now-filters {
    background: #fff;
    border: 1px solid #e6edf2;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    margin-bottom: 20px;
}

/* ROW */
.watch-now-filters__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* расстояние между input и кнопкой */
}

/* INPUT */
.watch-now-input {
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #d8e0e7;
    background: #fff;
    font-size: 14px;
    color: #000;
    width: 600px; /* вместо min-width */
    transition: .2s ease;
}

.watch-now-input:focus {
    border-color: #1480d9;
    box-shadow: 0 0 0 2px rgba(20,128,217,.15);
}

/* SELECT */
.watch-now-select {
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d8e0e7;
    background: #fff;
    font-size: 14px;
    min-width: 140px;
}

/* CHECKBOX */
.watch-now-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.watch-now-check input {
    width: 16px;
    height: 16px;
    accent-color: #1480d9;
}

/* BUTTON */
.watch-now-btn {
    height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    border: none;
    background: #1480d9;
    color: #fff;
    font-size: 14px;
    font-family: Bold, sans-serif;
    cursor: pointer;
    transition: .2s ease;
}

.watch-now-btn:hover {
    background: #0f6fcf;
}

/* LOAD MORE */
.watch-now-more {
    text-align: center;
    margin-top: 20px;
}

.watch-now-more__btn {
    height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    border: none;
    background: #1480d9;
    color: #fff;
    font-size: 15px;
    font-family: SemiBold, sans-serif;
    cursor: pointer;
}

.watch-now-more__btn:hover {
    background: #0f6fcf;
}

/* MOBILE */
@media (max-width: 768px) {

    .watch-now-filters__row {
        flex-direction: column;
        align-items: stretch;
    }

    .watch-now-input,
    .watch-now-select,
    .watch-now-btn {
        width: 100%;
    }

    .watch-now-check {
        justify-content: flex-start;
    }
}
.watch-now-item {
    margin-bottom: 10px;
}
.watch-now-item__poster {
    width: 160px;
    min-width: 160px;
	
}

.watch-now-item__poster img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.watch-now-item__poster-title {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.2;
    color:#1480d9;
	text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.watch-now-home__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:16px;
}

.watch-now-home__more-wrap{
    margin-top:16px;
    text-align:center;
}

.watch-now-home__more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 18px;
    border:0;
    border-radius:10px;
    cursor:pointer;
}