.project-info-page {
    background: #f3f5f7;
    min-height: calc(100vh - 110px);
    padding: 16px 20px 24px;
}

.project-info-surface {
    background: #fff;
    border: 1px solid #dce1e6;
    border-radius: 4px;
    min-width: 0;
    padding: 20px;
}

.project-info-loading {
    align-items: center;
    color: #67727c;
    display: flex;
    gap: 9px;
    justify-content: center;
    min-height: 260px;
}

.project-info-required {
    flex-direction: column;
    text-align: center;
}

.project-info-required > i {
    color: #0b67b2;
    font-size: 34px;
}

.project-info-required > .btn {
    align-items: center;
    display: inline-flex;
    min-height: 38px;
}

.project-info-overview {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 230px minmax(0, 1fr);
}

.project-info-image-column {
    min-width: 0;
}

.project-info-image-frame {
    align-items: center;
    background: #eef1f4;
    border: 1px solid #dce1e6;
    border-radius: 4px;
    display: flex;
    height: 180px;
    justify-content: center;
    overflow: hidden;
    width: 230px;
}

.project-info-image-frame img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.project-info-image-button {
    align-items: center;
    display: inline-flex;
    gap: 7px;
    height: 38px;
    margin-top: 12px;
}

.project-info-identity-grid,
.project-info-grid {
    display: grid;
    gap: 16px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
}

.project-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
}

.project-info-field,
.project-info-field-wide {
    min-width: 0;
}

.project-info-field-wide {
    grid-column: 1 / -1;
}

.project-info-field label {
    color: #222b33;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 7px;
}

.project-info-field .form-control {
    border-color: #cbd3da;
    border-radius: 4px;
    height: 38px;
    min-width: 0;
    padding: 7px 12px;
    width: 100%;
}

.project-info-field .form-control:disabled {
    background: #edf0f3;
    color: #4f5962;
}

.project-info-field .form-control:focus {
    border-color: #4c9ada;
    box-shadow: 0 0 0 2px rgba(19, 117, 196, 0.14);
}

.project-info-field .select2-container {
    display: block;
    max-width: 100%;
    min-width: 0;
    width: 100% !important;
}

.project-info-field .select2-container .select2-selection--single {
    border-color: #cbd3da;
    border-radius: 4px;
    height: 38px !important;
}

.project-info-field .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
    overflow: hidden;
    padding: 6px 34px 6px 12px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-info-field .select2-container .select2-selection--single .select2-selection__arrow {
    height: 36px;
    right: 5px;
}

.project-info-field .select2-container--disabled .select2-selection--single {
    background: #edf0f3;
}

.project-info-field .select2-container--focus .select2-selection--single {
    border-color: #4c9ada;
    box-shadow: 0 0 0 2px rgba(19, 117, 196, 0.14);
}

.project-info-date-wrap {
    position: relative;
}

.project-info-date-wrap .form-control {
    padding-right: 38px;
}

.project-info-date-wrap > i {
    color: #71808d;
    pointer-events: none;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.project-info-actions {
    align-items: center;
    border-top: 1px solid #dce1e6;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 22px;
    padding-top: 16px;
}

.project-info-actions .btn {
    align-items: center;
    display: inline-flex;
    gap: 7px;
    height: 38px;
}

@media (max-width: 991px) {
    .project-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .project-info-page {
        padding: 12px;
    }

    .project-info-surface {
        padding: 14px;
    }

    .project-info-overview {
        grid-template-columns: minmax(0, 1fr);
    }

    .project-info-image-frame {
        aspect-ratio: 16 / 9;
        height: auto;
        max-width: 360px;
        width: 100%;
    }

    .project-info-identity-grid,
    .project-info-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .project-info-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .project-info-actions .btn {
        justify-content: center;
        width: 100%;
    }
}
