.saints-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    background: var(--grad-wow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.months-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.month-section {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.month-title {
    color: var(--primary);
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.names-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.name-badge {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.name-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.day-num {
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 10px;
    opacity: 0.6;
    background: rgba(0,0,0,0.05);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.name-badge:hover .day-num {
    background: rgba(255,255,255,0.2);
    color: white;
}

.name-text {
    font-weight: 500;
}

/* Mobile */
@media (max-width: 600px) {
    .names-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}