/* style118.css */
/* Page 118 - 招生訊息 */

/* 隱藏固定垂直標籤 */
.bundle-118-active .fixed-vertical-label {
    opacity: 0 !important;
    visibility: hidden !important;
}

.bundle-118 .container {
    max-width: 800px;
    width: 100%;
    margin: auto;
    padding: 0;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}

.bundle-118 .recruitment-card {
    overflow: hidden;
}

.bundle-118 .card-header {
    background-color: #E35B44;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.bundle-118 .card-content {
    border: 4px dotted #E35B44;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.bundle-118 .left-column,
.bundle-118 .right-column {
    flex: 1;
    min-width: 300px;
}

.bundle-118 .item {
    margin-bottom: 30px;
}

.bundle-118 .item-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #E35B44;
    font-size: 1.3em;
    font-weight: 900;
}

.bundle-118 .item-title::before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #E35B44;
    border-radius: 50%;
    margin-right: 8px;
}

.bundle-118 .item-content {
    margin-left: 23px;
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
}

/* 頁碼 */
.bundle-118 .page-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    gap: 10px;
}

.bundle-118 .page-text {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

.bundle-118 .page-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #EA8A70;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .bundle-118 .card-content {
        flex-direction: column;
    }

    .bundle-118 .left-column,
    .bundle-118 .right-column {
        width: 100%;
        min-width: auto;
    }

    .bundle-118 .card-header {
        font-size: 20px;
    }

    .bundle-118 .item-title {
        font-size: 1.1em;
    }

    .bundle-118 .item-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bundle-118 .card-header {
        font-size: 18px;
        padding: 10px;
    }

    .bundle-118 .item-title {
        font-size: 1em;
    }

    .bundle-118 .item-content {
        font-size: 0.9rem;
        margin-left: 20px;
    }

    .bundle-118 .page-text {
        font-size: 0.8rem;
    }

    .bundle-118 .page-circle {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

