/**********************************************************************
SNF TOOLS
CATEGORY PAGES
Shared Stylesheet
**********************************************************************/

/* =====================================================
   CATEGORY PAGE
===================================================== */

.snf-category-page{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px;
    box-sizing:border-box;
}

.snf-category-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin:0 0 12px;
    line-height:1.2;
    color:#222;
}

.snf-category-subtitle{
    text-align:center;
    font-size:18px;
    color:#666;
    margin:0 auto 35px;
    max-width:700px;
    line-height:1.6;
}

/* =====================================================
   CATEGORY LIST
===================================================== */

.snf-category-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.snf-category-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 24px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.snf-category-card{
    color:inherit;
}

.snf-category-card:hover{
    border-color:#0073aa;
    box-shadow:0 8px 24px rgba(0,115,170,.12);
    transform:translateY(-2px);
}

.snf-category-icon{
    flex:0 0 58px;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:#eef7ff;
    border-radius:12px;
}

.snf-category-content{
    flex:1;
}

.snf-category-content h2{
    margin:0 0 6px;
    font-size:22px;
    color:#222;
}

.snf-category-content p{
    margin:0;
    color:#666;
    line-height:1.6;
    font-size:15px;
}

.snf-category-arrow{
    font-size:22px;
    color:#0073aa;
    font-weight:700;
}

/* =====================================================
   DIVIDER
===================================================== */

.snf-category-divider{
    margin:45px 0 25px;
    border:none;
    border-top:1px solid #e5e7eb;
}

/* =====================================================
   OTHER CATEGORIES
===================================================== */

.snf-category-more{
    text-align:center;
    font-size:24px;
    margin-bottom:20px;
}

.snf-category-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.snf-category-links a{
    text-decoration:none;
    color:#0073aa;
    font-weight:600;
    padding:10px 18px;
    border-radius:8px;
    transition:.25s;
}

.snf-category-links a:hover{
    background:#eef7ff;
}

.snf-category-list a.snf-category-card,
.snf-category-list a.snf-category-card:visited,
.snf-category-list a.snf-category-card:hover{
    color:inherit;
    text-decoration:none;
}

.snf-coming-soon-box {
    margin: 30px 0;
    padding: 25px;
    text-align: center;
    background: #f8f9fa;
    border: 2px dashed #0ea5e9;
    border-radius: 10px;
}

.snf-coming-soon-box h2 {
    margin-bottom: 10px;
}

.snf-coming-soon-box p {
    margin: 0;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

.snf-category-page{
    padding:15px 15px 35px;
}

.snf-category-title{
    font-size:32px;
}

.snf-category-subtitle{
    font-size:16px;
    margin-bottom:25px;
}

.snf-category-card{
    padding:18px;
}

.snf-category-icon{
    width:50px;
    height:50px;
    font-size:24px;
}

.snf-category-content h2{
    font-size:19px;
}

.snf-category-content p{
    font-size:14px;
}

.snf-category-arrow{
    display:none;
}

}