.bc-report-request {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 20px 72px;
}

.bc-report-request__intro {
    margin-bottom: 24px;
}

.bc-report-request__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 56px;
    align-items: start;
}

.bc-report-request__title {
    margin: 0 0 28px;
    font-size: 24px;
    line-height: 1.1;
    color: black;
}

.bc-report-request__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
}

.bc-report-request__field input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 2px solid #68b8d6;
    font-size: 18px;
    outline: none;
    color: black;
}

.bc-report-request__field input::placeholder {
    color: black !important;
    font-size: 18px !important;
}

.bc-report-request__error {
    margin-top: 8px;
    color: #b42318;
    font-size: 14px;
}

.bc-report-request__panel {
    padding-top: 2px;
}

.bc-report-request__summary {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 1.5rem;
}

.bc-report-request__thumb {
    background: #f4f8f9;
    aspect-ratio: 1.15 / 1;
    overflow: hidden;
}

.bc-report-request__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-report-request__thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #edf7fb 0%, #ffffff 100%);
    color: #4ca8c6;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.bc-report-request__summary-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.2;
    color: black;
}

.bc-report-request__summary-link {
    color: inherit;
    text-decoration: none;
}

.bc-report-request__summary-link:hover,
.bc-report-request__summary-link:focus-visible {
    color: #1d7ea0;
    text-decoration: underline;
}

.bc-report-request__delivery {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.25;
}

.bc-report-request__price {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
}

.bc-report-request__totals {
    display: grid;
    gap: 18px;
    padding-left: 42%;
}

.bc-report-request__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
}

.bc-report-request__row.is-total {
    margin-top: 6px;
    font-size: 22px;
    font-weight: 600;
}

.bc-report-request__submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.bc-report-request__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 40px;
    padding: 0 28px 3px;
    border: 0;
    background: #58b1cf;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.bc-report-request__submit:hover,
.bc-report-request__submit:active {
    background: #32c6e9;
}

@media (max-width: 1080px) {
    .bc-report-request__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bc-report-request__fields {
        grid-template-columns: 1fr;
    }

    .bc-report-request__summary {
        grid-template-columns: 1fr;
    }

    .bc-report-request__row {
        font-size: 20px;
    }

    .bc-report-request__row.is-total {
        font-size: 24px;
    }

    .bc-report-request__submit {
        min-width: 100%;
        font-size: 28px;
    }
}
