.lfco-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #f1d58a;
  border-radius: 10px;
  background: #fff8e8;
  color: #2b2b2b;
  box-sizing: border-box;
}

.lfco-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffe7a8;
  color: #8a5a00;
}

.lfco-content {
  flex: 1 1 auto;
  min-width: 0;
}

.lfco-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 4px;
  color: #1f1f1f;
}

.lfco-subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: #5f5f5f;
}

.lfco-action {
  flex: 0 0 auto;
}

.lfco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #d35f00;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  border: 1px solid #d35f00;
  transition: all 0.2s ease;
}

.lfco-btn:hover,
.lfco-btn:focus {
  background: #b65000;
  border-color: #b65000;
  color: #fff !important;
  text-decoration: none !important;
}

.lfco-btn-small {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
}

.lfco-block-list {
  margin-top: 10px;
  padding: 10px 12px;
  gap: 10px;
}

.lfco-block-list .lfco-icon {
  width: 34px;
  height: 34px;
}

.lfco-block-list .lfco-title {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 767px) {
  .lfco-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .lfco-action {
    width: 100%;
  }

  .lfco-btn {
    width: 100%;
  }
}