/* ============================================
   YOUNA - Releases Page Styles
   ============================================ */

/* Page Tabs - Styles now unified in common.css */
/* Keeping this comment for reference, actual styles moved to common.css */

#cardsLoading.active {
    display: flex;
}

#cardsLoading {
    background: transparent;
    padding: 2rem 0;
}

/* Grid styles moved to grid.css */

#cards {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cards-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.page-header-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.page-header {
    text-align: left;
}

.page-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-header-container {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .page-header h2 {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .page-header-container {
        padding: 0 0.75rem;
    }
    
    .page-header h2 {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .page-header-container {
        padding: 0 1rem;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
}

