    .item__cover {
        position: relative;
        width: 100%;
        aspect-ratio: 2 / 3;
        overflow: hidden;
        border-radius: 8px;
    }

    .item__cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    h2.section-title {
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section-description {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .item__title {
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.4em;
        height: 2.8em; 
    }

    .item__title a {
        color: #fff;
        text-decoration: none;
    }

    .item__title a:hover {
        text-decoration: underline;
    }
    
    .btn-telegram {
        display: inline-block;
        padding: 5px 10px;
        color: #fff;
        border: 2px solid #f1a103;
        background-color: transparent;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    .btn-telegram:hover {
        background-color: #f1a103;
        color: #000;
    }
.section.section--details {
    padding: 0px 0;
}
    
.marquee {
    width: 100%;
    overflow: hidden;
    color: #f1a103; 
    font-size: 14px; 
    white-space: nowrap;
    border-radius: 6px 6px 0 0;
    padding: 5px 0;
    position: relative;
}
    .marquee span {
        display: inline-block;
        padding-left: 100%;
        animation: marquee 30s linear infinite;
    }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
     .btn-watch {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #f1a103;
    color: #000;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.btn-full:hover {
    background-color: #d99000;
    color: #fff;
}
@media (min-width: 1200px) {
    .header__search-input {
        width: 300px;
        
    }
}
.logo1 img {
  height: 50px;
  width: auto;
  margin-right:50px;
}