/* Laserreinigung Marktplatz – embed CSS */

.lrm-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  line-height: 1.5;
}

.lrm-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.lrm-form {
  width: 100%;
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.lrm-filter-form {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
}

.lrm-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

.lrm-form-row {
  margin-bottom: 12px;
}

.lrm-inquiry-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: start;
}

.lrm-inquiry-card img,
.lrm-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #eef2f6;
}

.lrm-inquiry-card img { height: 210px; }

.lrm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.lrm-gallery img { height: 190px; }

.lrm-placeholder {
  height: 210px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #eef2f6;
}

.lrm-meta {
  color: #667085;
  font-size: 14px;
}

.lrm-badge {
  display: inline-block;
  padding: 4px 9px;
  margin: 0 4px 6px 0;
  border-radius: 999px;
  font-size: 13px;
  background: #eef4ff;
  color: #084a8c;
}

.lrm-badge-ok { background: #ecfdf3; color: #067647; }
.lrm-badge-warn { background: #fff7ed; color: #b54708; }

.lrm-form label {
  display: block;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 5px;
}

.lrm-form input,
.lrm-form select,
.lrm-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 16px;
  background: #fff;
}

.lrm-form input,
.lrm-form select {
  min-height: 44px;
  height: 44px;
}

.lrm-form select {
  appearance: auto;
  line-height: 1.2;
}

.lrm-form textarea {
  min-height: 140px;
  resize: vertical;
}

.lrm-button,
.lrm-form button,
.lrm-form input[type="submit"] {
  display: inline-block;
  width: auto;
  min-height: 44px;
  border: 0;
  background: #0b5cad;
  color: #fff !important;
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.2;
}

.lrm-button:hover,
.lrm-form button:hover,
.lrm-form input[type="submit"]:hover { background: #084a8c; }

.lrm-button-secondary { background: #475467; }

.lrm-notice {
  padding: 14px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  margin: 12px 0;
}

.lrm-success { background: #ecfdf3; border-color: #abefc6; }
.lrm-error { background: #fef3f2; border-color: #fecdca; }

.lrm-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.lrm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 820px) {
  .lrm-grid,
  .lrm-inquiry-card { grid-template-columns: 1fr; }

  .lrm-form,
  .lrm-filter-form { max-width: 100%; }

  .lrm-inquiry-card img,
  .lrm-placeholder { height: 230px; }

  .lrm-card { padding: 16px; }
}
