/* Copyright (c) 2026 Scherotter Enterprises LLC
*/

.tours{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    max-width:1460px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:2rem;
    justify-content: flex-start;
}

.tour{
    margin:0.5rem;
    background-color: lightgray;
    padding:0.5rem;
    border-radius: 4px;
    flex: 1.25 1.25 200px;
    max-width: 250px;
    display:grid;
    grid-template-columns: 1fr min-content;
    grid-template-rows: 1fr min-content;
}

.tour a{
    grid-column: 1/3;
    grid-row: 1/3;
}

.tour .spectrum-ActionGroup{
    grid-column: 1/2;
    grid-row:1/2;
}

.tour:hover{
    outline-width: 2px;
    outline-style: solid;
    outline-color: var(--galerystColor);
}

.tour .tourLayout{
    text-align: center;
    display: grid;
    grid-template-rows: min-content min-content min-content min-content;
}

.tour .icons{
    grid-column: 1/2;
    grid-row: 1/2;
    margin-left:auto;
    margin-top:0.5rem;
    margin-right:0.5rem;
}

.tour img{
    grid-column: 1/2;
    grid-row: 1/2;
}

.tour .artist,
.tour .gallery{
    width: 100%;
    text-overflow: ellipsis;
    overflow-x: hidden;
    text-wrap: nowrap;
}
.tour .name{
    font-weight: bold;
}

.tours:last-child{
    margin-right: auto;
  }

.tour .image{
    width:100%;
    height: 200px;
    object-fit: cover;
}

@media only screen and (max-width: 600px), (orientation: landscape) and (max-height: 600px){
    .tour{
        flex-basis: 100px;
        max-width:125px;
    }

    .tour .image{
        height:100px;
    }
}
