/* jixmo instructions page */

.instr-section {
    margin-bottom: 4rem;
}

.instr-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #3a3a3a;
    border: 1px solid #444;
    border-radius: 0.75rem;
    overflow: hidden;
    max-width: 40rem;
    margin: 0 auto;
}

.instr-image-col {
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.instr-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
}

.instr-actions-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
}

.instr-action {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.5rem;
    border-top: 1px solid #444;
}

.instr-action:first-child {
    border-top: none;
}

.instr-presses {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0;
    width: 3rem;
}

.instr-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C8FF00;
    flex-shrink: 0;
}

.instr-action-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.instr-action-label {
    font-size: 0.95rem;
    font-weight: 300;
    color: #cccccc;
    letter-spacing: 0.03em;
}

.instr-action-desc {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

@media (min-width: 640px) {
    .instr-card {
        flex-direction: row;
    }

    .instr-image-col {
        flex: 0 0 240px;
        border-right: 1px solid #444;
    }

    .instr-actions-col {
        flex: 1;
        padding: 0.5rem 0;
    }
}

.instr-quickly {
    color: #C8FF00;
    font-style: italic;
}

.instr-card--text .instr-actions-col {
    padding: 0.5rem 0;
}

.instr-card--text .instr-action {
    border-top: none;
}

.instr-bar {
    display: block;
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #C8FF00;
    flex-shrink: 0;
}
