@charset "utf-8";
/* =============================================
   FAQ Page CSS (OWS.KR)
   Location: /static/faq/css/faq_ows.css
   
   Mobile-first design
   Color Theme: Purple (#667eea)
   ============================================= */

/* =============================================
   1. Page Header
   ============================================= */
.faq-page-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 16px;
    margin: 0 0 20px 0;
    text-align: center;
    border-radius: 10px;
}

.faq-page-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.faq-page-header .subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* =============================================
   2. Back Home Button
   ============================================= */
.back-home {
    text-align: center;
    margin: 30px 0;
}

/* =============================================
   3. Scroll Top Button
   ============================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

/* =============================================
   PC / Desktop (min-width: 768px)
   ============================================= */
@media (min-width: 768px) {

    /* Header */
    .faq-page-header {
        padding: 32px 24px;
        margin: 0 0 28px 0;
    }

    .faq-page-header h1 {
        font-size: 2rem;
    }

    .faq-page-header .subtitle {
        font-size: 1rem;
    }

    /* Scroll Top Button */
    .scroll-top-btn {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}