.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.screenshot-item {
    text-align: center;
}

.screenshot-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.screenshot-item img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

ol li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-item img {
        max-width: 240px;
    }
}
