/* ------------------- 關於我們標題 ------------------- */
.chapter-title {
    position: relative;
    background-image: url('/assets/images/About-Title/About-Title.jpg');
    background-size: cover;
    background-position: 0 60%;
    background-repeat: no-repeat;
}

main {
    margin-bottom: 10rem;
}

/* ------------------- 關於我們內容-關於台詮 ------------------- */
.about-section {
    background-color: #ffffff;
}

.about-company {
    padding: 3rem 0 1rem 0;
}

.section-title {
    position: relative;
    font-size: 2.25rem;
    font-weight: 600;
    margin: 3.5rem 0;
    z-index: 0;
}

.title-underline {
    position: absolute;
    left: 39px;
    width: 5%;
    height: 0.3rem;
    background: #d80101;
    margin-top: 0.5rem;
}

@media(max-width: 767px) {
    .title-underline {
        left: 42px;
        width: 15%;
    }
}

.dynamic-bg::after {
    content: attr(data-en);
    position: absolute;
    display: block;
    inset: 0;
    font-size: 5rem;
    font-weight: 800;
    color: rgb(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: -1;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transform: translateY(-50px);
}

@media(max-width: 767px) {
    .dynamic-bg::after {
        font-size: 4rem;
        transform: translateY(-40px);
    }
}

/* ------------------- 關於我們內容-影音&網路 ------------------- */
.card {
    box-shadow: none;
    border: none;
    background-color: transparent;
}

.card-title {
    display: block;
    margin: 0 auto;
    width: 70%;
    border-bottom: 2px solid black;
    padding: 0.7rem;
    color: rgb(0, 0, 0);
}

.card-img-top {
    position: relative;
    display: block;
    max-width: 500px;
    max-height: 500px;
    margin: 0 auto;
    border-bottom: 3px solid red;
}

/* ------------------- 了解更多 ------------------- */
.more-about-section {
    background-color: #f5f5f5a1;
    width: 100%;
}

.image-cards {
    cursor: pointer;
    display: flex;
    gap: 2px;
}

.image-card {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-card-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    /* background-color: #000000; */
    border: 2px solid black;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* 遮罩 */
.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0, 0.7);
    transition: background 0.4s ease;
    z-index: 1;
}

.image-card:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card:hover .image-card-title {
    transform: translate(-50%, -10px);
    /* 往上移 */
}

/* ------------------- 關於我們內容-影音&網路 ------------------- */
.about-advantage-section {
    padding-bottom: 32px;
    background-image: url("/assets/images/global-1920-x-1080-background-8r7r4jmmeuz503hm.jpg");
    background-size: cover;
    background-position: center;
}

.about-advantage-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
    margin-left: 0;
}

.about-advantage-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 3px;
    background: #ff0000;
}