.mvo-hub__heading {
    margin: 0 0 1.5rem;
}

.mvo-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .mvo-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .mvo-hub-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.mvo-hub-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mvo-hub-card:hover,
.mvo-hub-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.mvo-hub-card__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: #eceff3;
}

.mvo-hub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mvo-hub-card__badge {
    position: absolute;
    inset: auto 0 0 0;
    padding: .5rem;
    background: rgba(38, 75, 141, .9);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.mvo-hub-card__body {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem 1.25rem 1.25rem;
}

.mvo-hub-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.mvo-hub-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0;
    font-size: 1.25rem;
}

.mvo-hub-card__price s {
    font-size: .875rem;
    font-weight: 400;
    opacity: .65;
}

.mvo-hub-card__meta {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvo-hub-card__meta li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.mvo-hub-warning {
    padding: 1rem;
    border: 1px dashed #c00;
    color: #c00;
}

.mvo-hub-detail__top {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .mvo-hub-detail__top {
        grid-template-columns: minmax(0, 1fr);
    }
}

.mvo-hub-detail__main {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.mvo-hub-detail__main img {
    width: 100%;
    height: auto;
    display: block;
}

.mvo-hub-detail__gallery.is-sold .mvo-hub-detail__main::after {
    content: "Vendu";
    position: absolute;
    inset: auto 0 0 0;
    padding: .75rem;
    background: rgba(200, 0, 0, .85);
    color: #fff;
    font-weight: 700;
    text-align: center;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mvo-hub-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    margin: .75rem 0 0;
    padding: 0;
    list-style: none;
}

.mvo-hub-detail__thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    opacity: .7;
    transition: opacity .15s ease, border-color .15s ease;
}

.mvo-hub-detail__thumb:hover,
.mvo-hub-detail__thumb:focus-visible,
.mvo-hub-detail__thumb.is-active {
    opacity: 1;
}

.mvo-hub-detail__thumb.is-active {
    border-color: #264b8d;
}

.mvo-hub-detail__thumbs img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.mvo-hub-detail__title {
    margin: 0 0 .25rem;
}

.mvo-hub-detail__reference {
    margin: 0 0 1rem;
    opacity: .7;
}

.mvo-hub-detail__price {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
}

.mvo-hub-detail__price s {
    font-size: 1rem;
    opacity: .6;
}

.mvo-hub-detail__discount {
    padding: .15rem .5rem;
    border-radius: 4px;
    background: #264b8d;
    color: #fff;
    font-size: .85rem;
}

.mvo-hub-detail__specs {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvo-hub-detail__specs li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.mvo-hub-detail__section {
    margin-top: 2.5rem;
}

.mvo-hub-detail__section--inline {
    margin-top: 1.5rem;
}

.mvo-hub-detail__section--inline h2 {
    margin: 0 0 .75rem;
    font-size: 1.15rem;
}

.mvo-hub-detail__section--inline .mvo-hub-detail__mentions {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1rem;
}

.mvo-hub-detail__list,
.mvo-hub-detail__mentions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 600px) {
    .mvo-hub-detail__list,
    .mvo-hub-detail__mentions {
        grid-template-columns: minmax(0, 1fr);
    }
}

.mvo-hub-detail__list li::before {
    content: "+ ";
    font-weight: 700;
}

.mvo-hub-detail__mentions li {
    font-weight: 700;
}

.mvo-hub-search {
    margin: 0 0 2rem;
}

.mvo-hub-search__line {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 0 1rem;
}

.mvo-hub-search__field {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    flex: 1 1 12rem;
}

.mvo-hub-search__field span {
    font-size: .875rem;
    font-weight: 600;
}

.mvo-hub-search__field input,
.mvo-hub-search__field select {
    width: 100%;
    padding: .5rem .75rem;
}

.mvo-hub-search__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.mvo-hub-results__count {
    margin: 0 0 1rem;
    font-weight: 600;
}

.mvo-hub-empty {
    margin: 0;
}

.mvo-hub-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 2rem 0 0;
}

.mvo-hub-pagination a,
.mvo-hub-pagination span {
    padding: .5rem .75rem;
    border: 1px solid currentColor;
    border-radius: 4px;
    text-decoration: none;
}

.mvo-hub-pagination .is-current {
    font-weight: 700;
}
