/* CSS cho phần Nhận định bóng đá theo thiết kế Figma */

/* Tiêu đề phần */
.football-review-box h2.section-head,
.football-review-box-mobile h2.section-head,
.football-commentary-box h2.title {
    position: relative;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.2;
}

.football-review-box h2.section-head::before,
.football-review-box-mobile h2.section-head::before,
.football-commentary-box h2.title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #FD8901;
    border-radius: 2px;
}

/* Danh sách nhận định */
.football-review-list {
    padding: 10px;
}

/* Trang nhận định */
.football-commentary-box .football-review-list {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* Item nhận định - Trang chủ */
.football-review-box .football-review-item,
.football-review-box-mobile .football-review-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #F2F0EF;
    text-decoration: none;
    color: #000;
}

.football-review-box .football-review-item:first-child,
.football-review-box-mobile .football-review-item:first-child {
    margin-top: 0;
}

.football-review-box .football-review-item:hover,
.football-review-box-mobile .football-review-item:hover {
    background-color: #e9e6e5;
}

/* Item nhận định - Trang nhận định */
.football-commentary-box .football-review-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #ACADAD;
    text-decoration: none;
    color: #000;
}

.football-commentary-box .football-review-item:first-child {
    border-top: 0;
}

.football-commentary-box .football-review-item:hover {
    background-color: #f9f9f9;
}

/* Live box */
.live-box {
    width: 60px;
    height: 30px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 60px;
    background-color: #F51E1E;
}

.live-box .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
    margin-right: 5px;
    animation: pulse 1s infinite;
}

.live-box .text {
    color: white;
    font-weight: bold;
}

/* Time box */
.time-box {
    width: 100%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 60px;
}

.time-box .text {
    color: #FD8901;
    font-weight: bold;
}

.time-box2 {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 60px;
}

.time-box2 .text {
    color: #FD8901;
    font-weight: bold;
}

/* Nội dung nhận định - Trang chủ */
.football-review-box .football-review-content,
.football-review-box-mobile .football-review-content {
    margin-left: 5px;
    padding-left: 5px;
    border-left: 0.5px solid #000;
    font-size: 14px;
    line-height: 1.3;
}

/* Nội dung nhận định - Trang nhận định */
.football-commentary-box .football-review-content {
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.4;
}

/* Nút xem thêm */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #FD8901;
    color: #FD8901;
    transition: all 0.3s ease;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: none;
}

.btn-view-more:hover {
    background-color: #FD8901;
    color: white;
}

/* Hiệu ứng nhấp nháy cho dot */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .football-review-box {
        display: none;
    }

    .football-review-box-mobile {
        display: block;
        background-color: white;
        border-radius: 10px;
        padding: 15px 0;
        margin-top: 15px;
    }

    .football-review-box-mobile h2.section-head {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .football-review-box {
        display: block;
    }

    .football-review-box-mobile {
        display: none;
    }
}
