﻿.home-cat-section {
    margin-bottom: 3rem;

    .cat-item {
        display: block;
        border-radius: 15px;
        overflow: hidden;

        video {
            display: block;
            width: 100%;
            object-fit: cover;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
        }

        .text-box {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 1rem;
            gap: 0.5rem;
            background-color: rgba(45, 55, 67, 0.5);

            .title-box {
                min-width: 165px;
                max-width: 100%;
                margin-bottom: 13px;
                padding-bottom: 0.2rem;
                border-bottom: solid 1px rgba(255, 255, 255, 0.2);

                .title {
                    font-size: 1rem;
                    margin: 0;
                    color: #fff;
                }

                .subtitle {
                    color: #fff;
                    font-size: 0.7rem;
                }
            }

            .more {
                width: 28px;
                height: 28px;
                border: solid 1px #fff;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;

                svg {
                    height: 0.6rem;
                    stroke: #fff;
                }
            }
        }
    }

    @media(max-width:768px) {
        .cat-item {
            margin-bottom: 1rem;
        }
    }
}