/* RunDetails Component */
.run-details {
    /* padding: 0 20px; */
    width: 100%;
}

.run-details__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.run-details__row {
    display: flex;
    align-items: center;
}

.run-details__row--main {
    gap: 18px;
    min-height: 40px;
    flex-wrap: wrap;
}

.run-details__row--engines {
    min-height: 20px;
    align-items: flex-start;
}

.run-details__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.run-details__item--consistency {
    gap: 6px;
}

.run-details__label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    color: var(--color-blu);
}

.run-details__value {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: var(--color-blu);
}

.run-details__separator {
    width: 1px;
    height: 28px;
    background-color: var(--color-grey);
}

.run-details__info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.run-details__info-btn img {
    width: 18px;
    height: 18px;
}

.run-details__info-btn:focus {
    outline: 2px solid var(--color-blu);
    outline-offset: 2px;
    border-radius: 50%;
}

.run-details__info-btn:focus:not(:focus-visible) {
    outline: none;
}

.run-details__engines-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: normal;
    color: var(--color-blu);
    white-space: nowrap;
}

.run-details__engines-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    color: var(--color-blu);
}

.run-details__engine {
    white-space: nowrap;
}

/* Media Queries */
@media (max-width: 768px) {
    .run-details__content {
        gap: 8px;
    }
    
    .run-details__row {
        flex-direction: column;
    }

    .run-details__row--main {
        gap: 4px;
        min-height: auto;
        flex-wrap: wrap;
    }

    .run-details__item {
        display: flex;
        width: 100%;
        gap: 12px;
    }

    .run-details__separator {
        display: none;
    }
}

