/* 廣告製作規範頁面樣式 */

.ad-spec__panel {
    min-height: 100vh;
    background-color: #ffffff;
}

.ad-spec__header {
    padding: 60px 0;
    color: white;
    text-align: center;
}

.ad-spec__header__inner {
    width: 95%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-spec__title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

/* 使用 Tailwind CSS 類別，移除自定義樣式 */

/* 使用 Tailwind CSS 類別，移除自定義樣式 */

/* 使用系統的 role__explain__table 類別，移除自定義樣式 */

.ad-spec__contact {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.ad-spec__contact__text {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ad-spec__contact__email {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.ad-spec__contact__link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ad-spec__contact__link:hover {
    color: #b02a37;
    text-decoration: underline;
}

.totop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.totop:hover {
    background-color: #b02a37;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

.totop img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .ad-spec__header {
        padding: 40px 0;
    }
    
    .ad-spec__title {
        font-size: 2.2rem;
    }
    
    /* 響應式設計由 Tailwind CSS 處理 */
    
    /* 響應式設計由 Tailwind CSS 處理 */
    
    .ad-spec__contact {
        margin-top: 40px;
        padding: 30px 15px;
    }
    
    .ad-spec__contact__text {
        font-size: 1rem;
    }
    
    .totop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .totop img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .ad-spec__title {
        font-size: 1.8rem;
    }
}
