.product-logo-tile {
    position: relative;
    display: block;
    width: 250px;
    height: 170px;
    padding: 0;
    overflow: visible;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
}

.product-logo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-logo-tile:hover,
.product-logo-tile:focus-visible,
.product-logo-tile.is-active {
    border: 2px solid #222;
    outline: 1px solid #5b9dd9;
    outline-offset: 1px;
}

.product-logo-tile.is-active::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    z-index: 4;
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-bottom: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid #cfcfcf;
    content: "";
    transform: translateX(-50%);
}

.product-expanded-preview {
    position: relative;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
    min-height: 500px;
    margin: 17px 0 8px;
    padding: 50px;
    background: #cfcfcf;
}

.product-expanded-preview[hidden] {
    display: none;
}

.product-expanded-preview__close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    color: #555;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.product-expanded-preview__image {
    display: grid;
    min-height: 430px;
    padding: 24px;
    background: #fff;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, .18);
    place-items: center;
}

.product-expanded-preview__image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.product-expanded-preview__content h2 {
    margin-bottom: 10px;
    color: #2f2f2f;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}

.product-expanded-preview__content p {
    max-width: 470px;
    margin-bottom: 20px;
    color: #222;
    font-size: 16px;
    line-height: 23px;
}

.product-expanded-preview__actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.product-expanded-preview__actions a {
    display: inline-block;
    padding: 13px 20px;
    border: 4px solid #ff625f;
    color: #fff;
    background: #ef221f;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.product-expanded-preview__actions a[hidden] {
    display: none;
}

@media (max-width: 900px) {
    .product-expanded-preview {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 35px;
    }

    .product-expanded-preview__image {
        min-height: 320px;
    }
}

@media (max-width: 620px) {
    .product-logo-tile {
        width: 100%;
        height: auto;
        aspect-ratio: 250 / 170;
    }

    .product-expanded-preview {
        min-height: 0;
        padding: 22px;
    }

    .product-expanded-preview__image {
        min-height: 230px;
        padding: 12px;
    }

    .product-expanded-preview__content h2 {
        font-size: 25px;
    }

    .product-expanded-preview__content p {
        font-size: 14px;
        line-height: 21px;
    }

    .product-expanded-preview__actions {
        display: grid;
    }

    .product-expanded-preview__actions a {
        text-align: center;
    }
}

.original-product-grid .product-expanded-preview {
    width: auto;
    height: auto;
    min-height: 500px;
    overflow: visible;
    background: #cfcfcf;
}

.original-product-grid .product-expanded-preview__image img {
    aspect-ratio: auto;
}
