/* 
 * Page Subnav Template Styles
 * Styles for page-subnav.php template with sidebar navigation
 */

/* Sidebar Navigation */
.subpage-navigation {
    margin-bottom: 20px;
    margin-top:6rem;
}

.subpage-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subpage-navigation li {
    margin-bottom: 0;
}

.subpage-navigation a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.subpage-navigation a:hover {
    color: #28abe3;
    background-color: hsl(197, 100%, 99%);
    text-decoration: none;
}

.subpage-navigation a.active {
    background-color: #28abe3;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .subpage-navigation {
        margin-bottom: 30px;
    }
    
    .page__container__sidebar {
        order: 1;
    }
    
    .page__container__content {
        order: 2;
        padding-top: 1rem;
    }
}

/* Content area spacing */
.page__container__content {
    padding-left: 30px;
}

@media (max-width: 767px) {
    .page__container__content {
        padding-left: 15px;
    }
}