/* ============================================================
   SPLICER PAGE EXTRA STYLES — splicer.css
   ============================================================ */

/* The model-with-image grid and variant pills are already in
   products.css. This file adds any splicer-specific overrides. */

.model-with-image {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.model-img-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.14);
}

.model-img-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.model-img-block:hover img {
    transform: scale(1.04);
}

.model-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(7, 16, 32, 0.88) 0%, transparent 100%);
}

.model-img-caption strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.model-img-caption span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.model-img-tag {
    position: absolute;
    top: 14px;
    left: 14px;
}

@media(max-width:768px) {
    .model-with-image {
        grid-template-columns: 1fr;
    }
}