.concert-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    align-items: stretch;
    text-align: center;
    gap: 1.5rem;
}

.concert-preview {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1rem;
    transition: 0.2s;
}

.concert-preview:hover {
    box-shadow: 10px 10px var(--shadow);
    border-top: 1px solid var(--highlight-hover);    
    border-left: 1px solid var(--highlight-hover);    
}

.concert-preview img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    flex-grow: 1;
}

.preview-title {
    font-size: larger;
    font-weight: bold;
    color: var(--text);
    margin-top: 0.5rem;
}

.concert-preview:hover .preview-title {
    text-decoration: underline; 
}

.preview-date {
    font-size: larger;
    color: var(--text);
    margin: 0.5rem;
}

.preview-location {
    color: var(--text-muted);
}