.mine-feedback-form {
  display: grid;
  grid-template-rows: 150px minmax(0, 1fr) 184px;
  gap: 8px;
}

.mine-feedback-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(37, 44, 41, 0.07);
}

.mine-feedback-card h3 {
  margin: 0;
  color: #191c1b;
  font-size: 14px;
  font-weight: 900;
}

.mine-feedback-kind {
  padding: 14px 20px 18px;
}

.mine-feedback-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 16px;
}

.mine-feedback-type {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  min-width: 0;
  height: 94px;
  border: 1px solid #e4e6e6;
  border-radius: 8px;
  color: #5b6060;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mine-feedback-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mine-feedback-type svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.mine-feedback-type strong {
  color: #252928;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.12;
}

.mine-feedback-type span {
  color: #8b8f8f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.mine-feedback-type:has(input:checked) {
  border-color: #0ba260;
  background: linear-gradient(145deg, #f4fff9, #fff);
  color: #079456;
  box-shadow: inset 0 0 0 1px rgba(11, 162, 96, 0.2);
}

.mine-feedback-desc {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 8px;
  padding: 14px 20px;
}

.mine-feedback-desc label {
  position: relative;
  display: block;
}

.mine-feedback-desc textarea {
  width: 100%;
  height: 166px;
  resize: none;
  padding: 13px 14px 28px;
  border: 1px solid #e2e4e4;
  border-radius: 8px;
  color: #191c1b;
  font-size: 13px;
  line-height: 1.55;
  outline: none;
}

.mine-feedback-desc textarea::placeholder,
.mine-feedback-contact input::placeholder {
  color: #a1a6a6;
}

.mine-feedback-desc [data-feedback-count] {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #8a8f8e;
  font-size: 12px;
  font-weight: 700;
}

.mine-feedback-upload h3 em,
.mine-feedback-contact h3 em {
  color: #7f8584;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.mine-feedback-upload-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 9px;
}

.mine-feedback-upload-button,
.mine-feedback-upload-grid > div {
  position: relative;
  display: grid;
  place-items: center;
  height: 76px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.mine-feedback-upload-button {
  gap: 5px;
  border: 1px dashed #bfc4c4;
  color: #666c6a;
  font-size: 12px;
  font-weight: 700;
}

.mine-feedback-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.mine-feedback-upload-button svg {
  width: 25px;
  height: 25px;
}

.mine-feedback-upload-grid > div::before {
  width: 44px;
  height: 30px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(135deg, transparent 46%, #e9e9e9 47%), linear-gradient(45deg, #e2e2e2 48%, transparent 49%);
  content: "";
}

.mine-feedback-upload-grid > div::after {
  position: absolute;
  top: 21px;
  right: 31px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eeeeee;
  content: "";
}

.mine-feedback-upload-grid > div.is-filled {
  background-size: cover;
  background-position: center;
}

.mine-feedback-upload-grid > div.is-filled::before,
.mine-feedback-upload-grid > div.is-filled::after {
  display: none;
}

.mine-feedback-contact {
  display: grid;
  gap: 6px;
  padding: 14px 20px 12px;
}

.mine-feedback-contact p {
  margin: 0;
  color: #7b8180;
  font-size: 11px;
  font-weight: 700;
}

.mine-feedback-contact label {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  height: 44px;
  border: 1px solid #e1e4e4;
  border-radius: 8px;
  color: #626867;
}

.mine-feedback-contact label span {
  text-align: center;
  font-size: 17px;
}

.mine-feedback-contact input {
  min-width: 0;
  border: 0;
  outline: none;
  color: #191c1b;
  font-size: 13px;
}

.mine-feedback-submit {
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10a462, #078d50);
  box-shadow: 0 9px 18px rgba(6, 139, 80, 0.28);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mine-feedback-submit:disabled {
  opacity: 0.62;
}

.mine-feedback-contact small {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

@media (max-height: 820px) {
  .mine-feedback-form {
    grid-template-rows: 126px minmax(0, 1fr) 172px;
    gap: 6px;
  }

  .mine-feedback-kind,
  .mine-feedback-desc,
  .mine-feedback-contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mine-feedback-desc textarea {
    height: 116px;
  }

  .mine-feedback-upload-button,
  .mine-feedback-upload-grid > div {
    height: 58px;
  }

  .mine-feedback-types {
    margin-top: 10px;
  }

  .mine-feedback-type {
    height: 78px;
  }

  .mine-feedback-type svg {
    width: 20px;
    height: 20px;
  }

  .mine-feedback-contact label {
    height: 38px;
  }

  .mine-feedback-contact {
    gap: 4px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .mine-feedback-contact p { font-size: 10px; }

  .mine-feedback-submit {
    height: 44px;
  }
}
