/* Season 7 Auto-Qualifiers — complements assets/css/global.css */

.aq-page .aq-grid {
    background-color: transparent;
    box-sizing: border-box;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 1024px) {
    .aq-page .aq-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.aq-card {
    background-color: rgba(var(--jazzy-blue-primary-rgb), .025);
    box-sizing: border-box;
    border: 2px solid rgba(var(--jazzy-blue-primary-rgb), .05);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow: hidden;
}

.aq-card:hover {
    transition: all 0.1s ease;
    box-shadow: 0 -8px 15px blue, 0 3px 9px blue;
}

.aq-card img {
    aspect-ratio: 1600 / 800;
    display: block;
    height: auto;
    width: 100%;
}

.aq-card-title {
    color: var(--jazzy-blue-primary);
    font-size: 1rem;
    font-weight: 800;
    margin: 0.35rem 0 0;
    text-align: center;
    text-shadow: none;
}

.aq-card-meta {
    color: inherit;
    font-size: 0.85rem;
    line-height: 1.35;
    margin: 0;
    text-align: center;
}

.aq-startgg {
    background-color: var(--jazzy-yellow-primary);
    border-radius: 4px;
    box-sizing: border-box;
    color: var(--jazzy-blue-primary);
    display: block;
    font-weight: bold;
    margin-top: auto;
    padding: 0.65em 1em;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.aq-startgg:hover {
    filter: brightness(0.95);
}

.aq-startgg:visited {
    color: var(--jazzy-blue-primary);
}
