.content-wrapper {
    padding: 2vh 4vw 2vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slide-header {
    padding: 0;
    margin-bottom: 16px;
}

/* 3-top / 2-bottom grid */
.screenshot-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    padding: 0 1vw;
    align-items: stretch;
}

/* Top row: 3 cards spanning 2 cols each */
.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3) {
    grid-column: span 2;
}

/* Bottom row: 2 cards centered — each spans 2 cols, offset by 1 */
.product-card:nth-child(4) {
    grid-column: 2 / 4;
}

.product-card:nth-child(5) {
    grid-column: 4 / 6;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: top center;
    min-height: 0;
}

.card-label {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    background: var(--bg-muted);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

/* Hover Effect */
.product-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    z-index: 10;
}