.person-create-photo {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid #d5e0e5;
    border-radius: 9px;
    background: #f8fafb;
}

.person-create-photo-preview {
    display: grid;
    place-items: center;
    width: 150px;
    height: 180px;
    overflow: hidden;
    border: 1px dashed #aebfc7;
    border-radius: 8px;
    background: #ffffff;
}

.person-create-photo-preview.has-image {
    border-style: solid;
}

.person-create-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-create-photo-placeholder {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 18px;
    color: #71838c;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.person-create-photo-placeholder svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.person-create-photo-field {
    min-width: 0;
}

.person-create-photo-field input[type="file"] {
    width: 100%;
}

.person-create-photo-field .help-text,
.person-create-photo-field .form-help {
    margin-top: 7px;
    color: #71838c;
    font-size: 12px;
}

@media (max-width: 680px) {
    .person-create-photo {
        grid-template-columns: 1fr;
    }

    .person-create-photo-preview {
        width: 130px;
        height: 156px;
    }
}
