/* 平台注意事項組件樣式 */

/* 最外層白色容器 */
.platform-notice {
    background-color: #ffffff;
    padding: 15px;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

/* 內容包裝器 */
.platform-notice__wrapper {
    position: relative;
    width: 100%;
}

/* 橘色邊框容器 */
.platform-notice__container {
    background-color: #ffffff;
    border: 1px solid #ff7800;
    border-radius: 0;
    padding: 22px 15px 12px 15px;
    position: relative;
    width: 100%;
}

/* 標題區域（浮在邊框上方） */
.platform-notice__header {
    position: absolute;
    top: -8px;
    left: 9px;
    display: flex;
    gap: 5px;
    align-items: center;
    background-color: #ffffff;
    padding: 0 5px;
}

/* 圖標容器 */
.platform-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.platform-notice__icon i {
    font-size: 14px;
    color: #ff7800;
}

/* 標題文字 */
.platform-notice__title {
    font-size: 14px;
    font-weight: 900;
    line-height: normal;
    color: #ff7800;
    flex-shrink: 0;
}

/* 內容文字 */
.platform-notice__content {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.36px;
    color: #333333;
    white-space: pre-wrap;
    word-break: break-word;
}

/* 列表模式（多條注意事項） */
.platform-notice__list {
    margin: 0;
    padding: 0 0 0 16px;
    list-style: disc !important;
}

.platform-notice__list-item {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.36px;
    color: #333333;
    word-break: break-word;
    list-style: disc !important;
}

.platform-notice__list-item + .platform-notice__list-item {
    margin-top: 8px;
}
