/* 大筆電 */
@media (max-width: 1600px) {
}

/* 筆電 */
@media (max-width: 1440px) and (min-width: 991px) {

}

/* 大橫式平板(例: iPad Pro/Air) */
@media (max-width: 1200px) and (min-width: 992px) {
    
}

/* 平板（<=992px） */
@media (max-width: 992px) {

    .text-header {
        font-size: 28px;
        font-weight: 700;
    }

    .text-subheader {
        font-size: 21px;
        font-weight: 700;
    }

    .text-subtitle {
        font-size: 21px;
        font-weight: 400;
    }

    /* #region -----Hero(Banner) 區塊樣式----- */

    .hero{
        height: unset;
        margin-top: 70px;
        flex-shrink: 0;
    }

    .hero [name="banner"] {
        position: absolute;
        top: 0;
        left: 0;
        height: 294px;
        aspect-ratio: 361/147;
    }

    .hero [name="overlay"] {
        position: absolute;
        top: 210px;
        left: 0;
        width: 100%;
        height: 89px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    }

    .hero [name="container"] {
        margin-top: 280px;
        max-width: 70%;
        align-items: unset;
        justify-content: center;
    }

    /* #endregion */


    /* #region -----Interface Controllers Section----- */
    .controllers{
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .DropdownItem [name="downloadList"] {
        padding-top: 19px;
        padding-bottom: 0;
    }

    .DropdownItem [name="downloadItem"] {
        margin-bottom: 30px;
    }
    
    .DropdownItem [name="subcategorySelect"] { 
        margin-bottom: 20px; 
        font-size: unset;
    }
    /* #endregion */ 
}

/* 小平板或大手機（<=768px） */
@media only screen and (max-width: 768px) {
    
}

/* 小型手機（<=576px） */
@media (max-width: 576px) {
    
}