﻿/* 未提供樣版檔案或無法讀取相關設定檔，請直接至頁面清單瀏覽 */
/* ========================================
           Main Section
        ======================================== */

.exhibitor-section {
    padding: 70px 0;
}

.intro-row {
    align-items: flex-start;
    margin-bottom: 35px;
    margin-top: 100px;
}

@media (max-width: 767.98px) {
    .intro-row {
        margin-top: 30px;
    }
}

.intro-content {
    padding-right: 50px;
    margin-bottom: 30px;
}

.intro-content h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #222;
    margin-bottom: 30px;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: #0088c9;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all .3s ease;
}

.intro-btn:hover {
    color: #fff;
    text-decoration: none;
    background: #006fa6;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, .15);
}


/* ========================================
           Main Image
        ======================================== */

.intro-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* ========================================
   Small Banner
======================================== */
/* ========================================
   Banner Area
======================================== */
/* ========================================
   Banner Area
======================================== */

.banner-area {
    margin-top: 10px;
}

.banner-item {
    margin-bottom: 18px;
}


/* ========================================
   Banner 主體
   對應 InnoVEX 主視覺藍紫漸層
======================================== */

.banner-link {
    position: relative;
    display: flex;
    align-items: center;

    height: 115px;
    padding: 20px 30px;

    overflow: hidden;

    color: #fff;
    text-decoration: none;

    border-radius: 5px;

    /*
       主視覺色調：
       深藍黑 → 科技藍 → 紫藍
    */
    background: linear-gradient(120deg,
            #07132f 0%,
            #063d77 45%,
            #174ea4 70%,
            #433092 100%);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 5px 15px rgba(9, 24, 65, 0.15);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .4s ease;
}


/* ========================================
   右上幾何線條
======================================== */

.banner-link::before {
    content: "";

    position: absolute;

    width: 155px;
    height: 155px;

    right: -75px;
    top: -95px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    transform: rotate(45deg);

    transition: all .4s ease;
}


/* ========================================
   左下裝飾線
   呼應主視覺的亮光
======================================== */

.banner-link::after {
    content: "";

    position: absolute;

    left: 30px;
    bottom: 17px;

    width: 52px;
    height: 2px;

    background: linear-gradient(90deg,
            #ffffff 0%,
            #64d9ff 55%,
            #ffb000 100%);

    transition: width .35s ease;
}


/* ========================================
   Banner Title
======================================== */

.banner-title {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;

    transition: transform .3s ease;
}


/* ========================================
   Hover
======================================== */

.banner-link:hover {
    color: #fff;
    text-decoration: none;

    transform: translateY(-3px);

    background: linear-gradient(120deg,
            #0a1838 0%,
            #074989 43%,
            #1d5ab6 70%,
            #5137a5 100%);

    box-shadow:
        0 10px 25px rgba(15, 43, 110, 0.22);
}


.banner-link:hover::before {
    right: -58px;
    top: -80px;

    border-color: rgba(255, 255, 255, 0.30);
}


.banner-link:hover::after {
    width: 85px;
}


.banner-link:hover .banner-title {
    transform: translateX(4px);
}


/* ========================================
   Focus
======================================== */

.banner-link:focus,
.banner-link:active,
.banner-link:focus-visible {
    color: #fff;
    text-decoration: none;
    outline: none;
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 991.98px) {

    .banner-link {
        height: 105px;
        padding: 18px 25px;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-link::after {
        left: 25px;
    }
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 767.98px) {

    .banner-area {
        margin-top: 0;
    }

    .banner-item {
        margin-bottom: 12px;
    }

    .banner-link {
        height: 95px;
        padding: 18px 22px;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-link::after {
        left: 22px;
        bottom: 14px;
    }
}


/* ========================================
   Small Mobile
======================================== */

@media (max-width: 575.98px) {

    .banner-link {
        height: 90px;
        padding: 16px 20px;
    }

    .banner-title {
        font-size: 17px;
    }

}