@media(max-width: 766px){

    .hidden {
        display: none;
    }

    .img {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .thuWra {
        position: relative;
    }

    .thuWra::after {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-color: rgba(255, 255, 255, 0);
        transition: background-color 0.3s ease;
        pointer-events: none;
    }

    .thuWra:active::after {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .swipeImg {
        display: flex;
        transition: transform 0.3s ease-in-out;
        width: 1080px;
        padding-left: 2%;
        padding-right: 2%;
        overflow: hidden;
        justify-content: flex-start;
        align-items: center;
    }

    .thuFil, .samFil {
        width: 360px;
        height: 170px;
        display: flex;
        justify-content: space-around;
    }

    .sample {
        display: flex;
    }

    .thuImg, .samImg {
        height: 170px;
        width: auto;
    }

    .swipeInd {
        display: flex;
        position: absolute;
        bottom: 10px;
        width: 100%;
        justify-content: center;
    }

    .swipeInd .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #bbb;
        margin: 0 5px;
        transition: background-color 0.3s ease;
    }

    .swipeInd .dot.active {
        background-color: #333;
    }


    h2 {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .titFil {
        width: 90%;
        margin-left: 5%;
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    .status {
        display: flex;
        flex-direction: column;
        width: 70%;
        margin-left: 27%;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .status p {
        margin-top: 5px;
        overflow-wrap: break-word;
        word-wrap: break-word;

    }

    .bold {
        font-weight: bold;
        margin-bottom: -8px;
    }

    .family {
        margin-top: 10px;
    }

    .autor {
        width: 70%;
    }

    .content {
        margin-bottom: 70px;
        width: 80%;
        margin-left: 10%;
    }

    .content p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .linkBtn {
        text-decoration: none;
        border: solid 2px #997844;
        padding: 15px;
        border-radius: 20px;   
        background-color: #bd924d;
        color: #faf0e6;
        font-size: 16px;
        text-align: center;
        width: 100px;
        transition: background-color 0.3s ease;
        margin-bottom: 50px;
    }

    .linkBtn:active {
        background-color: #d6b47c;
    }

    .backBtn {
        display: flex;
        text-decoration: none;
        color: white;    
        border: solid 2px #918776;
        padding: 15px;
        border-radius: 20px;   
        background-color: #b1a58e;
        font-size: 16px;
        width: 133px;
        height: 49px;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .backBtn:active {
        background-color: #d9cbb0;
    }
}

