/* Privacy-specific layout: data-sharing screenshots */

.sharing-steps {
    display: grid;
    grid-template-columns: 1.3fr 80px 1fr 80px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 24px;
}

.sharing-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sharing-step-title {
    min-height: 58px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.sharing-step img {
    height: 450px;
    width: auto;
}

.arrow {
    padding-top: 180px;
    color: var(--blue);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

@media (max-width: 900px) {
    .sharing-steps {
        grid-template-columns: 1fr;
    }

    .spacer {
        display: none;
    }

    .arrow {
        padding-top: 0;
        margin: 10px 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 700px) {
    .sharing-step-title {
        min-height: 0;
        font-size: 18px;
    }

    .sharing-step img {
        max-height: 450px;
        height: auto;
    }
}
