

.lk-form {
  font-family: 'Inter', sans-serif;
  color: #2B2A22;
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d8d6cb;
  border-radius: 10px;
  padding: 32px;
}

.lk-form label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B2A22;
  display: block;
  margin-bottom: 6px;
}

.lk-field {
  margin-bottom: 24px;
}

.lk-input,
.lk-textarea,
.lk-select,
#lk-post-title {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #2B2A22;
  background: #f7f6f1;
  border: 1px solid #d8d6cb;
  border-radius: 8px;
  padding: 10px 14px;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lk-textarea {
  min-height: 110px;
  resize: vertical;
}

.lk-input:focus,
.lk-textarea:focus,
.lk-select:focus,
#lk-post-title:focus {
  outline: none;
  border-color: #4C614;
  box-shadow: 0 0 0 3px rgba(76, 97, 66, 0.15);
}

/* Blocks container */
.lk-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.lk-block {
  background: #f7f6f1;
  border: 1px solid #d8d6cb;
  border-left: 4px solid #4C614;
  border-radius: 8px;
  padding: 40px 16px 16px 16px;
  position: relative;
  animation: lk-fade-in 0.2s ease;
}

@keyframes lk-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.lk-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lk-block-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4C614;
}

.lk-block .lk-heading-level {
  width: auto;
  display: inline-block;
  margin-bottom: 8px;
}

.lk-block .lk-block-text {
  margin-top: 0px;
    min-height: 20vh;
    resize: vertical;
}

.lk-block-text {
  min-height: 20vh; /* was 110px */
  resize: vertical;
}

.lk-remove-block {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #6b6a5f;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
  z-index: 2;
}

.lk-remove-block:hover {
  background: #ece9dd;
  color: #b3412c;
}

/* Add block controls */
.lk-add-block-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}

.lk-add-block-controls .lk-select {
  width: auto;
  flex: 1;
}

/* Buttons */
.lk-btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 11px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.lk-btn:active {
  transform: translateY(1px);
}

.lk-btn-primary {
  background: #4C614;
  color: #ffffff;
  width: 100%;
}

.lk-btn-primary:hover {
  background: #3d4f35;
}

.lk-btn-outline {
  background: transparent;
  color: #4C614;
  border: 1.5px solid #4C614;
}

.lk-btn-outline:hover {
  background: #4C614;
  color: #ffffff;
}

.lk-submit-row {
  margin-top: 8px;
}

.lk-form-message {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4C614;
  text-align: center;
}