.office-etrn-banner,
.office-etrn-banner * {
    box-sizing: border-box;
}

.office-etrn-banner {
    position: relative;
    width: 100%;
    min-height: 354px;
    padding: 25px 20px;    
    border-radius: 10px;
    background: #f4f4f4;
    color: #202020;
    font-family: "Open Sans", Arial, sans-serif;
}

.office-etrn-banner__header {
    display: flex;
    height: 50px;
    align-items: center;
    gap: 15px;
}

.office-etrn-banner__warning-icon {
    display: flex;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffdda8;
    color: #202020;
}

.office-etrn-banner__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.office-etrn-banner__lead {
    margin: 15px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
}

.office-etrn-banner__lead--second {
    margin-top: 10px;
}

.office-etrn-banner__content {
    display: grid;
    grid-template-columns: 412px minmax(320px, 468px);
    gap: 50px;
    margin-top: 20px;
}

.office-etrn-banner__details {
    height: 167px;
    padding: 10px 15px 15px;
    border-radius: 10px;
    background: #ffefd7;
}

.office-etrn-banner__details-title {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 21px;
}

.office-etrn-banner__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
}

.office-etrn-banner__field {
    position: relative;
    height: 48px;
    min-width: 0;
    padding: 3px 45px 4px 14px;
    border: 2px solid #ecedf0;
    border-radius: 10px;
    background: #fff;
}

.office-etrn-banner__field--wide {
    grid-column: 1 / -1;
}

.office-etrn-banner__field-label,
.office-etrn-banner__field-value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.office-etrn-banner__field-label {
    color: #666;
    font-size: 14px;
    line-height: 18px;
}

.office-etrn-banner__field-value {
    color: #202020;
    font-size: 16px;
    line-height: 21px;
}

.office-etrn-banner__copy {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #f4f4f4;
    color: #202020;
    cursor: pointer;
}

.office-etrn-banner__copy:hover,
.office-etrn-banner__copy:focus-visible {
    background: #e9e9e9;
}

.office-etrn-banner__copy:focus-visible {
    outline: 2px solid #fa6405;
    outline-offset: 1px;
}

.office-etrn-banner__copy .ui-alert-info {
    top: 44px;
    right: -4px;
}

.office-etrn-banner__action {
    position: relative;
    z-index: 1;
    padding-top: 15px;
}

.office-etrn-banner__action-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.office-etrn-banner__action-text {
    max-width: 468px;
    margin: 0;
    font-size: 15px;
    line-height: 21px;
}

.office-etrn-banner__button {
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 0 15px;
    border-radius: 8px;
    background: #fa6405;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
}

.office-etrn-banner__button:hover,
.office-etrn-banner__button:focus {
    background: #e95800;
    color: #fff;
    text-decoration: none;
}

.office-etrn-banner__decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #b5b5b5;
}

@media (max-width: 1050px) {
    .office-etrn-banner__content {
        grid-template-columns: 412px minmax(280px, 1fr);
        gap: 30px;
    }

    .office-etrn-banner__action {
        padding-right: 60px;
    }
}

@media (max-width: 800px) {
    .office-etrn-banner {
        min-height: 0;
    }

    .office-etrn-banner__content {
        grid-template-columns: minmax(0, 1fr);
    }

    .office-etrn-banner__details {
        width: 100%;
        max-width: 412px;
    }

    .office-etrn-banner__action {
        padding: 0 120px 0 0;
    }
}

@media (max-width: 520px) {
    .office-etrn-banner {
        padding: 20px 15px;
    }

    .office-etrn-banner__header {
        height: auto;
        align-items: flex-start;
    }

    .office-etrn-banner__warning-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .office-etrn-banner__title {
        font-size: 18px;
        line-height: 25px;
    }

    .office-etrn-banner__details {
        height: auto;
    }

    .office-etrn-banner__fields {
        grid-template-columns: 1fr;
    }

    .office-etrn-banner__field--wide {
        grid-column: auto;
    }

    .office-etrn-banner__action {
        padding-right: 0;
        padding-bottom: 120px;
    }
}
