/* ================================================== */


/* hp 
/* created by ignatius pineapple design limited

@charset "utf-8";

Table of content:

* extra functions for slider
*  
*/

/* ================================================== */
 
/* new added */
  /* .owl-carousel.three-items-carousel {
    padding-left: 60px;
    padding-right: 60px;
}   */
/* 主容器：左右留 100px 空間 */
.three-items-carousel {
    padding-left: 100px !important;
    padding-right: 100px !important;
    position: relative;
}

/* 箭頭整體定位 */
.three-items-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin: 0;
}

/* 左箭頭：距離左邊 100px */
.three-items-carousel .owl-nav .owl-prev {
    left: -10px;
    margin-left: 0;
}

/* 右箭頭：距離右邊 100px */
.three-items-carousel .owl-nav .owl-next {
    right: 190px;
    margin-right: 0;
}

/* 可選：美化箭頭 */
.three-items-carousel .owl-nav .owl-prev,
.three-items-carousel .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: background 0.3s;
    text-decoration: none;
}

.three-items-carousel .owl-nav .owl-prev:hover,
.three-items-carousel .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.6);
}


.logo-hp-dealer {
    max-width: 100%;
    height: auto;
}

/* Mobile: Reduce hp-dealer.png to 50% size */
@media (max-width: 576px) {
    .logo-hp-dealer {
        max-width: 40%;
        height: auto;
    }
}


.video-container-yt {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 宽高比 (9 / 16 = 0.5625) */
}

.video-container-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

  


.sitemap-mobile-columns {
    list-style: none;
    padding-left: 0;
}
@media (max-width: 575.98px) {
    .sitemap-mobile-columns {
        column-count: 2;
        column-gap: 15px;
    }
    .sitemap-mobile-columns li {
        break-inside: avoid;
        margin-bottom: 6px;
    }
}






/* 確保 Owl Carousel 的 item 容器等高 */
.owl-carousel .item {
    display: flex;
    flex-direction: column;
}

/* 讓內容容器撐滿高度 */
.owl-carousel .item .bg-blue {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     min-height: 520px; /* 關鍵：讓內部容器填滿 item 高度 */
}

/* 標題和按鈕區域固定在底部 */
.owl-carousel .item .bg-blue h4 {
    flex-grow: 1;
    margin-bottom: 16px; /* 適當間距 */
}

/* 按鈕容器保持在底部 */
.owl-carousel .item .bg-blue .col-md-2 {
    margin-top: auto; /* 將按鈕推到底部 */
}

/* item 2, 4不同色 */
.item-special-1 .bg-blue {
    background-color: #5d1679 !important;
}


.item-special-2 .bg-blue {
    background-color: #16794b !important;
}

.item-special-4 .bg-blue {
    background-color: #4d1a4a !important;
}


/* 標籤容器 */
.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

/* 單個標籤樣式 */
.solution-tags span {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 10px;
    margin: 0 0 5% 0;
    font-size: 0.75rem;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

/* 滑鼠懸停效果（可選） */
.solution-tags span:hover {
    background-color: rgba(255, 255, 255, 0.25);
    cursor: default; /* 因為不是連結，設為 default */
}