.production-route-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    margin: 0 0 24px;
    padding: 18px 20px;
    color: #713f12;
    border: 1px solid #f3cf75;
    border-radius: 12px;
    background: #fff8df;
    box-shadow: 0 3px 12px rgba(113, 63, 18, 0.08);
}

.production-route-notice__icon {
    display: grid;
    flex: 0 0 38px;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #a85b08;
}

.production-route-notice__icon svg {
    width: 30px;
    height: 30px;
}

.production-route-notice__copy {
    margin: 0;
    font-size: 15px;
    line-height: 1.62;
}

.production-route-notice__copy strong {
    color: #66360c;
    font-weight: 700;
}

@media (max-width: 700px) {
    .production-route-notice {
        gap: 10px;
        padding: 15px 14px;
    }

    .production-route-notice__icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .production-route-notice__icon svg {
        width: 25px;
        height: 25px;
    }

    .production-route-notice__copy {
        font-size: 13px;
        line-height: 1.55;
    }
}
