.lmc-model__back-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 4px;
    width: fit-content;
    margin-bottom: 24px;
    font-size: 1.125rem;
    text-decoration: none;
}

.lmc-model__back-button svg {
    fill: currentColor;
}

.lmc-model__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lmc-model__left {
    width: 100%;
}

.lmc-model__gallery {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: hidden;
}

.lmc-model__gallery-img {
    object-fit: contain;
}

.lmc-model__slider-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 8px;
}

.lmc-model__slider-button {
    border: none;
    background-color: transparent;
    appearance: none;
    cursor: pointer;
}

.lmc-model__right {
    width: 100%;
}

.lmc-model__title {
    font-size: 1.5rem;
}

.lmc-model__subtitle {
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--color-primary);
}

.lmc-model__description {
    max-height: calc(16px * 1.9 * 6);
    overflow: hidden;
}

.lmc-model__description-extend-button {
    margin: 0;
    padding: 0;
    appearance: none;
    border: none;
    font-weight: 700;
    background-color: transparent;
    cursor: pointer;
}

.lmc-model__available-layouts {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgb(0, 0, 0, 10%);
}

.lmc-model__available-layouts__title {
    font-size: 1.75rem;
}

.lmc-layouts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.lmc-layout__card {
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgb(0, 0, 0, 8%);
    background-color: var(--color-surface);
    transition: transform .4s;
}

.lmc-layout__card:hover {
    transform: translateY(4px);
}

.lmc-layout-card__top {
    position: relative;
    padding: 8px;
}

.lmc-layout__img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.lmc-layout-card__360 {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    margin: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    text-decoration: none;
    border-radius: 4px;
    color: var(--color-on-primary);
    background-color: var(--color-primary);
}

.lmc-layout-card__bottom {
    padding: 32px;
}


/* Desktop */
@media (min-width: 1200px) {

    .lmc-model__content {
        flex-direction: row;
    }

    .lmc-model__left {
        width: 50%;
    }
    
    .lmc-model__right {
        width: 50%;
    }

}