/* RWDnews005 模組樣式 */
.RWDnews005-container {
    position: relative;
}

.RWDnews005-container .owl-wrapper {
    align-items: stretch;
}


/* 項目容器 */
.RWDnews005-container .img-hover {
    position: relative;
    width: 100%;
    transition: all 0.35s ease;
    display: flex;
    height: auto;
    align-items: stretch;
    flex-direction: column;
}

.RWDnews005-container .img-hover .img-hover-inner {
    height: auto;
}

.RWDnews005-container .owl-carousel .owl-item .text-left {
    text-align: left;
    margin-bottom: 0;
}





/* 圖片樣式 */
.RWDnews005-container .img-hover img {
    width: 100%;
    transition: transform 0.35s ease;
}

.RWDnews005-container .img-hover:hover img {
    transform: scale(1.05);
}


/* 日期樣式 */
.RWDnews005-container .list-inline {
    margin: 1.5rem 0 0;
    padding: 0;
}



.RWDnews005-container .list-inline .fa-calendar {
    color: var(--TextColorPrimary);
}

/* Owl Carousel 客製化樣式 */
.RWDnews005-container .owl-carousel {
    position: relative;
}

/* Owl Carousel v1 Navigation 修正 */
.RWDnews005-container .owl-theme .owl-controls .owl-prev,
.RWDnews005-container .owl-theme .owl-controls .owl-next {
    position: absolute;
    color: var(--TextColorPrimary);
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.35s ease;
    opacity: 1;
}


/* 當設定為 buttons-autohide 時的樣式 */
.RWDnews005-container .buttons-autohide .owl-controls .owl-prev,
.RWDnews005-container .buttons-autohide .owl-controls .owl-next {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.RWDnews005-container .buttons-autohide:hover .owl-controls .owl-prev,
.RWDnews005-container .buttons-autohide:hover .owl-controls .owl-next {
    opacity: 1;
}

/* Owl Carousel v1 Pagination 修正 */
.RWDnews005-container .owl-controls .owl-pagination {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.RWDnews005-container .owl-controls .owl-page {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

.RWDnews005-container .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.RWDnews005-container .owl-controls .owl-page.active span,
.RWDnews005-container .owl-controls .owl-page:hover span {
    background: var(--TextColorPrimary);
}

