.tickets-tile {
    --tile-border-color: #d9d9d9;
    margin-bottom: 1rem;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 2px solid var(--tile-border-color);
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    @media (min-width: 1280px) {
        flex-direction: row;
    }

    .tickets-tile__content {
        display: grid;
        column-gap: 1rem;
        grid-template-areas:
            'img title'
            'description description'
            'more more'
            'tag tag';
        grid-template-columns: min-content 1fr;

        @media (min-width: 1280px) {
            column-gap: 2rem;
            grid-template-areas:
            'img title'
            'img description'
            'img more'
        }

        .tickets-tile__img {
            width: 84px;
            height: 84px;
            border-radius: 4px;
            overflow: hidden;
            grid-area: img;

            @media (min-width: 1280px) {
                width: 193px;
                height: 193px;
            }

            > a {
                width: 100%;
                height: 100%;
            }
        }

        > h3 {
            font-family: var(--default-font), sans-serif;
            grid-area: title;
            align-self: center;
            max-height: 56px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;

            a {
                --a-text-decoration: none;
            }

            @media (min-width: 1280px) {
                align-self: end;
            }
        }

        > p {
            grid-area: description;
            font-size: 1.125rem;
            line-height: 1.6rem;
            color: var(--color-dark);
            margin-block: 1.5rem 0;
            height: 50px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        > a {
            --btn-color: var(--color-old-silver);
            --btn-font-weight: 400;
            --a-text-decoration: underline;
            --btn-font-size: 1.125rem;
            grid-area: more;
            margin-block-start: 1rem;
            width: fit-content;
        }
    }

    .tickets-tile__action {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-direction: row;
        justify-content: flex-end;
        margin-top: 1.25rem;
        border-top: 1px dashed var(--tile-border-color);
        padding-top: 1.25rem;

        @media (min-width: 1280px) {
            width: 160px;
            margin-block-start: 0;
            border-block-start: none;
            padding-block-start: 0;
            margin-inline-start: 1.25rem;
            border-inline-start: 1px dashed var(--color-bright-gray);
            padding-inline-start: 1.25rem;
            flex-direction: column;
            justify-content: center;
        }

        > .tickets-tile__price {
            margin-block: 0;
            display: flex;
            flex-direction: column;
            row-gap: 0.75rem;

            @media (min-width: 1280px) {
                max-width: 140px;
                row-gap: 0.5rem;
                column-gap: 0.5rem;
                flex-direction: row;
                flex-wrap: wrap;
                align-items: baseline;
            }

            > span:nth-child(1) {
                color: var(--color-old-silver);
            }

            > div:nth-child(2) {
                font-size: var(--fs-large);
                font-weight: 700;
                color: var(--color-dark);
                display: flex;
                column-gap: 0.25rem;
            }
        }

        > a {
            --btn-padding: 0.9rem 1.4rem;
            flex-shrink: 0;
            justify-self: center;
            width: fit-content;
            height: fit-content;

            &:first-child:nth-last-child(1) {
                align-self: center;
            }
        }
    }
}