.ng-detail-page {
    min-height: 100vh;
    background: #eef1f7;
    padding: 32px;
}

.ng-card,
.ng-section-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
    margin-bottom: 24px;
}

.ng-card {
    padding: 36px 42px;
}

.ng-card h3 {
    margin: 0 0 28px;
    font-size: 22px;
    font-weight: 800;
    color: #333;
}

.ng-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 14px 34px;
    font-size: 14px;
    color: #3f4650;
}

.ng-info-grid div {
    display: flex;
    align-items: center;
}

.ng-info-grid b {
    font-weight: 800;
    min-width: 125px;
}

.ng-info-grid span {
    margin: 0 10px;
    color: #9ca3af;
}

.ng-info-grid .full {
    grid-column: 1 / -1;
}

.ng-section-card {
    overflow: hidden;
}

.ng-section-title {
    height: 54px;
    background: #dff3ec;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 16px;
    color: #111827;
}

.ng-section-title i {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #e9f3ff;
    color: #1473d2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ng-section-title b {
    font-weight: 800;
}

.ng-section-title span {
    color: #333;
}

.ng-section-body {
    padding: 30px 36px 38px;
}

.ng-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
}

.ng-form-grid .full {
    grid-column: 1 / -1;
}

.ng-form-grid label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #394150;
}

.ng-form-grid input,
.ng-form-grid textarea {
    width: 100%;
    border: 1px solid #dfe5ec;
    border-radius: 4px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    outline: none;
}

.ng-form-grid input {
    height: 42px;
    padding: 0 14px;
}

.ng-form-grid textarea {
    min-height: 86px;
    padding: 14px;
    resize: vertical;
}

.ng-form-grid input::placeholder,
.ng-form-grid textarea::placeholder {
    color: #9ca3af;
}

.ng-form-grid input:focus,
.ng-form-grid textarea:focus {
    border-color: #22b36b;
    box-shadow: 0 0 0 3px rgba(34, 179, 107, .1);
}

.ng-input-icon {
    position: relative;
}

.ng-input-icon input {
    padding-right: 44px;
}

.ng-input-icon i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #111827;
}

.ng-picture-box {
    min-height: 220px;
    border: 1px dashed #cbd5df;
    border-radius: 6px;
    padding: 36px 30px;
    display: flex;
    align-items: flex-start;
    background: #fff;
}

.ng-picture-box img {
    width: 320px;
    height: 160px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .ng-info-grid,
    .ng-form-grid {
        grid-template-columns: 1fr;
    }

    .ng-card {
        padding: 28px 24px;
    }

    .ng-section-body {
        padding: 24px;
    }

    .ng-picture-box img {
        width: 100%;
        height: auto;
    }
}
